/**
 * ========================================
 * THEME-WIDE UI/UX ENHANCEMENTS
 * Default Theme - Complete Redesign
 * ========================================
 */

/* ========================================
   1. GLOBAL IMPROVEMENTS
   ======================================== */

:root {
    --primary-gradient: linear-gradient(
        135deg,
        var(--web-primary),
        var(--web-primary-dark, #0056b3)
    );
    --success-gradient: linear-gradient(135deg, #28a745, #20c997);
    --danger-gradient: linear-gradient(135deg, #ff6b6b, #ee5a6f);
    --warning-gradient: linear-gradient(135deg, #ffc107, #ff9800);
    --info-gradient: linear-gradient(135deg, #17a2b8, #138496);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 12px 32px rgba(0, 0, 0, 0.15);
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --border-radius-sm: 8px;
    --border-radius-md: 12px;
    --border-radius-lg: 16px;
    --border-radius-xl: 20px;
}

* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: "Amazon Ember", -apple-system, BlinkMacSystemFont, "Segoe UI",
        Roboto, "Helvetica Neue", Arial, sans-serif;
    color: #333;
    line-height: 1.6;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Selection Color */
::selection {
    background: var(--web-primary);
    color: white;
}

::-moz-selection {
    background: var(--web-primary);
    color: white;
}

/* ========================================
   2. BUTTONS - MODERN & PROMINENT
   ======================================== */

.btn {
    border-radius: var(--border-radius-md);
    font-weight: 600;
    padding: 12px 24px;
    transition: var(--transition-smooth);
    border: none;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: var(--primary-gradient);
    box-shadow: 0 4px 12px rgba(var(--web-primary-rgb, 0, 123, 255), 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(var(--web-primary-rgb, 0, 123, 255), 0.4);
}

.btn-success {
    background: var(--success-gradient);
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
}

.btn-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4);
}

.btn-danger {
    background: var(--danger-gradient);
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.3);
}

.btn-danger:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
}

.btn-warning {
    background: var(--warning-gradient);
    box-shadow: 0 4px 12px rgba(255, 193, 7, 0.3);
    color: #333;
}

.btn-warning:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 193, 7, 0.4);
}

.btn-outline-primary {
    border: 2px solid var(--web-primary);
    color: var(--web-primary);
    background: transparent;
}

.btn-outline-primary:hover {
    background: var(--web-primary);
    color: white;
    transform: translateY(-2px);
}

/* ========================================
   3. CARDS - ELEVATED & MODERN
   ======================================== */

.card {
    border: none;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    overflow: hidden;
}

.card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.card-header {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 20px;
    font-weight: 600;
}

.card-body {
    padding: 24px;
}

/* ========================================
   4. FORMS - CLEAN & MODERN
   ======================================== */

.form-control,
.form-select {
    border-radius: var(--border-radius-md);
    border: 2px solid #e0e0e0;
    padding: 12px 16px;
    transition: var(--transition-smooth);
    font-size: 15px;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--web-primary);
    box-shadow: 0 0 0 4px rgba(var(--web-primary-rgb, 0, 123, 255), 0.1);
    outline: none;
}

.form-label {
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
    font-size: 14px;
}

.input-group {
    border-radius: var(--border-radius-md);
    overflow: hidden;
}

.input-group .form-control {
    border-radius: 0;
}

.input-group .form-control:first-child {
    border-top-left-radius: var(--border-radius-md);
    border-bottom-left-radius: var(--border-radius-md);
}

.input-group .form-control:last-child {
    border-top-right-radius: var(--border-radius-md);
    border-bottom-right-radius: var(--border-radius-md);
}

/* ========================================
   5. BADGES & TAGS
   ======================================== */

.badge {
    border-radius: var(--border-radius-sm);
    padding: 6px 12px;
    font-weight: 600;
    font-size: 12px;
}

.badge-primary {
    background: var(--primary-gradient);
}

.badge-success {
    background: var(--success-gradient);
}

.badge-danger {
    background: var(--danger-gradient);
}

.badge-warning {
    background: var(--warning-gradient);
    color: #333;
}

/* ========================================
   6. ALERTS - MODERN & NOTICEABLE
   ======================================== */

.alert {
    border-radius: var(--border-radius-lg);
    border: none;
    padding: 16px 20px;
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.alert::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
}

.alert-success::before {
    background: #28a745;
}

.alert-danger::before {
    background: #dc3545;
}

.alert-warning::before {
    background: #ffc107;
}

.alert-info::before {
    background: #17a2b8;
}

/* ========================================
   7. MODALS - SMOOTH & ELEGANT
   ======================================== */

.modal-content {
    border-radius: var(--border-radius-xl);
    border: none;
    box-shadow: var(--shadow-xl);
}

.modal-header {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 24px;
    /* background: linear-gradient(135deg, #f8f9fa, #ffffff); */
}

.modal-body {
    padding: 24px;
}

.modal-footer {
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding: 20px 24px;
}

/* ========================================
   8. NAVIGATION & HEADER
   ======================================== */

.navbar {
    box-shadow: var(--shadow-sm);
    /* Transition disabled - header animation removed */
    /* transition: var(--transition-smooth); */
}

/* .navbar-sticky class disabled - header will not stick or hide */
/* .navbar-sticky {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: white;
} */

.nav-link {
    transition: var(--transition-smooth);
    font-weight: 500;
    position: relative;
}

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

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

/* ========================================
   9. BREADCRUMBS
   ======================================== */

.breadcrumb {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: var(--border-radius-lg);
    padding: 16px 24px;
    box-shadow: var(--shadow-sm);
}

.breadcrumb-item + .breadcrumb-item::before {
    content: "›";
    font-size: 18px;
    color: #999;
}

.breadcrumb-item.active {
    color: var(--web-primary);
    font-weight: 600;
}

/* ========================================
   10. PAGINATION
   ======================================== */

.pagination {
    gap: 8px;
}

.page-link {
    border-radius: var(--border-radius-sm);
    border: 2px solid #e0e0e0;
    color: #333;
    font-weight: 600;
    padding: 10px 16px;
    transition: var(--transition-smooth);
    margin: 0 4px;
}

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

.page-item.active .page-link {
    background: var(--primary-gradient);
    border-color: var(--web-primary);
    box-shadow: 0 4px 12px rgba(var(--web-primary-rgb, 0, 123, 255), 0.3);
}

/* ========================================
   11. TABLES
   ======================================== */

.table {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
}

.table thead th {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.5px;
    padding: 16px;
    border: none;
}

.table tbody tr {
    transition: var(--transition-smooth);
}

.table tbody tr:hover {
    background: #f8f9fa;
    transform: scale(1.01);
}

.table tbody td {
    padding: 16px;
    vertical-align: middle;
}

/* ========================================
   12. LOADING STATES
   ======================================== */

.skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite;
    border-radius: var(--border-radius-md);
}

@keyframes skeleton-loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

.spinner-border {
    border-width: 3px;
}

/* ========================================
   13. TOOLTIPS & POPOVERS
   ======================================== */

.tooltip-inner {
    background: #333;
    border-radius: var(--border-radius-sm);
    padding: 8px 12px;
    font-size: 13px;
    box-shadow: var(--shadow-md);
}

.popover {
    border-radius: var(--border-radius-lg);
    border: none;
    box-shadow: var(--shadow-lg);
}

.popover-header {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
    font-weight: 600;
}

/* ========================================
   14. DROPDOWNS
   ======================================== */

.dropdown-menu {
    border-radius: var(--border-radius-lg);
    border: none;
    box-shadow: var(--shadow-lg);
    padding: 8px;
    margin-top: 8px;
}

.dropdown-item {
    border-radius: var(--border-radius-sm);
    padding: 10px 16px;
    transition: var(--transition-smooth);
    font-weight: 500;
}

.dropdown-item:hover {
    background: var(--web-primary);
    color: white;
    transform: translateX(4px);
}

.dropdown-divider {
    margin: 8px 0;
    opacity: 0.1;
}

/* ========================================
   15. PROGRESS BARS
   ======================================== */

.progress {
    border-radius: var(--border-radius-lg);
    height: 12px;
    background: #e9ecef;
    overflow: hidden;
}

.progress-bar {
    background: var(--primary-gradient);
    transition: width 0.6s ease;
}

/* ========================================
   16. TABS
   ======================================== */

.nav-tabs {
    border-bottom: 2px solid #e0e0e0;
    gap: 8px;
}

.nav-tabs .nav-link {
    border: none;
    border-radius: var(--border-radius-md) var(--border-radius-md) 0 0;
    padding: 12px 24px;
    font-weight: 600;
    color: #666;
    transition: var(--transition-smooth);
}

.nav-tabs .nav-link:hover {
    background: #f8f9fa;
    color: var(--web-primary);
}

.nav-tabs .nav-link.active {
    background: white;
    color: var(--web-primary);
    border-bottom: 3px solid var(--web-primary);
}
/* ========================================
   17. CHECKOUT PROCESS
   ======================================== */

.checkout-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    position: relative;
}

.checkout-steps::before {
    content: "";
    position: absolute;
    top: 24px;
    left: 0;
    right: 0;
    height: 0;
    background: #e0e0e0;
    z-index: 0;
}

.checkout-step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 1;
}

.checkout-step-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: white;
    border: 3px solid #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    font-weight: 700;
    transition: var(--transition-smooth);
}

.checkout-step.active .checkout-step-circle {
    background: var(--primary-gradient);
    border-color: var(--web-primary);
    color: white;
    box-shadow: 0 4px 12px rgba(var(--web-primary-rgb, 0, 123, 255), 0.3);
}

.checkout-step.completed .checkout-step-circle {
    background: var(--success-gradient);
    border-color: #28a745;
    color: white;
}

/* ========================================
   18. USER PROFILE PAGES
   ======================================== */

.profile-sidebar {
    background: white;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    padding: 24px;
    position: sticky;
    top: 20px;
}

.profile-menu-item {
    padding: 12px 16px;
    border-radius: var(--border-radius-md);
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    gap: 12px;
    color: #666;
    font-weight: 500;
    margin-bottom: 8px;
}

.profile-menu-item:hover {
    background: #f8f9fa;
    color: var(--web-primary);
    transform: translateX(4px);
}

.profile-menu-item.active {
    background: var(--primary-gradient);
    color: white;
    box-shadow: 0 4px 12px rgba(var(--web-primary-rgb, 0, 123, 255), 0.2);
}

/* ========================================
   19. ORDER TRACKING
   ======================================== */

.order-timeline {
    position: relative;
    padding-left: 40px;
}

.order-timeline::before {
    content: "";
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #e0e0e0;
}

.order-timeline-item {
    position: relative;
    padding-bottom: 32px;
}

.order-timeline-dot {
    position: absolute;
    left: -32px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: white;
    border: 3px solid #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.order-timeline-item.completed .order-timeline-dot {
    background: var(--success-gradient);
    border-color: #28a745;
    color: white;
}

.order-timeline-item.active .order-timeline-dot {
    background: var(--primary-gradient);
    border-color: var(--web-primary);
    color: white;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(var(--web-primary-rgb, 0, 123, 255), 0.7);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(var(--web-primary-rgb, 0, 123, 255), 0);
    }
}

/* ========================================
   20. CART & WISHLIST
   ======================================== */

.cart-item,
.wishlist-item {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 20px;
    margin-bottom: 16px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

.cart-item:hover,
.wishlist-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.cart-item-image,
.wishlist-item-image {
    border-radius: var(--border-radius-md);
    overflow: hidden;
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #f8f9fa;
    border-radius: var(--border-radius-md);
    padding: 8px;
}

.quantity-btn {
    width: 32px;
    height: 32px;
    border-radius: var(--border-radius-sm);
    border: none;
    background: white;
    color: var(--web-primary);
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.quantity-btn:hover {
    background: var(--web-primary);
    color: white;
    transform: scale(1.1);
}

.quantity-input {
    width: 60px;
    text-align: center;
    border: none;
    background: transparent;
    font-weight: 600;
}
/* ========================================
   21. SEARCH BAR
   ======================================== */

.search-bar {
    position: relative;
}

.search-input {
    border-radius: var(--border-radius-lg);
    padding: 14px 50px 14px 20px;
    border: 2px solid #e0e0e0;
    transition: var(--transition-smooth);
    width: 100%;
}

.search-input:focus {
    border-color: var(--web-primary);
    box-shadow: 0 0 0 4px rgba(var(--web-primary-rgb, 0, 123, 255), 0.1);
}

.search-btn {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-gradient);
    border: none;
    border-radius: var(--border-radius-md);
    padding: 10px 20px;
    color: white;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.search-btn:hover {
    transform: translateY(-50%) scale(1.05);
}

/* ========================================
   22. FOOTER ENHANCEMENTS
   ======================================== */

.footer {
    background: transparent;
    color: white;
    padding: 60px 0 20px;
}

.footer-heading {
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 18px;
    position: relative;
    padding-bottom: 12px;
}

.footer-heading::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--web-primary);
}

.footer-link {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition-smooth);
    display: block;
    padding: 8px 0;
}

.footer-link:hover {
    color: white;
    transform: translateX(4px);
}

/* ========================================
   23. RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 992px) {
    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }

    .card-body {
        padding: 20px;
    }

    .modal-body {
        padding: 20px;
    }

    .checkout-steps {
        flex-direction: column;
        gap: 20px;
    }

    .checkout-steps::before {
        display: none;
    }

    .profile-sidebar {
        position: static;
        margin-bottom: 24px;
    }
}

@media (max-width: 768px) {
    :root {
        --border-radius-sm: 6px;
        --border-radius-md: 10px;
        --border-radius-lg: 14px;
        --border-radius-xl: 18px;
    }

    .btn {
        padding: 10px 16px;
        font-size: 13px;
    }

    .card-body {
        padding: 16px;
    }

    .modal-header,
    .modal-body,
    .modal-footer {
        padding: 16px;
    }

    .table thead th,
    .table tbody td {
        padding: 12px 8px;
        font-size: 13px;
    }

    .nav-tabs .nav-link {
        padding: 10px 16px;
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .btn {
        width: 100%;
        margin-bottom: 8px;
    }

    .pagination {
        flex-wrap: wrap;
        justify-content: center;
    }

    .page-link {
        padding: 8px 12px;
        font-size: 13px;
    }

    .cart-item,
    .wishlist-item {
        padding: 16px;
    }
}

/* ========================================
   24. ACCESSIBILITY IMPROVEMENTS
   ======================================== */

.focus-visible:focus {
    outline: 3px solid var(--web-primary);
    outline-offset: 2px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* ========================================
   25. UTILITY CLASSES
   ======================================== */

.text-gradient {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.shadow-hover {
    transition: var(--transition-smooth);
}

.shadow-hover:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

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

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

.slide-in-left {
    animation: slideInLeft 0.6s ease;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.slide-in-right {
    animation: slideInRight 0.6s ease;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
/* ========================================
   26. BACK TO TOP BUTTON
   ======================================== */

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-gradient);
    color: white;
    border: none;
    box-shadow: var(--shadow-lg);
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

@media (max-width: 768px) {
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
}

/* ========================================
   27. RIPPLE EFFECT
   ======================================== */

.btn {
    position: relative;
    overflow: hidden;
}

.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    transform: scale(0);
    animation: ripple-animation 0.6s ease-out;
    pointer-events: none;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* ========================================
   28. ENHANCED TOASTR NOTIFICATIONS
   ======================================== */

#toast-container > div {
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 20px;
    font-weight: 500;
}

#toast-container > .toast-success {
    background: var(--success-gradient);
}

#toast-container > .toast-error {
    background: var(--danger-gradient);
}

#toast-container > .toast-warning {
    background: var(--warning-gradient);
    color: #333;
}

#toast-container > .toast-info {
    background: var(--info-gradient);
}

/* ========================================
   29. PRODUCT DETAILS PAGE
   ======================================== */

.product-gallery {
    position: sticky;
    top: 100px;
}

.product-gallery-thumbs {
    display: flex;
    gap: 12px;
    margin-top: 16px;
    flex-wrap: wrap;
}

.product-gallery-thumb {
    width: 80px;
    height: 80px;
    border-radius: var(--border-radius-md);
    border: 2px solid #e0e0e0;
    cursor: pointer;
    transition: var(--transition-smooth);
    overflow: hidden;
}

.product-gallery-thumb:hover,
.product-gallery-thumb.active {
    border-color: var(--web-primary);
    transform: scale(1.05);
}

.product-info-section {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 24px;
    margin-bottom: 20px;
    box-shadow: var(--shadow-sm);
}

.product-price {
    font-size: 32px;
    font-weight: 700;
    color: var(--web-primary);
    margin: 16px 0;
}

.product-price-old {
    font-size: 24px;
    color: #999;
    text-decoration: line-through;
    margin-left: 12px;
}

.product-discount-badge {
    background: var(--danger-gradient);
    color: white;
    padding: 6px 12px;
    border-radius: var(--border-radius-sm);
    font-weight: 700;
    font-size: 14px;
    display: inline-block;
    margin-left: 12px;
}

/* ========================================
   30. REVIEWS & RATINGS
   ======================================== */

.review-card {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 20px;
    margin-bottom: 16px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

.review-card:hover {
    box-shadow: var(--shadow-md);
}

.review-rating {
    display: flex;
    gap: 4px;
    margin-bottom: 12px;
}

.review-star {
    color: #ffc107;
    font-size: 18px;
}

.review-star.empty {
    color: #e0e0e0;
}

.review-author {
    font-weight: 600;
    margin-bottom: 8px;
}

.review-date {
    color: #999;
    font-size: 13px;
}

.review-text {
    margin-top: 12px;
    line-height: 1.6;
}
