@import url('https://fonts.googleapis.com/css2?family=Jost:wght@300;400;500;600;700;800&display=swap');

/* =========================================
   Base / General Styling
   ========================================= */
:root {
    --primary-color: #0d6efd;
    --secondary-color: #6c757d;
    --accent-color: #ffc107;
    --dark-color: #212529;
    --light-color: #f8f9fa;
    --body-bg: #fff;
    --card-bg: #fff;
    --border-color: #dee2e6;
    --text-color: #212529;
    --link-color: #0d6efd;
    --link-hover-color: #0a58ca;
    
    --font-family-sans-serif: 'Inter', system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

body {
    font-family: var(--font-family-sans-serif);
    background-color: var(--body-bg);
    color: var(--text-color);
}

a {
    color: var(--link-color);
    text-decoration: none;
    transition: color 0.2s ease-in-out;
}

a:hover {
    color: var(--link-hover-color);
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--link-hover-color);
    border-color: var(--link-hover-color);
}

.card {
    border: 1px solid var(--border-color);
    background-color: var(--card-bg);
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
    transform: translateY(-2px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary-color) !important;
}

.hero-section {
    background: linear-gradient(135deg, lighten(var(--primary-color), 40%), var(--light-color));
    padding: 4rem 0;
}

.footer {
    background-color: var(--dark-color);
    color: var(--light-color);
    padding: 3rem 0;
}

.footer a {
    color: #adb5bd;
}

.footer a:hover {
    color: #fff;
}

/* =========================================
   Landing Page Styling
   ========================================= */
/* Fonts */


:root {
    --font-primary: 'Jost', sans-serif;
    --color-black: #000000;
    --color-white: #ffffff;
    --color-gray-100: #f8f9fa;
    --color-gray-500: #6c757d;
}

body {
    font-family: var(--font-primary);
    color: var(--color-black);
    overflow-x: hidden;
}

/* Top Bar */
.top-bar {
    background-color: var(--color-black);
    color: var(--color-white);
    font-size: 0.75rem;
    padding: 0.5rem 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Navbar */
.navbar-tulos {
    background-color: var(--color-white);
    padding: 1.5rem 0;
    border-bottom: 1px solid #eee;
}

.brand-logo {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -1px;
    text-transform: uppercase;
    color: var(--color-black);
    text-decoration: none;
}

.nav-link-custom {
    color: var(--color-black);
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    margin: 0 1rem;
    transition: color 0.3s;
}

.nav-link-custom:hover {
    color: var(--color-gray-500);
}

.nav-icons a {
    color: var(--color-black);
    font-size: 1.2rem;
    margin-left: 1rem;
    text-decoration: none;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 85vh;
    background-color: #dcdcdcdc; /* Fallback */
    background-size: cover;
    background-position: center;
    background-image: url('https://images.unsplash.com/photo-1540221652346-e5dd6b50f3e7?q=80&w=2669&auto=format&fit=crop'); /* Placeholder landscape fashion */
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.1);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: left;
    width: 100%;
    max-width: 1400px;
    padding: 0 2rem;
}

.hero-title {
    color: var(--color-white);
    font-size: 4rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    color: var(--color-white);
    font-size: 1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    line-height: 1.6;
}

.btn-tulos-white {
    background-color: var(--color-white);
    color: var(--color-black);
    border: none;
    padding: 10px 30px;
    text-transform: uppercase;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s;
}

.btn-tulos-white:hover {
    background-color: var(--color-black);
    color: var(--color-white);
}

/* Section Titles */
.section-title {
    text-align: center;
    margin-bottom: 3rem;
    margin-top: 5rem;
}

.section-title h2 {
    font-weight: 700;
    text-transform: uppercase;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.section-title p {
    color: var(--color-gray-500);
    font-size: 0.9rem;
}

/* Product Cards */
.product-card {
    border: none;
    background: transparent;
    margin-bottom: 2rem;
}

.product-img-wrapper {
    position: relative;
    background-color: #f4f4f4;
    overflow: hidden;
    margin-bottom: 1rem;
    aspect-ratio: 1; /* Square images */
}

.product-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-img-wrapper img {
    transform: scale(1.05);
}

.product-title {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
}

.product-desc {
    font-size: 0.85rem;
    color: var(--color-gray-500);
    margin-bottom: 0.5rem;
}

.product-price {
    font-weight: 600;
    font-size: 1rem;
}

/* Wedding Banner */
.wedding-banner {
    position: relative;
    height: 400px;
    background-image: url('https://images.unsplash.com/photo-1515934751635-c81c6bc9a2d8?q=80&w=2670&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 5rem 0;
}

.wedding-content {
    background: var(--color-white);
    padding: 2rem 4rem;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    border-radius: 4px; /* Slight round */
}

.wedding-content h3 {
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

/* Category Cards */
.category-card {
    position: relative;
    height: 400px;
    overflow: hidden;
    border-radius: 10px;
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-content {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
}

.category-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-white);
    text-transform: uppercase;
    margin-bottom: 1rem;
}

/* Footer */
.footer-tulos {
    padding: 4rem 0 2rem 0;
    background-color: var(--color-white);
    font-size: 0.9rem;
}

.footer-logo {
    font-size: 2.5rem;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: inline-block;
}

.footer-heading {
    font-weight: 700;
    margin-bottom: 1.2rem;
    font-size: 1rem;
}

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

.footer-links a {
    color: var(--color-gray-500);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--color-black);
}

.btn-black {
    background: var(--color-black);
    color: var(--color-white);
    border-radius: 20px;
    padding: 0.375rem 1.5rem;
}

/* =========================================
   Product Detail Page Styling
   ========================================= */
/* Fonts */


:root {
    --font-primary: 'Jost', sans-serif;
    --color-black: #000000;
    --color-white: #ffffff;
    --color-gray-100: #f0f0f0;
    --color-gray-200: #e6e6e6;
    --color-gray-500: #666666;
    --color-green-check: #01AB31;
}

body {
    font-family: var(--font-primary);
    color: var(--color-black);
    overflow-x: hidden;
}

/* Breadcrumbs */
.breadcrumb-item a {
    color: var(--color-gray-500);
    text-decoration: none;
}

.breadcrumb-item.active {
    color: var(--color-black);
    font-weight: 500;
}

/* Product Gallery */
.gallery-thumbs {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.gallery-thumb {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 12px;
    cursor: pointer;
    border: 1px solid transparent;
}

.gallery-thumb.active {
    border-color: var(--color-black);
}

.main-image-wrapper {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    background-color: #F8F9FA;
}

.main-image {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Product Info */
.product-title {
    font-size: 1.5rem; /* Large and bold as per image (SHOP.CO) */
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.rating-stars {
    color: #FFC633; /* Yellow star color */
    font-size: 1.2rem;
}

.rating-text {
    color: var(--color-black);
    font-weight: 400;
    margin-left: 0.5rem;
}

.price-current {
    font-size: 2rem;
    font-weight: 700;
    margin-right: 0.5rem;
}

.price-old {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-gray-200); /* Very light gray for strikethrough */
    text-decoration: line-through;
    margin-right: 0.5rem;
}

.discount-badge {
    background-color: #FF3333;
    color: white;
    padding: 0.2rem 0.8rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    vertical-align: middle;
}

.discount-badge-light {
    background-color: #FF33331A; /* Low opacity red background */
    color: #FF3333;
}

.product-desc {
    color: var(--color-gray-500);
    line-height: 1.6;
    margin-top: 1rem;
    margin-bottom: 1.5rem;
}

.option-label {
    display: block;
    color: var(--color-gray-500);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

/* Color Circles */
.color-options {
    display: flex;
    gap: 1rem;
}

.color-option {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    position: relative;
    border: 1px solid rgba(0,0,0,0.1);
}

.color-option.selected::after {
    content: '\2713'; /* Checkmark */
    color: white;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 0.9rem;
}

/* Size Pills */
.size-options {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.size-option {
    padding: 0.6rem 1.2rem;
    background-color: #F0F0F0;
    color: var(--color-gray-500);
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.2s;
    font-weight: 500;
}

.size-option.selected {
    background-color: var(--color-black);
    color: var(--color-white);
}

/* Quantity & Cart */
.qty-selector {
    background-color: #F0F0F0;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    margin-right: 1rem;
}

.qty-btn {
    border: none;
    background: transparent;
    font-size: 1.2rem;
    width: 30px;
    cursor: pointer;
}

.qty-input {
    border: none;
    background: transparent;
    width: 40px;
    text-align: center;
    font-weight: 600;
    outline: none;
}

.btn-add-cart {
    background-color: var(--color-black);
    color: var(--color-white);
    border-radius: 30px;
    padding: 0.75rem 3rem;
    font-weight: 600;
    flex-grow: 1;
}

/* Tabs */
.nav-tabs {
    border-bottom: 1px solid var(--color-gray-200);
    justify-content: space-around; /* Distribute evenly */
}

.nav-tabs .nav-link {
    border: none;
    color: var(--color-gray-500);
    font-size: 1.1rem;
    font-weight: 500;
    padding-bottom: 1rem;
}

.nav-tabs .nav-link.active {
    color: var(--color-black);
    border-bottom: 2px solid var(--color-black);
    background: transparent;
}

/* Reviews */
.reviews-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.review-card {
    border: 1px solid var(--color-gray-200);
    border-radius: 20px;
    padding: 2rem;
    height: 100%;
}

.review-stars {
    color: #FFC633;
    margin-bottom: 0.8rem;
}

.reviewer-name {
    font-weight: 700;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.verified-badge {
    color: var(--color-green-check);
    font-size: 1rem;
}

.review-text {
    color: var(--color-gray-500);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.review-date {
    color: var(--color-gray-500);
    font-size: 0.85rem;
    margin-top: auto;
}

.btn-load-more {
    border: 1px solid var(--color-gray-200);
    background: white;
    color: var(--color-black);
    padding: 0.6rem 2rem;
    border-radius: 30px;
    font-weight: 500;
    display: block;
    margin: 2rem auto;
    width: fit-content;
}

/* Related Products */
.related-product-card {
    border: none;
    background: transparent;
}

.related-img-wrapper {
    background-color: #F8F9FA;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1rem;
    aspect-ratio: 1;
}

.related-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.related-title {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

/* Shop.co Footer specific */
.newsletter-section {
    background-color: var(--color-black);
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: -50px; /* Overlap footer */
    position: relative;
    z-index: 10;
}

.newsletter-title {
    color: white;
    font-weight: 800;
    font-size: 2.2rem;
    text-transform: uppercase;
}

.footer-shopco {
    background-color: #F0F0F0;
    padding-top: 80px; /* Account for overlap */
    padding-bottom: 2rem;
    color: var(--color-black);
}

.footer-brand {
    font-weight: 900;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.footer-desc {
    color: var(--color-gray-500);
    max-width: 300px;
    font-size: 0.9rem;
    line-height: 1.6;
}

.social-icons a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: white;
    color: black;
    border: 1px solid #ddd;
    margin-right: 0.5rem;
    font-size: 0.9rem;
    text-decoration: none;
}

.footer-col h5 {
    font-weight: 600; /* Uppercase handled in HTML usually or tracking */
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.9rem;
    margin-bottom: 1.2rem;
}

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

.footer-links a {
    color: var(--color-gray-500);
    text-decoration: none;
    font-size: 0.95rem;
}

.payment-badges img {
    height: 25px;
    background: white;
    padding: 2px 5px;
    border-radius: 4px;
    margin-left: 0.5rem;
}

/* =========================================
   Product Listing Page Styling
   ========================================= */
/* product-listing.css */

/* Sidebar Filters */
.sidebar-filters {
    border: 1px solid var(--color-gray-200);
    border-radius: 20px;
    padding: 1.5rem;
}

.filter-title {
    font-weight: 700;
    font-size: 1.3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.filter-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.filter-item {
    padding: 0.5rem 0;
}

.filter-link {
    color: var(--color-gray-500);
    text-decoration: none;
    display: flex;
}

/* =========================================
   Cart Page Styling
   ========================================= */

/* Adjust cart table */
.table-align-middle td, 
.table-align-middle th {
    vertical-align: middle;
}

/* Custom small quantity selector for cart items */
.small-qty-selector {
    background-color: #F0F0F0;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.5rem;
}

    justify-content: space-between;
    align-items: center;
    font-size: 1rem;
    transition: color 0.2s;
}

.filter-link:hover {
    color: var(--color-black);
}

.filter-accordion-btn {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--color-black);
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 1rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.filter-accordion-btn:focus {
    outline: none;
}

/* Pagination */
.pagination {
    gap: 0.25rem;
    margin-top: 2rem;
}

.page-link {
    border: none;
    color: var(--color-gray-500);
    border-radius: 8px;
    padding: 0.5rem 1rem;
    font-weight: 500;
    background-color: transparent;
}

.page-link:hover {
    background-color: var(--color-gray-100);
    color: var(--color-black);
}

.page-item.active .page-link {
    background-color: var(--color-gray-100);
    color: var(--color-black);
    font-weight: 700;
}

.page-link.btn-prev-next {
    border: 1px solid var(--color-gray-200);
    border-radius: 8px;
    color: var(--color-black);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
}

.page-link.btn-prev-next:hover {
    background-color: var(--color-gray-100);
}

/* Product Card - specific to listing */
.listing-title {
    font-weight: 800;
    font-size: 2.2rem;
    margin-bottom: 0;
}

.sort-by-select {
    border: none;
    background: transparent;
    font-weight: 600;
    color: var(--color-black);
    cursor: pointer;
    outline: none;
}

.product-card {
    border: none;
    background: transparent;
}

.product-img-wrapper {
    background-color: #F8F9FA;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 1rem;
    aspect-ratio: 1;
}

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

.product-title-grid {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    color: var(--color-black);
    text-decoration: none;
    display: block;
}

.product-title-grid:hover {
    text-decoration: none;
}

.btn-apply-filter {
    background-color: var(--color-black);
    color: white;
    border-radius: 30px;
    width: 100%;
    padding: 1rem;
    font-weight: 600;
    border: none;
    margin-top: 1rem;
}

.btn-apply-filter:hover {
    background-color: #333;
    color: white;
}

/* Custom Price Slider visual mimic */
.price-slider-visual {
    position: relative;
    height: 4px;
    background: var(--color-gray-200);
    border-radius: 2px;
    margin: 2rem 0 1rem 0;
}
.price-slider-fill {
    position: absolute;
    left: 20%;
    right: 20%;
    top: 0;
    bottom: 0;
    background: var(--color-black);
}
.price-slider-thumb {
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--color-black);
    border-radius: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
}
.price-slider-thumb.left { left: 20%; }
.price-slider-thumb.right { left: 80%; }

/* =========================================
   Admin Dashboard Styling
   ========================================= */
.admin-body {
    background-color: #F8F9FA;
    overflow-x: hidden;
}

/* Sidebar */
.admin-sidebar {
    background-color: var(--color-black, #000);
    color: var(--color-white, #fff);
    min-height: 100vh;
    width: 250px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1040;
    transition: transform 0.3s ease-in-out;
}

.admin-sidebar-header {
    height: 70px;
    display: flex;
    align-items: center;
    padding: 0 1.5rem;
    font-weight: 800;
    font-size: 1.5rem;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.admin-sidebar a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    padding: 0.8rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
    transition: all 0.2s;
}

.admin-sidebar a:hover,
.admin-sidebar a.active {
    color: #fff;
    background-color: rgba(255, 255, 255, 0.1);
    border-left: 4px solid #fff;
}

.admin-sidebar.collapsed {
    transform: translateX(-100%);
}

/* Main Content Area */
.admin-main-content {
    margin-left: 250px;
    transition: margin-left 0.3s ease-in-out;
    padding-top: 70px; /* Space for topbar */
}

.admin-main-content.expanded {
    margin-left: 0;
}

/* Topbar */
.admin-topbar {
    position: fixed;
    top: 0;
    right: 0;
    left: 250px;
    height: 70px;
    background: #fff;
    z-index: 1030;
    display: flex;
    align-items: center;
    padding: 0 2rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.04);
    transition: left 0.3s ease-in-out;
}

.admin-topbar.expanded {
    left: 0;
}

.sidebar-toggler {
    background: transparent;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--color-black, #000);
}

/* KPI Cards */
.kpi-card {
    background: #fff;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
    border: 1px solid rgba(0,0,0,0.05);
    height: 100%;
}

.kpi-title {
    font-size: 0.9rem;
    color: var(--color-gray-500, #666);
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.kpi-value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-black, #000);
    line-height: 1.2;
}

.kpi-trend {
    font-size: 0.85rem;
    font-weight: 500;
    margin-top: 0.5rem;
}

.kpi-trend.positive { color: #01AB31; }
.kpi-trend.negative { color: #FF3333; }

/* Charts Container */
.chart-container {
    background: #fff;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
    border: 1px solid rgba(0,0,0,0.05);
}

/* Activity Feed */
.activity-feed {
    background: #fff;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
    border: 1px solid rgba(0,0,0,0.05);
}

.activity-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}
.activity-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.activity-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.activity-icon.order { background: rgba(1, 171, 49, 0.1); color: #01AB31; }
.activity-icon.payment { background: rgba(0, 0, 0, 0.05); color: #000; }
.activity-icon.user { background: rgba(13, 110, 253, 0.1); color: #0d6efd; }
.activity-icon.stock { background: rgba(255, 51, 51, 0.1); color: #FF3333; }

.activity-text {
    font-size: 0.95rem;
    font-weight: 500;
}

.activity-time {
    font-size: 0.8rem;
    color: var(--color-gray-500, #666);
}

/* Quick Actions */
.quick-action-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1.5rem;
    background: #F8F9FA;
    border-radius: 12px;
    border: 1px solid rgba(0,0,0,0.05);
    color: var(--color-black, #000);
    font-weight: 600;
    transition: all 0.2s;
    text-decoration: none;
}

.quick-action-btn:hover {
    background: var(--color-black, #000);
    color: #fff;
    transform: translateY(-2px);
}
.quick-action-btn i { font-size: 1.5rem; }

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .admin-sidebar {
        transform: translateX(-100%);
    }
    .admin-sidebar.mobile-open {
        transform: translateX(0);
    }
    .admin-main-content {
        margin-left: 0;
    }
    .admin-topbar {
        left: 0;
    }
}

/* Order & Payment Status Badges */
.status-badge {
    padding: 0.5em 1em;
    font-weight: 600;
    border-radius: 30px;
    font-size: 0.85rem;
}
.status-pending { background-color: rgba(255, 193, 7, 0.1); color: #d39e00; }
.status-paid { background-color: rgba(32, 201, 151, 0.1); color: #20c997; }
.status-processing { background-color: rgba(13, 110, 253, 0.1); color: #0d6efd; }
.status-shipped { background-color: rgba(111, 66, 193, 0.1); color: #6f42c1; }
.status-delivered { background-color: rgba(1, 171, 49, 0.1); color: #01AB31; }
.status-cancelled { background-color: rgba(255, 51, 51, 0.1); color: #FF3333; }
.status-refunded { background-color: rgba(108, 117, 125, 0.1); color: #6c757d; }

.pay-paid, .pay-success { background-color: rgba(1, 171, 49, 0.1); color: #01AB31; }
.pay-unpaid, .pay-pending { background-color: rgba(255, 193, 7, 0.1); color: #d39e00; }
.pay-refunded { background-color: rgba(108, 117, 125, 0.1); color: #6c757d; }
.pay-failed { background-color: rgba(255, 51, 51, 0.1); color: #FF3333; }
