/**
 * Everystore - Custom Styles
 * Theme: Light Orange, White, Soft Grey
 */

/* ================= CSS VARIABLES ================= */
:root {
    --primary-color: #ff8c42;
    --primary-dark: #e67e3a;
    --primary-light: #ffb380;
    --secondary-color: #ffffff;
    --accent-grey: #f5f5f5;
    --text-dark: #333333;
    --text-muted: #6c757d;
    --border-color: #e0e0e0;
    --success-color: #28a745;
    --danger-color: #dc3545;
    --warning-color: #ffc107;
    --info-color: #17a2b8;
}

/* ================= GENERAL STYLES ================= */
body {
    font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: #fafafa;
    color: var(--text-dark);
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-dark);
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
    background-color: var(--primary-dark) !important;
    border-color: var(--primary-dark) !important;
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.text-primary {
    color: var(--primary-color) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.hover-primary:hover {
    color: var(--primary-color) !important;
}

/* ================= NAVBAR ================= */
.navbar {
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.navbar-brand {
    font-weight: 700;
    color: var(--primary-color) !important;
}

.nav-link {
    color: var(--text-dark);
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color) !important;
}

.navbar .input-group .btn {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.navbar .dropdown-menu {
    border: none;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border-radius: 10px;
}

/* ================= HERO SECTION ================= */
.hero-section {
    position: relative;
    min-height: 500px;
    background: linear-gradient(135deg, #fff5eb 0%, #ffffff 100%);
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-slider {
    position: relative;
}

.hero-slider .carousel-item {
    min-height: 500px;
}

.hero-slider .carousel-item img {
    object-fit: cover;
    height: 100%;
}

.hero-content {
    padding: 3rem;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

/* ================= PRODUCT CARDS ================= */
.product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.product-image {
    position: relative;
    padding-top: 100%;
    overflow: hidden;
    background: #f8f9fa;
}

.product-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.product-badge.new {
    background-color: var(--success-color);
    color: white;
}

.product-badge.sale {
    background-color: var(--danger-color);
    color: white;
}

.product-badge.featured {
    background-color: var(--primary-color);
    color: white;
}

.product-actions {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s ease;
}

.product-card:hover .product-actions {
    opacity: 1;
    transform: translateX(0);
}

.product-actions .btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.product-actions .btn:hover {
    background-color: var(--primary-color);
    color: white;
}

.product-content {
    padding: 1.25rem;
}

.product-category {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-title {
    font-size: 1rem;
    font-weight: 600;
    margin: 0.5rem 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    box-orient: vertical;
    overflow: hidden;
}

.product-title a {
    color: var(--text-dark);
}

.product-title a:hover {
    color: var(--primary-color);
}

.product-price {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.product-price .current-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
}

.product-price .original-price {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-decoration: line-through;
}

.product-price .discount {
    font-size: 0.8rem;
    color: var(--success-color);
    font-weight: 600;
}

/* ================= CATEGORIES SECTION ================= */
.category-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    display: block;
    height: 200px;
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.category-card:hover img {
    transform: scale(1.1);
}

.category-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    color: white;
}

.category-overlay h5 {
    margin: 0;
    font-weight: 600;
}

.category-overlay span {
    font-size: 0.85rem;
    opacity: 0.9;
}

/* ================= SECTION HEADERS ================= */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.section-header p {
    color: var(--text-muted);
    max-width: 500px;
    margin: 0 auto;
}

.section-header .btn-view-all {
    margin-top: 1rem;
}

/* ================= BLOG CARDS ================= */
.blog-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.blog-image {
    position: relative;
    padding-top: 60%;
    overflow: hidden;
}

.blog-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-content {
    padding: 1.5rem;
}

.blog-meta {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}

.blog-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.blog-excerpt {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* ================= PRODUCT DETAIL PAGE ================= */
.product-gallery {
    background: white;
    border-radius: 15px;
    padding: 1rem;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}

.product-gallery .main-image {
    border-radius: 10px;
    overflow: hidden;
}

.product-gallery .main-image img {
    width: 100%;
    height: auto;
}

.product-gallery .thumbnail-list {
    display: flex;
    gap: 10px;
    margin-top: 1rem;
    overflow-x: auto;
}

.product-gallery .thumbnail {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.3s ease;
    flex-shrink: 0;
}

.product-gallery .thumbnail.active,
.product-gallery .thumbnail:hover {
    border-color: var(--primary-color);
}

.product-gallery .thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-detail-info h1 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.product-detail-info .price-box {
    padding: 1.5rem;
    background: #fff5eb;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

.product-detail-info .price-box .current-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.product-detail-info .price-box .original-price {
    font-size: 1.25rem;
    color: var(--text-muted);
    text-decoration: line-through;
    margin-left: 1rem;
}

.product-detail-info .price-box .discount-badge {
    background: var(--danger-color);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    margin-left: 1rem;
}

.attribute-selector {
    margin-bottom: 1.5rem;
}

.attribute-selector label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.attribute-selector .options {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.attribute-selector .option {
    padding: 0.5rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
}

.attribute-selector .option:hover,
.attribute-selector .option.active {
    border-color: var(--primary-color);
    background: #fff5eb;
}

.attribute-selector .option.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.attribute-selector .option.selected,
.attribute-selector .option.active.selected {
    border-color: var(--primary-color);
    background: var(--primary-color);
    color: white;
    font-weight: 600;
}

a.attribute-selector .option .price-adjust {
    display: block;
    font-size: 0.75rem;
    margin-top: 2px;
    color: var(--primary-color);
}

.attribute-selector .option.selected .price-adjust,
.attribute-selector .option.active.selected .price-adjust {
    color: white;
    opacity: 0.9;
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.quantity-selector button {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.quantity-selector button:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.quantity-selector input {
    width: 60px;
    height: 40px;
    text-align: center;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-weight: 600;
}

/* ================= CART STYLES ================= */
.cart-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}

.cart-item-image {
    width: 120px;
    height: 120px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-details {
    flex: 1;
}

.cart-item-title {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.cart-item-variants {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.cart-item-price {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.cart-summary {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    position: sticky;
    top: 90px;
}

/* ================= CHECKOUT STYLES ================= */
.checkout-section {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}

.checkout-section h5 {
    font-weight: 700;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--primary-light);
}

.address-card {
    border: 2px solid var(--border-color);
    border-radius: 10px;
    padding: 1.25rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.address-card:hover,
.address-card.selected {
    border-color: var(--primary-color);
    background: #fff5eb;
}

.address-card .address-type {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.address-card .address-name {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.address-card .address-details {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
}

.address-card .default-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 0.7rem;
    background: var(--success-color);
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
}

.order-summary-item {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
}

.order-summary-item:last-child {
    border-bottom: none;
}

.order-summary-item.total {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
}

/* ================= DASHBOARD STYLES ================= */
.dashboard-sidebar {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}

.dashboard-sidebar .nav-link {
    padding: 0.75rem 1rem !important;
    border-radius: 8px;
    margin-bottom: 0.25rem;
    color: var(--text-dark);
}

.dashboard-sidebar .nav-link:hover,
.dashboard-sidebar .nav-link.active {
    background: #fff5eb;
    color: var(--primary-color) !important;
}

.dashboard-content {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    min-height: 500px;
}

.dashboard-card {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 15px;
    padding: 1.5rem;
    color: white;
}

.dashboard-card h4 {
    font-size: 2rem;
    font-weight: 700;
    margin: 0.5rem 0;
}

.dashboard-card p {
    margin: 0;
    opacity: 0.9;
}

.dashboard-card .icon {
    font-size: 2.5rem;
    opacity: 0.3;
}

/* ================= ORDER STATUS ================= */
.status-badge {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.badge-pending {
    background: #fff3cd;
    color: #856404;
}

.badge-processing {
    background: #d1ecf1;
    color: #0c5460;
}

.badge-shipped {
    background: #cce5ff;
    color: #004085;
}

.badge-delivered {
    background: #d4edda;
    color: #155724;
}

.badge-cancelled {
    background: #f8d7da;
    color: #721c24;
}

.badge-refunded {
    background: #e2e3e5;
    color: #383d41;
}

.order-timeline {
    position: relative;
    padding-left: 2rem;
}

.order-timeline::before {
    content: '';
    position: absolute;
    left: 6px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border-color);
}

.order-timeline-item {
    position: relative;
    padding-bottom: 2rem;
}

.order-timeline-item:last-child {
    padding-bottom: 0;
}

.order-timeline-item::before {
    content: '';
    position: absolute;
    left: -1.6rem;
    top: 0;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--border-color);
    border: 2px solid white;
    box-shadow: 0 0 0 2px var(--border-color);
}

.order-timeline-item.completed::before {
    background: var(--success-color);
    box-shadow: 0 0 0 2px var(--success-color);
}

.order-timeline-item.active::before {
    background: var(--primary-color);
    box-shadow: 0 0 0 2px var(--primary-color);
}

.order-timeline-item .date {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.order-timeline-item .status {
    font-weight: 600;
}

.order-timeline-item .note {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

/* ================= AUTH FORMS ================= */
.auth-container {
    min-height: calc(100vh - 76px);
    display: flex;
    align-items: center;
    padding: 3rem 0;
}

.auth-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
}

.auth-card .logo {
    text-align: center;
    margin-bottom: 2rem;
}

.auth-card h2 {
    font-weight: 700;
    text-align: center;
    margin-bottom: 0.5rem;
}

.auth-card .subtitle {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.auth-card .form-control {
    padding: 0.75rem 1rem;
    border-radius: 10px;
    border: 2px solid var(--border-color);
    transition: border-color 0.3s ease;
}

.auth-card .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: none;
}

.auth-card .btn-primary {
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    font-weight: 600;
}

.social-login {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1.5rem;
}

.social-login .btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

/* ================= FOOTER ================= */
footer {
    background: #f8f9fa;
    border-top: 1px solid var(--border-color);
}

footer h5,
footer h6 {
    color: var(--text-dark);
}

footer a {
    color: var(--text-muted);
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--primary-color);
}

/* ================= PAGINATION ================= */
.pagination .page-link {
    color: var(--primary-color);
    border: 1px solid var(--border-color);
    margin: 0 0.25rem;
    border-radius: 8px;
}

.pagination .page-link:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.pagination .page-item.active .page-link {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

/* ================= ADMIN STYLES ================= */
.admin-sidebar {
    background: white;
    min-height: calc(100vh - 56px);
    padding: 1rem 0;
    border-right: 1px solid var(--border-color);
}

.admin-sidebar .nav-link {
    padding: 0.75rem 1.5rem !important;
    color: var(--text-dark);
    border-left: 3px solid transparent;
}

.admin-sidebar .nav-link:hover,
admin-sidebar .nav-link.active {
    background: #fff5eb;
    color: var(--primary-color) !important;
    border-left-color: var(--primary-color);
}

.admin-sidebar .nav-link i {
    width: 24px;
    margin-right: 0.5rem;
}

.admin-content {
    padding: 2rem;
    background: #f8f9fa;
    min-height: calc(100vh - 56px);
}

.stat-card {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}

.stat-card .icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.stat-card .icon.primary {
    background: #fff5eb;
    color: var(--primary-color);
}

.stat-card .icon.success {
    background: #d4edda;
    color: var(--success-color);
}

.stat-card .icon.warning {
    background: #fff3cd;
    color: #856404;
}

.stat-card .icon.danger {
    background: #f8d7da;
    color: var(--danger-color);
}

.stat-card h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.stat-card p {
    color: var(--text-muted);
    margin: 0;
}

/* ================= WISHLIST ================= */
.wishlist-item {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.wishlist-item-image {
    width: 100px;
    height: 100px;
    border-radius: 10px;
    overflow: hidden;
}

.wishlist-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wishlist-item-details {
    flex: 1;
}

.wishlist-item-actions {
    display: flex;
    gap: 0.75rem;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 991.98px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .product-actions {
        opacity: 1;
        transform: none;
    }
    
    .cart-item {
        flex-direction: column;
    }
    
    .cart-item-image {
        width: 100%;
        height: 200px;
    }
    
    .dashboard-sidebar {
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 575.98px) {
    .hero-section {
        min-height: 300px;
    }
    
    .hero-content {
        padding: 1.5rem;
    }
    
    .hero-content h1 {
        font-size: 1.75rem;
    }
    
    .auth-card {
        padding: 1.5rem;
        border-radius: 0;
        box-shadow: none;
    }
    
    .checkout-section {
        padding: 1.25rem;
    }
}

/* ================= ANIMATIONS ================= */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.5s ease;
}

/* ================= UTILITIES ================= */
.shadow-sm {
    box-shadow: 0 2px 10px rgba(0,0,0,0.05) !important;
}

.shadow {
    box-shadow: 0 5px 20px rgba(0,0,0,0.08) !important;
}

.shadow-lg {
    box-shadow: 0 10px 40px rgba(0,0,0,0.1) !important;
}

.text-truncate-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    box-orient: vertical;
    overflow: hidden;
}

.text-truncate-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    box-orient: vertical;
    overflow: hidden;
}

.bg-gradient-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
}

/* ================= LOADING ================= */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255,255,255,0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid var(--border-color);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}
