:root{
    --primary: #0211c1;
}

@keyframes pulse-profile {
    0% {
        box-shadow: 0 0 0 0 rgba(2, 17, 193, 0.7);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(2, 17, 193, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(2, 17, 193, 0);
    }
}

[data-header-position="fixed"] .header{
    z-index: 10021;
}

[data-sidebar-position="fixed"][data-layout="vertical"] .nav-header{
    z-index: 10024;
}

.profile-placeholder-animation{
    height: 60px;
    width: 60px;
    border-radius: 50%;
    overflow: hidden;   
    background-color: #6ed3ff;
    animation: pulse-profile 2s ease-out infinite;
    position: relative;
}

.profile-placeholder-animation video{
    width: 100%;
    height: 150%;
    object-fit: cover;
}

/* ============================================
   HOME PAGE STYLES
   ============================================ */

/* Fade In Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-out forwards;
}

/* Banner Carousel */
.hero-section {
    margin-bottom: 3rem;
}

.banner-image {
    height: 520px;
    object-fit: cover;
    width: 100%;
    border-radius: 8px;
}

/* Owl Carousel Custom Styles */
.owl-carousel-banner {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.owl-carousel-banner .owl-stage-outer {
    border-radius: 8px;
}

.owl-carousel-banner .owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 10;
}

.owl-carousel-banner .owl-nav button {
    pointer-events: all;
    background: rgba(2, 17, 193, 0.8) !important;
    color: #fff !important;
    font-size: 24px !important;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    opacity: 0;
    margin: 0 15px;
    border: 2px solid rgba(255,255,255,0.5) !important;
}

.owl-carousel-banner:hover .owl-nav button {
    opacity: 1;
}

.owl-carousel-banner .owl-nav button:hover {
    background: var(--primary) !important;
    border-color: #fff !important;
    transform: scale(1.1);
}

.owl-carousel-banner .owl-dots {
    text-align: center;
    padding-top: 15px;
    position: absolute;
    bottom: 20px;
    width: 100%;
    z-index: 10;
}

.owl-carousel-banner .owl-dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    margin: 0 5px;
    background: rgba(255,255,255,0.5) !important;
    border-radius: 50%;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.owl-carousel-banner .owl-dot:hover {
    background: rgba(255,255,255,0.8) !important;
}

.owl-carousel-banner .owl-dot.active {
    background: #fff !important;
    width: 30px;
    border-radius: 10px;
    border-color: rgba(2, 17, 193, 0.3);
}

/* Animaciones de entrada para owl-carousel */
.owl-carousel .fadeIn {
    animation: fadeIn 1s ease-in-out;
}

.owl-carousel .fadeOut {
    animation: fadeOut 1s ease-in-out;
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

/* Section Titles */
.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    position: relative;
    display: inline-block;
}

/* Product Cards */
.product-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e0e0e0;
    overflow: hidden;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15) !important;
}

.product-image-wrapper {
    height: 200px;
    overflow: hidden;
    background-color: #f8f9fa;
    position: relative;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image {
    transform: scale(1.1);
}

.product-title {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
    min-height: 2.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-description {
    font-size: 0.85rem;
    line-height: 1.4;
    max-height: 3.5rem;
    overflow: hidden;
}

.price-section {
    border-top: 1px solid #e0e0e0;
    padding-top: 0.75rem;
}

.featured-badge {
    z-index: 10;
    font-size: 0.75rem;
    padding: 0.35rem 0.65rem;
    font-weight: 600;
    animation: pulse-badge 2s ease-in-out infinite;
}

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

/* Category Cards */
.category-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e0e0e0;
    overflow: hidden;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12) !important;
}

.category-image-wrapper {
    height: 150px;
    overflow: hidden;
    background-color: #f8f9fa;
    position: relative;
}

.category-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.category-card:hover .category-image {
    transform: scale(1.08);
}

/* Hover Lift Effect */
.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15) !important;
}

/* Admin Dashboard Stats Cards */
.stat-card {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-icon {
    font-size: 3rem;
}

/* Quick Action Cards */
.quick-action-card {
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.quick-action-card:hover {
    border-color: var(--primary);
    background-color: #f8f9ff;
}

.quick-action-card i {
    transition: transform 0.3s ease;
}

.quick-action-card:hover i {
    transform: scale(1.15);
}

/* CTA Section */
.cta-section .card {
    border: none;
    border-radius: 15px;
    background: linear-gradient(135deg, var(--primary) 0%, #0056b3 100%);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .banner-image {
        height: 250px;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .product-image-wrapper {
        height: 180px;
    }
    
    .category-image-wrapper {
        height: 120px;
    }
}

@media (max-width: 576px) {
    .banner-image {
        height: 200px;
    }
    
    .product-card,
    .category-card {
        margin-bottom: 1rem;
    }
}

/* ============================================
   CATALOG PAGE STYLES
   ============================================ */

/* Catalog Header */
.catalog-header {
    padding: 2rem 0;
    background: linear-gradient(to bottom, #f8f9fa 0%, transparent 100%);
    margin: -1rem -15px 0;
    padding-left: 15px;
    padding-right: 15px;
}

/* Filter Form */
.filter-form .card {
    border: none;
    transition: box-shadow 0.3s ease;
}

.filter-form .card:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1) !important;
}

.filter-form .input-group-text {
    border-right: none;
}

.filter-form .form-control.border-start-0 {
    border-left: none;
}

.filter-form .form-control:focus,
.filter-form .form-select:focus {
    border-color: #dee2e6;
    box-shadow: none;
}

.filter-form .input-group .form-control:focus {
    border-left: none;
}

.filter-form .input-group:focus-within .input-group-text {
    border-color: #86b7fe;
    background-color: #e7f1ff;
}

.filter-form .input-group:focus-within .form-control {
    border-color: #86b7fe;
}

/* Active Filters Badges */
.filter-form .badge {
    font-weight: 500;
    padding: 0.5rem 0.75rem;
}

.filter-form .badge a {
    text-decoration: none;
    font-size: 1.2rem;
    line-height: 1;
    opacity: 0.8;
    transition: opacity 0.2s;
}

.filter-form .badge a:hover {
    opacity: 1;
}

/* Products Grid Animation */
.products-grid .col-md-3 {
    animation: fadeInUp 0.5s ease-out forwards;
    opacity: 0;
}

.products-grid .col-md-3:nth-child(1) {
    animation-delay: 0.05s;
}

.products-grid .col-md-3:nth-child(2) {
    animation-delay: 0.1s;
}

.products-grid .col-md-3:nth-child(3) {
    animation-delay: 0.15s;
}

.products-grid .col-md-3:nth-child(4) {
    animation-delay: 0.2s;
}

.products-grid .col-md-3:nth-child(5) {
    animation-delay: 0.25s;
}

.products-grid .col-md-3:nth-child(6) {
    animation-delay: 0.3s;
}

.products-grid .col-md-3:nth-child(7) {
    animation-delay: 0.35s;
}

.products-grid .col-md-3:nth-child(8) {
    animation-delay: 0.4s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Empty State */
.products-grid .card i.fa-box-open {
    color: #cbd5e0;
}

/* Pagination */
.pagination-section {
    padding: 2rem 0;
}

.pagination-section .pagination {
    gap: 0.25rem;
}

.pagination-section .page-link {
    border-radius: 8px;
    border: 1px solid #dee2e6;
    color: #495057;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
}

.pagination-section .page-link:hover {
    background-color: var(--primary);
    border-color: var(--primary);
    color: white;
    transform: translateY(-2px);
}

.pagination-section .page-item.active .page-link {
    background-color: var(--primary);
    border-color: var(--primary);
}

.pagination-section .page-item.disabled .page-link {
    opacity: 0.5;
}

/* CTA Section Catalog */
.cta-section .card {
    transition: transform 0.3s ease;
}

.cta-section .card:hover {
    transform: scale(1.02);
}

/* Responsive Catalog */
@media (max-width: 992px) {
    .catalog-header {
        padding: 1.5rem 0;
    }
    
    .filter-form .card-body {
        padding: 1rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
}

@media (max-width: 768px) {
    .catalog-header {
        padding: 1rem 0;
    }
    
    .filter-form .btn {
        font-size: 0.875rem;
    }
    
    .products-grid .col-md-3 {
        animation: none;
        opacity: 1;
    }
}

/* ============================================
   PRODUCT DETAIL PAGE STYLES
   ============================================ */

/* Product Detail Page Layout */
.product-detail-page {
    padding: 2rem 0;
}

/* Breadcrumbs */
.breadcrumb {
    background-color: transparent;
    padding: 1rem 0;
    margin-bottom: 1rem;
}

.breadcrumb-item a {
    color: #6c757d;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: var(--primary);
}

.breadcrumb-item.active {
    color: #495057;
    font-weight: 500;
}

/* Product Images Section */
.product-images-section {
    position: sticky;
}

.product-carousel-inner {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.product-main-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.carousel-item:hover .product-main-image {
    transform: scale(1.05);
}

/* Thumbnails */
.product-thumbnails {
    margin-top: 1rem;
}

.thumbnail-wrapper {
    width: 80px;
    height: 80px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0.6;
}

.thumbnail-wrapper:hover,
.thumbnail-wrapper.active {
    border-color: var(--primary);
    opacity: 1;
    transform: scale(1.05);
}

.product-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Trust Badges */
.trust-badges {
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 12px;
}

.trust-badge-item {
    transition: transform 0.3s ease;
}

.trust-badge-item:hover {
    transform: translateY(-5px);
}

.trust-badge-item i {
    transition: transform 0.3s ease;
}

.trust-badge-item:hover i {
    transform: scale(1.1);
}

/* Product Info Section */
.product-info-section {
    padding: 0 1rem;
}

.product-title {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    line-height: 1.3;
}

/* Availability Status */
.availability-status .badge {
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    font-weight: 500;
}

/* Pricing Section */
.pricing-section {
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
}

.pricing-section:hover {
    border-color: var(--primary);
    box-shadow: 0 5px 15px rgba(2, 17, 193, 0.1);
}

.original-price {
    font-size: 1.1rem;
}

.current-price {
    line-height: 1;
}

.price-details {
    padding-top: 0.75rem;
    border-top: 1px solid #dee2e6;
}

/* Product Description */
.product-description h5 {
    color: #333;
    font-weight: 600;
}

.product-description p {
    font-size: 1rem;
    line-height: 1.6;
}

/* Add to Cart Form */
.add-to-cart-form .input-group {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.add-to-cart-form input[type="number"] {
    font-weight: 600;
    font-size: 1.1rem;
}

.add-to-cart-form .input-group-text,
.add-to-cart-form .btn-outline-secondary {
    background-color: white;
    border-color: #dee2e6;
}

.add-to-cart-btn {
    font-size: 1.1rem;
    font-weight: 600;
    padding: 0.75rem 2rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(2, 17, 193, 0.3);
}

.add-to-cart-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(2, 17, 193, 0.4);
}

.add-to-cart-btn:active {
    transform: translateY(0);
}

/* Action Buttons */
.action-buttons .btn {
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.action-buttons .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Additional Info Card */
.additional-info .card {
    transition: transform 0.3s ease;
}

.additional-info .card:hover {
    transform: translateY(-3px);
}

.additional-info i {
    font-size: 1.5rem;
}

/* Related Products */
.related-products {
    padding-top: 3rem;
    border-top: 2px solid #e0e0e0;
}

.related-products .section-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #333;
}

/* Admin View Styles */
.stat-card.shadow-sm:hover {
    transform: translateY(-3px);
}

/* Carousel Controls Enhancement */
.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: all 0.3s ease;
}

.carousel:hover .carousel-control-prev,
.carousel:hover .carousel-control-next {
    opacity: 1;
}

.carousel-control-prev {
    left: 20px;
}

.carousel-control-next {
    right: 20px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: invert(1);
}

/* Quantity Input Styling */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    opacity: 1;
}

/* Featured Badge Animation on Detail Page */
.product-images-section .featured-badge {
    animation: pulse-badge 2s ease-in-out infinite;
    font-size: 0.85rem;
    padding: 0.5rem 0.75rem;
}

/* Responsive Product Detail */
@media (max-width: 992px) {
    .product-images-section {
        position: relative !important;
        top: 0 !important;
    }
    
    .product-main-image {
        height: 400px;
    }
    
    .product-title {
        font-size: 1.75rem;
    }
    
    .thumbnail-wrapper {
        width: 70px;
        height: 70px;
    }
}

@media (max-width: 768px) {
    .product-detail-page {
        padding: 1rem 0;
    }
    
    .product-main-image {
        height: 300px;
    }
    
    .product-title {
        font-size: 1.5rem;
    }
    
    .pricing-section {
        padding: 1rem !important;
    }
    
    .current-price .h1 {
        font-size: 2rem;
    }
    
    .thumbnail-wrapper {
        width: 60px;
        height: 60px;
    }
    
    .trust-badges {
        padding: 1rem;
    }
    
    .trust-badge-item i {
        font-size: 1.5rem;
    }
    
    .trust-badge-item small {
        font-size: 0.75rem;
    }
    
    .add-to-cart-btn {
        font-size: 1rem;
        padding: 0.65rem 1rem;
    }
}

@media (max-width: 576px) {
    .product-main-image {
        height: 250px;
    }
    
    .product-title {
        font-size: 1.25rem;
    }
    
    .current-price .h1 {
        font-size: 1.75rem;
    }
    
    .action-buttons {
        flex-direction: column;
    }
    
    .action-buttons .btn {
        width: 100%;
    }
}

/* Loading State for Add to Cart */
.add-to-cart-btn.loading {
    pointer-events: none;
    opacity: 0.6;
}

.add-to-cart-btn.loading::after {
    content: "";
    display: inline-block;
    width: 1rem;
    height: 1rem;
    margin-left: 0.5rem;
    border: 2px solid white;
    border-radius: 50%;
    border-top-color: transparent;
    animation: spinner 0.6s linear infinite;
}

@keyframes spinner {
    to {
        transform: rotate(360deg);
    }
}

/* ============================================
   PRODUCTS ADMIN STYLES
   ============================================ */

/* Products Index Grid */
.products-page .fade-in {
    animation: fadeIn 0.5s ease-out forwards;
    opacity: 0;
}

/* Product Card Hover Animations */
.product-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-8px);
}

/* Product Form Sections */
.product-form-page .form-section {
    animation: fadeIn 0.5s ease-out forwards;
    opacity: 0;
}

/* Staggered Animation for Form Sections */
.product-form-page .form-section:nth-child(1) {
    animation-delay: 0s;
}

.product-form-page .form-section:nth-child(2) {
    animation-delay: 0.1s;
}

.product-form-page .form-section:nth-child(3) {
    animation-delay: 0.2s;
}

.product-form-page .form-section:nth-child(4) {
    animation-delay: 0.3s;
}

.product-form-page .form-section:nth-child(5) {
    animation-delay: 0.4s;
}

.product-form-page .form-section:nth-child(6) {
    animation-delay: 0.5s;
}

.product-form-page .form-section:nth-child(7) {
    animation-delay: 0.6s;
}

/* Price Input Focus Effect */
.price-input-wrapper input:focus {
    transform: scale(1.02);
}

/* Image Upload Area Transition */
.image-upload-area {
    position: relative;
    overflow: hidden;
}

.image-upload-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(2, 17, 193, 0.1), transparent);
    transition: left 0.5s;
}

.image-upload-area:hover::before {
    left: 100%;
}

/* Toggle Switch Animation */
.toggle-switch input[type="checkbox"] {
    transition: background 0.3s ease;
}

.toggle-switch input[type="checkbox"]::before {
    transition: left 0.3s ease, box-shadow 0.3s ease;
}

.toggle-switch input[type="checkbox"]:checked::before {
    box-shadow: 0 2px 5px rgba(25, 135, 84, 0.5);
}

/* Responsive Product Grid */
@media (max-width: 1200px) {
    .products-page .col-lg-3 {
        flex: 0 0 25%;
        max-width: 25%;
    }
}

@media (max-width: 992px) {
    .products-page .col-md-4 {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
}

@media (max-width: 768px) {
    .products-page .col-sm-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
    
    .product-form-page .form-section {
        padding: 1.5rem;
    }
}

@media (max-width: 576px) {
    .products-page .col-sm-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ============================================
   BANNERS ADMIN STYLES
   ============================================ */

/* Banners Index Grid */
.banners-page .fade-in {
    animation: fadeIn 0.5s ease-out forwards;
    opacity: 0;
}

/* Banner Card Hover Animations */
.banner-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.banner-card:hover {
    transform: translateY(-8px);
}

/* Banner Form Sections */
.banner-form-page .form-section {
    animation: fadeIn 0.5s ease-out forwards;
    opacity: 0;
}

/* Staggered Animation for Banner Form Sections */
.banner-form-page .form-section:nth-child(1) {
    animation-delay: 0s;
}

.banner-form-page .form-section:nth-child(2) {
    animation-delay: 0.1s;
}

.banner-form-page .form-section:nth-child(3) {
    animation-delay: 0.2s;
}

.banner-form-page .form-section:nth-child(4) {
    animation-delay: 0.3s;
}

.banner-form-page .form-section:nth-child(5) {
    animation-delay: 0.4s;
}

.banner-form-page .form-section:nth-child(6) {
    animation-delay: 0.5s;
}

.banner-form-page .form-section:nth-child(7) {
    animation-delay: 0.6s;
}

/* Banner Image Upload Area Animation */
.banner-form-page .image-upload-area {
    position: relative;
    overflow: hidden;
}

.banner-form-page .image-upload-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(2, 17, 193, 0.1), transparent);
    transition: left 0.5s;
}

.banner-form-page .image-upload-area:hover::before {
    left: 100%;
}

/* Responsive Banner Grid */
@media (max-width: 992px) {
    .banners-page .col-md-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (max-width: 768px) {
    .banner-form-page .form-section {
        padding: 1.5rem;
    }
}

@media (max-width: 576px) {
    .banners-page .col-md-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/* ============================================
   ADMIN DASHBOARD STYLES
   ============================================ */

/* Dashboard Animations */
.admin-dashboard .fade-in {
    animation: fadeIn 0.5s ease-out forwards;
    opacity: 0;
}

/* Dashboard Stat Cards */
.dashboard-stat-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dashboard-stat-card:hover {
    transform: translateY(-8px);
}

/* Quick Action Cards */
.quick-action-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.quick-action-card:hover {
    transform: translateY(-8px);
}

.quick-action-icon-wrapper {
    transition: transform 0.3s ease;
}

.quick-action-card:hover .quick-action-icon-wrapper {
    transform: scale(1.1);
}

/* CTA Card Gradient Animation */
.cta-card {
    position: relative;
    overflow: hidden;
}

.cta-card::before,
.cta-card::after {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(20px, -20px);
    }
}

/* Responsive Dashboard */
@media (max-width: 992px) {
    .dashboard-stat-value {
        font-size: 2rem;
    }
    
    .quick-action-icon-wrapper {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .admin-dashboard {
        padding: 1rem 0;
    }
    
    .dashboard-stat-value {
        font-size: 1.75rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .quick-action-title {
        font-size: 1rem;
    }
}