/* 
 * Royal Furniture - Main Stylesheet
 * Premium Luxury E-Commerce Website
 */

:root {
    /* Color System */
    --rf-primary: #B8860B; /* Dark Goldenrod */
    --rf-primary-light: #D4A843;
    --rf-primary-dark: #8B6914;
    --rf-dark: #1a1a2e;
    --rf-charcoal: #2d2d3f;
    --rf-text: #333333;
    --rf-text-light: #666666;
    --rf-text-muted: #999999;
    --rf-bg: #FAFAF8;
    --rf-bg-cream: #F5F0EB;
    --rf-bg-warm: #FDF8F3;
    --rf-white: #FFFFFF;
    --rf-border: #E8E3DD;
    --rf-border-light: #F0ECE6;
    --rf-success: #28a745;
    --rf-danger: #dc3545;
    --rf-warning: #ffc107;
    
    /* Shadows & Effects */
    --rf-shadow: 0 2px 15px rgba(0,0,0,0.06);
    --rf-shadow-lg: 0 10px 40px rgba(0,0,0,0.1);
    --rf-shadow-hover: 0 15px 35px rgba(0,0,0,0.1);
    --rf-radius: 12px;
    --rf-radius-lg: 20px;
    --rf-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Typography */
    --rf-font-heading: 'Playfair Display', serif;
    --rf-font-body: 'Inter', sans-serif;
}

/* ==========================================================================
   Base Styles
   ========================================================================== */
body {
    font-family: var(--rf-font-body);
    color: var(--rf-text);
    background-color: var(--rf-bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6, .display-1, .display-2, .display-3, .display-4, .display-5, .display-6 {
    font-family: var(--rf-font-heading);
    color: var(--rf-dark);
    font-weight: 600;
}

a {
    color: var(--rf-primary);
    text-decoration: none;
    transition: var(--rf-transition);
}

a:hover {
    color: var(--rf-primary-dark);
}

/* ==========================================================================
   Typography Utilities
   ========================================================================== */
.text-primary { color: var(--rf-primary) !important; }
.text-dark { color: var(--rf-dark) !important; }
.text-muted { color: var(--rf-text-muted) !important; }
.bg-primary { background-color: var(--rf-primary) !important; }
.bg-dark { background-color: var(--rf-dark) !important; }
.bg-cream { background-color: var(--rf-bg-cream) !important; }
.bg-warm { background-color: var(--rf-bg-warm) !important; }

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn-royal {
    background: linear-gradient(135deg, var(--rf-primary-light), var(--rf-primary));
    color: var(--rf-white);
    border: none;
    border-radius: var(--rf-radius);
    padding: 12px 28px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: var(--rf-transition);
    box-shadow: 0 4px 15px rgba(184, 134, 11, 0.2);
}

.btn-royal:hover, .btn-royal:focus {
    background: linear-gradient(135deg, var(--rf-primary), var(--rf-primary-dark));
    color: var(--rf-white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(184, 134, 11, 0.3);
}

.btn-royal-outline {
    background: transparent;
    color: var(--rf-primary);
    border: 1px solid var(--rf-primary);
    border-radius: var(--rf-radius);
    padding: 11px 27px;
    font-weight: 500;
    transition: var(--rf-transition);
}

.btn-royal-outline:hover {
    background: var(--rf-primary);
    color: var(--rf-white);
}

.btn-royal-dark {
    background: var(--rf-dark);
    color: var(--rf-white);
    border: none;
    border-radius: var(--rf-radius);
    padding: 12px 28px;
    font-weight: 500;
    transition: var(--rf-transition);
}

.btn-royal-dark:hover {
    background: var(--rf-charcoal);
    color: var(--rf-white);
    transform: translateY(-2px);
    box-shadow: var(--rf-shadow);
}

/* ==========================================================================
   Navbar
   ========================================================================== */
.navbar-royal {
    background-color: var(--rf-white);
    box-shadow: var(--rf-shadow);
    padding: 8px 0;
    transition: var(--rf-transition);
}

.navbar-royal.scrolled {
    padding: 5px 0;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
}

.navbar-brand {
    font-family: var(--rf-font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--rf-dark);
    display: flex;
    align-items: center;
    gap: 10px;
}

.site-logo {
    max-height: 45px;
    width: auto;
    object-fit: contain;
}

.nav-link {
    color: var(--rf-text);
    font-weight: 500;
    padding: 10px 15px !important;
    position: relative;
}

.nav-link:hover, .nav-link.active {
    color: var(--rf-primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: var(--rf-primary);
    transition: var(--rf-transition);
    transform: translateX(-50%);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 80%;
}

.nav-icon {
    color: var(--rf-dark);
    font-size: 1.2rem;
    position: relative;
    padding: 10px;
    transition: var(--rf-transition);
}

.nav-icon:hover {
    color: var(--rf-primary);
}

.nav-badge {
    position: absolute;
    top: 0;
    right: 0;
    background-color: var(--rf-primary);
    color: var(--rf-white);
    font-size: 0.7rem;
    padding: 2px 6px;
    border-radius: 50%;
    font-weight: bold;
}

/* Search Dropdown */
.search-dropdown {
    width: 300px;
    padding: 15px;
    border-radius: var(--rf-radius);
    border: none;
    box-shadow: var(--rf-shadow-lg);
}

.search-input-wrap {
    position: relative;
}

.search-input-wrap input {
    border-radius: 50px;
    padding-right: 40px;
}

.search-input-wrap .search-btn {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--rf-primary);
}

#search-results-dropdown {
    max-height: 400px;
    overflow-y: auto;
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--rf-white);
    border-radius: var(--rf-radius);
    box-shadow: var(--rf-shadow-lg);
    margin-top: 5px;
}

.search-result-item {
    display: flex;
    align-items: center;
    padding: 10px;
    border-bottom: 1px solid var(--rf-border-light);
    color: var(--rf-text);
    text-decoration: none;
}
.search-result-item:hover {
    background-color: var(--rf-bg-cream);
}
.search-result-img {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    object-fit: cover;
    margin-right: 15px;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
    min-height: 85vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    color: var(--rf-white);
    text-align: left;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../../uploads/hero_bg.png?v=3') center/cover no-repeat;
    z-index: 1;
    transform-origin: center center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.6) 0%, rgba(26,26,46,0.3) 100%);
    z-index: 2;
}

.hero-content {
    max-width: 900px;
    margin: 0;
    padding: 0 40px;
    z-index: 3;
    position: relative;
}

.hero-title {
    font-size: 5rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--rf-white);
    text-shadow: 0 4px 12px rgba(0,0,0,0.3);
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 300;
    margin-bottom: 40px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

/* ==========================================================================
   Section Headings
   ========================================================================== */
.section-title {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: var(--rf-primary);
    margin: 0 auto;
    border-radius: 2px;
}

/* ==========================================================================
   Cards (Products & Categories)
   ========================================================================== */
.category-card {
    border-radius: var(--rf-radius);
    overflow: hidden;
    position: relative;
    display: block;
    box-shadow: var(--rf-shadow);
    transition: var(--rf-transition);
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--rf-shadow-hover);
}

.category-img-wrap {
    height: 250px;
    overflow: hidden;
}

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

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

.category-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    color: var(--rf-white);
}

.category-title {
    font-family: var(--rf-font-heading);
    font-size: 1.5rem;
    margin: 0;
    color: var(--rf-white);
}

.category-count {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Product Card */
.product-card {
    background: var(--rf-white);
    border-radius: var(--rf-radius);
    border: 1px solid var(--rf-border-light);
    overflow: hidden;
    transition: var(--rf-transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.product-card:hover {
    box-shadow: var(--rf-shadow-hover);
    transform: translateY(-5px);
}

.product-img-wrap {
    position: relative;
    padding-top: 100%; /* 1:1 Aspect Ratio */
    overflow: hidden;
    background-color: var(--rf-bg-cream);
}

.product-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    z-index: 2;
}

.badge-discount {
    background-color: var(--rf-danger);
    color: white;
}

.badge-new {
    background-color: var(--rf-primary);
    color: white;
}

.product-actions {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 2;
}

.action-btn {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: var(--rf-white);
    color: var(--rf-text);
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    box-shadow: var(--rf-shadow);
    transition: var(--rf-transition);
    opacity: 0;
    transform: translateX(20px);
}

.product-card:hover .action-btn {
    opacity: 1;
    transform: translateX(0);
}

.action-btn:hover {
    background: var(--rf-primary);
    color: var(--rf-white);
}

.action-btn.active {
    color: var(--rf-danger);
}

.product-info {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-category {
    font-size: 0.8rem;
    color: var(--rf-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.product-title {
    font-family: var(--rf-font-heading);
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.product-title a {
    color: var(--rf-dark);
}

.product-title a:hover {
    color: var(--rf-primary);
}

.product-rating {
    font-size: 0.8rem;
    margin-bottom: 10px;
}

.product-price {
    font-weight: 600;
    font-size: 1.2rem;
    color: var(--rf-primary-dark);
    margin-bottom: 15px;
    margin-top: auto;
}

.price-old {
    text-decoration: line-through;
    color: var(--rf-text-muted);
    font-size: 0.9rem;
    margin-right: 5px;
}

.btn-add-cart {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--rf-border);
    background: var(--rf-white);
    color: var(--rf-dark);
    font-weight: 500;
    border-radius: var(--rf-radius);
    transition: var(--rf-transition);
}

.btn-add-cart:hover {
    background: var(--rf-primary);
    color: var(--rf-white);
    border-color: var(--rf-primary);
}

/* ==========================================================================
   Product Detail Page
   ========================================================================== */
.gallery-main {
    border-radius: var(--rf-radius);
    overflow: hidden;
    margin-bottom: 15px;
    background-color: var(--rf-bg-cream);
    position: relative;
}

.gallery-main img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.gallery-thumbs {
    display: flex;
    gap: 10px;
    overflow-x: auto;
}

.thumb-item {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--rf-transition);
    background-color: var(--rf-bg-cream);
}

.thumb-item.active {
    border-color: var(--rf-primary);
}

.thumb-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
}

.product-detail-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.product-detail-price {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--rf-primary);
    margin-bottom: 20px;
}

.stock-status {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 20px;
}

.stock-in { background-color: rgba(40, 167, 69, 0.1); color: var(--rf-success); }
.stock-low { background-color: rgba(255, 193, 7, 0.1); color: var(--rf-warning); }
.stock-out { background-color: rgba(220, 53, 69, 0.1); color: var(--rf-danger); }

.quantity-selector {
    display: flex;
    align-items: center;
    border: 1px solid var(--rf-border);
    border-radius: var(--rf-radius);
    width: fit-content;
}

.quantity-btn {
    background: none;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    color: var(--rf-text);
}

.quantity-input {
    width: 50px;
    text-align: center;
    border: none;
    font-weight: 600;
    -moz-appearance: textfield;
}

.quantity-input::-webkit-outer-spin-button,
.quantity-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.product-meta {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--rf-border-light);
}

.product-meta-item {
    margin-bottom: 10px;
}

.product-meta-label {
    font-weight: 600;
    margin-right: 10px;
    color: var(--rf-dark);
}

/* Tabs */
.nav-tabs-custom {
    border-bottom: 2px solid var(--rf-border-light);
}

.nav-tabs-custom .nav-link {
    border: none;
    background: transparent;
    color: var(--rf-text-muted);
    font-weight: 600;
    padding: 15px 25px;
    position: relative;
    margin-bottom: -2px;
}

.nav-tabs-custom .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(135deg, var(--rf-primary-light), var(--rf-primary));
    transition: var(--rf-transition);
    transform: translateX(-50%);
    border-radius: 3px 3px 0 0;
}

.nav-tabs-custom .nav-link.active {
    color: var(--rf-dark);
}

.nav-tabs-custom .nav-link:hover::after {
    width: calc(100% - 50px);
    opacity: 0.5;
}

.nav-tabs-custom .nav-link.active::after {
    width: calc(100% - 50px);
}

/* ==========================================================================
   Cart & Checkout
   ========================================================================== */
.cart-table th {
    font-weight: 600;
    color: var(--rf-dark);
    border-bottom-width: 2px;
}

.cart-table td {
    vertical-align: middle;
}

.cart-item-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    background-color: var(--rf-bg-cream);
}

.order-summary {
    background-color: var(--rf-bg-cream);
    padding: 30px;
    border-radius: var(--rf-radius);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.summary-total {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--rf-dark);
    border-top: 2px solid var(--rf-border);
    padding-top: 15px;
    margin-top: 15px;
}

/* Payment Methods */
.payment-method-card {
    border: 1px solid var(--rf-border);
    border-radius: var(--rf-radius);
    padding: 15px;
    margin-bottom: 15px;
    cursor: pointer;
    transition: var(--rf-transition);
}

.payment-method-card.selected {
    border-color: var(--rf-primary);
    background-color: rgba(184, 134, 11, 0.05);
}

.payment-details {
    display: none;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px dashed var(--rf-border);
}

/* ==========================================================================
   User Dashboard
   ========================================================================== */
.dashboard-sidebar {
    background: var(--rf-white);
    border-radius: var(--rf-radius);
    padding: 20px 0;
    box-shadow: var(--rf-shadow);
}

.dashboard-nav .nav-link {
    padding: 12px 25px;
    color: var(--rf-text);
    border-left: 3px solid transparent;
}

.dashboard-nav .nav-link:hover, .dashboard-nav .nav-link.active {
    color: var(--rf-primary);
    background-color: rgba(184, 134, 11, 0.05);
    border-left-color: var(--rf-primary);
}

.dashboard-nav .nav-link::after {
    display: none;
}

.dashboard-nav .nav-link i {
    width: 25px;
}

.stat-card {
    background: var(--rf-white);
    padding: 25px;
    border-radius: var(--rf-radius);
    box-shadow: var(--rf-shadow);
    display: flex;
    align-items: center;
}

.stat-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: rgba(184, 134, 11, 0.1);
    color: var(--rf-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-right: 20px;
}

.stat-details h3 {
    margin: 0;
    font-size: 1.8rem;
}

.stat-details p {
    margin: 0;
    color: var(--rf-text-muted);
}

/* Order Progress Bar */
.order-progress {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin: 40px 0;
}

.order-progress::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: var(--rf-border);
    z-index: 1;
}

.progress-step {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 120px;
}

.step-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background-color: var(--rf-border);
    color: var(--rf-white);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    font-size: 0.9rem;
    transition: var(--rf-transition);
}

.progress-step.active .step-icon, .progress-step.completed .step-icon {
    background-color: var(--rf-primary);
}

.step-label {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--rf-text-muted);
}

.progress-step.active .step-label, .progress-step.completed .step-label {
    color: var(--rf-dark);
}

/* Status Badges */
.badge {
    padding: 5px 10px;
    font-weight: 500;
    border-radius: 20px;
}

/* ==========================================================================
   Forms & Inputs
   ========================================================================== */
.form-control, .form-select {
    padding: 12px 15px;
    border-radius: var(--rf-radius);
    border: 1px solid var(--rf-border);
}

.form-control:focus, .form-select:focus {
    border-color: var(--rf-primary);
    box-shadow: 0 0 0 0.25rem rgba(184, 134, 11, 0.25);
}

.form-floating > label {
    padding: 12px 15px;
}

/* Sidebar Filters */
.filter-section {
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--rf-border-light);
}

.filter-title {
    font-size: 1.1rem;
    margin-bottom: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.color-swatch {
    display: inline-block;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    margin-right: 5px;
    margin-bottom: 5px;
    cursor: pointer;
    border: 2px solid transparent;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.color-swatch.active {
    border-color: var(--rf-primary);
    transform: scale(1.1);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
    background-color: var(--rf-dark);
    color: var(--rf-border);
    padding-top: 70px;
}

.footer-title {
    color: var(--rf-white);
    font-family: var(--rf-font-heading);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: var(--rf-primary);
}

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

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: var(--rf-text-muted);
}

.footer-links a:hover {
    color: var(--rf-primary);
    padding-left: 5px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--rf-white);
    margin-right: 10px;
    transition: var(--rf-transition);
}

.social-links a:hover {
    background-color: var(--rf-primary);
    transform: translateY(-3px);
}

.footer-bottom {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 20px 0;
    margin-top: 50px;
    text-align: center;
}

/* ==========================================================================
   Misc & Utilities
   ========================================================================== */
#back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--rf-primary);
    color: var(--rf-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: var(--rf-shadow-lg);
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--rf-transition);
    border: none;
}

#back-to-top.show {
    opacity: 1;
    visibility: visible;
}

#back-to-top:hover {
    background-color: var(--rf-primary-dark);
    transform: translateY(-5px);
}

/* Toast Notifications */
.toast-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1060;
}

/* Testimonial Slider */
.testimonial-card {
    background: var(--rf-white);
    padding: 30px;
    border-radius: var(--rf-radius);
    box-shadow: var(--rf-shadow);
    text-align: center;
    margin: 15px;
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 20px;
    object-fit: cover;
}

.quote-icon {
    color: rgba(184, 134, 11, 0.2);
    font-size: 3rem;
    margin-bottom: 15px;
}

/* Offers Banner */
.offers-banner {
    background: linear-gradient(135deg, var(--rf-charcoal), var(--rf-dark));
    color: var(--rf-white);
    padding: 60px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Breadcrumbs */
.breadcrumb {
    padding: 15px 0;
    margin: 0;
    background: transparent;
}
.breadcrumb-item a {
    color: var(--rf-text-muted);
}
.breadcrumb-item.active {
    color: var(--rf-dark);
}

/* Pagination */
.pagination .page-link {
    color: var(--rf-dark);
    border-color: var(--rf-border);
    padding: 10px 15px;
}
.pagination .page-item.active .page-link {
    background-color: var(--rf-primary);
    border-color: var(--rf-primary);
    color: var(--rf-white);
}

/* CSS gradient placeholders for images (since actual images don't exist) */
.css-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--rf-bg-cream) 0%, #e8e0d5 100%);
    color: var(--rf-primary-light);
    font-size: 3rem;
    width: 100%;
    height: 100%;
}
.css-placeholder.dark {
    background: linear-gradient(135deg, var(--rf-charcoal) 0%, var(--rf-dark) 100%);
}

