/* Global Styles */
:root {
    --primary-color: #4f46e5;
    --secondary-color: #10b981;
    --warning-color: #f59e0b;
    --danger-color: #ef4444;
    --dark-color: #1f2937;
    --light-color: #f3f4f6;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: #374151;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* Responsive Images */
img {
    max-width: 100%;
    height: auto;
}

/* Prevent horizontal scroll */
html {
    overflow-x: hidden;
}

/* Touch-friendly targets for mobile */
@media (max-width: 768px) {
    a, button, .btn, input[type="submit"] {
        min-height: 44px;
        min-width: 44px;
    }
}

/* -------------------------------------------------- */
/* Header Enhancements                                */
/* -------------------------------------------------- */

.promo-bar {
    background: linear-gradient(90deg, #4f46e5, #7c3aed);
    font-weight: 500;
    letter-spacing: 0.3px;
}

.promo-bar .divider {
    width: 1px;
    height: 14px;
    background-color: rgba(255, 255, 255, 0.4);
}

.utility-bar {
    background-color: #f8fafc;
    border-bottom: 1px solid #e5e7eb;
}

.utility-bar .social-links a {
    color: #6b7280;
    margin-right: 12px;
    font-size: 0.95rem;
    transition: color 0.2s ease, transform 0.2s ease;
}

.utility-bar .social-links a:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
}

.auth-links a {
    color: #4b5563;
    font-size: 0.9rem;
    font-weight: 600;
}

.main-header {
    background-color: #fff;
    position: sticky;
    top: 0;
    z-index: 1020;
}

.logo-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(79,70,229,0.1);
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.site-logo {
    height: 50px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

.footer-logo {
    height: 60px;
    width: auto;
    max-width: 220px;
    object-fit: contain;
}

.header-search .input-group {
    border: 1px solid #e5e7eb;
    border-radius: 999px;
    overflow: hidden;
    background: #fff;
}

.header-search .form-control {
    border: none;
    box-shadow: none;
}

.header-search .input-group-text {
    border: none;
}

.header-actions .action-btn,
.header-actions .cart-btn,
.header-actions .profile-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: #f3f4f6;
    padding: 0.65rem 0.95rem;
    border-radius: 12px;
    text-decoration: none;
    color: #374151;
    font-size: 0.8rem;
    font-weight: 600;
    transition: all 0.2s ease;
}

.header-actions .action-btn i,
.header-actions .profile-btn i {
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.header-actions .action-btn:hover,
.header-actions .cart-btn:hover,
.header-actions .profile-btn:hover {
    background: rgba(79, 70, 229, 0.1);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.header-actions .cart-btn {
    padding: 0.5rem 0.85rem;
    flex-direction: row;
    gap: 0.65rem;
}

.header-actions .cart-btn .icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--primary-color);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-actions .cart-btn .cart-info {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.header-actions .cart-btn strong {
    font-size: 0.95rem;
    color: #111827;
}

.advanced-nav {
    background: #fff;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
}

.advanced-nav .nav-link {
    font-weight: 600;
    padding: 0.85rem 1.25rem;
    color: #4b5563;
}

.advanced-nav .nav-link.active,
.advanced-nav .nav-link:hover {
    color: var(--primary-color);
}

.category-dropdown .btn {
    border-radius: 12px;
    font-weight: 600;
    padding: 0.65rem 1.2rem;
    border: 1px solid #e5e7eb;
    background: #fff;
}

.secondary-links a {
    color: #6b7280;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
}

.secondary-links a:hover {
    color: var(--primary-color);
}

/* Top Bar */
.top-bar {
    font-size: 0.875rem;
}

.top-bar a:hover {
    opacity: 0.8;
}

/* Navigation */
.navbar {
    transition: all 0.3s ease;
}

.navbar-brand {
    font-size: 1.5rem;
}

.nav-link {
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 0.5rem 1rem !important;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

/* Hero Section */
.hero-slide {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.bg-gradient-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
}

.bg-gradient-success {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%) !important;
}

.bg-gradient-warning {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%) !important;
}

.min-vh-50 {
    min-height: 50vh;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    padding: 20px;
}

/* Feature Cards */
.feature-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
}

.feature-icon {
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

/* Product Cards */
.product-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
}

.product-image {
    overflow: hidden;
    height: 250px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.price-section {
    display: flex;
    align-items: center;
}

/* Testimonial Cards */
.testimonial-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
}

/* Buttons */
.btn {
    font-weight: 500;
    padding: 0.5rem 1.5rem;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: #4338ca;
    border-color: #4338ca;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(79, 70, 229, 0.3);
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

/* Forms */
.form-control {
    border-radius: 0.5rem;
    padding: 0.75rem 1rem;
    border: 1px solid #d1d5db;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(79, 70, 229, 0.25);
}

/* Cards */
.card {
    border-radius: 0.75rem;
    transition: all 0.3s ease;
}

/* Badges */
.badge {
    font-weight: 500;
    padding: 0.5rem 0.75rem;
}

/* Footer */
footer {
    margin-top: auto;
}

footer a {
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--primary-color) !important;
}

.footer-area {
    background: linear-gradient(135deg, #0f172a, #1f2937);
    position: relative;
    overflow: hidden;
}

.footer-area::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top, rgba(79,70,229,0.2), transparent 55%);
    pointer-events: none;
}

.footer-area .container,
.footer-area .footer-middle,
.footer-area .footer-bottom {
    position: relative;
    z-index: 2;
}

.footer-links a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 8px;
    transition: color 0.2s ease, transform 0.2s ease;
}

.footer-links a::before {
    content: '\f105';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.75rem;
    opacity: 0;
    transform: translateX(-4px);
    transition: all 0.2s ease;
}

.footer-links a:hover {
    color: #fff;
    transform: translateX(4px);
}

.footer-links a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.social-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.2s ease;
}

.social-icon:hover {
    background: #fff;
    color: var(--primary-color);
    transform: translateY(-3px);
}

.newsletter-form .input-group {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.2);
    background: rgba(15,23,42,0.6);
}

.newsletter-form .form-control,
.newsletter-form .input-group-text {
    background: transparent;
    border: none;
    color: #fff;
}

.newsletter-form .form-control::placeholder {
    color: rgba(255,255,255,0.5);
}

.btn-gradient {
    background: linear-gradient(90deg, #6366f1, #a855f7);
    border: none;
    color: #fff;
    font-weight: 600;
    border-radius: 0 12px 12px 0;
}

.trust-badges .badge-item {
    background: rgba(255,255,255,0.1);
    padding: 0.4rem 0.85rem;
    border-radius: 999px;
    font-size: 0.85rem;
}

.info-card {
    background: rgba(15,23,42,0.7);
    padding: 1rem 1.25rem;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.1);
}

.info-card .icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(99,102,241,0.2);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

/* -------------------------------------------------- */
/* Shri Ram ID Card Page                              */
/* -------------------------------------------------- */

.id-hero {
    background: linear-gradient(135deg, #4338ca, #312e81);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.id-hero::after {
    content: '';
    position: absolute;
    right: -80px;
    bottom: -80px;
    width: 220px;
    height: 220px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
}

.badge.bg-gradient {
    background: linear-gradient(90deg, #fbbf24, #f97316);
}

.feature-chip {
    background: rgba(255,255,255,0.12);
    padding: 0.4rem 1rem;
    border-radius: 999px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    letter-spacing: 0.3px;
}

.id-search-card {
    background: #fff;
    border-radius: 20px;
    padding: 1.75rem;
    border: 1px solid #e5e7eb;
}

.icon-circle {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: rgba(79,70,229,0.1);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.id-search-form .input-group {
    border-radius: 14px;
    border: 1px solid #e5e7eb;
    overflow: hidden;
}

.id-search-form .input-group-text {
    background: #fff;
    border: none;
    color: #6b7280;
}

.btn-gradient {
    background: linear-gradient(90deg, #4f46e5, #9333ea);
    border: none;
    color: #fff;
    font-weight: 600;
}

.elegant-id-card {
    background: #fff;
    border-radius: 24px;
    padding: 2.5rem;
    border: 1px solid rgba(15,23,42,0.08);
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.08);
}

.badge-icon {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    background: rgba(79,70,229,0.1);
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
}

.advanced-id-photo {
    width: 180px;
    height: 220px;
    border-radius: 24px;
    object-fit: cover;
    border: 6px solid rgba(79,70,229,0.15);
    box-shadow: 0 15px 30px rgba(15,23,42,0.12);
    background: #fff;
}

.advanced-id-photo.placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c7d2fe;
    font-size: 2rem;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.2rem;
}

.info-grid .label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: #9ca3af;
    margin-bottom: 0.3rem;
    font-weight: 600;
}

.info-grid .full-span {
    grid-column: span 2;
}

.status-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.status-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 999px;
    font-weight: 600;
}

.status-pill .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: currentColor;
}

.status-success {
    background: rgba(34,197,94,0.15);
    color: #15803d;
}

.status-warning {
    background: rgba(251,191,36,0.2);
    color: #b45309;
}

.timeline {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.timeline-item {
    position: relative;
    padding-left: 1.5rem;
    border-left: 2px dashed #e5e7eb;
}

.timeline-item.active {
    border-color: var(--primary-color);
}

.timeline-dot {
    position: absolute;
    left: -13px;
    top: 0;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
}

.timeline-item.active .timeline-dot {
    border-color: var(--primary-color);
    background: var(--primary-color);
    color: #fff;
}

.qr-placeholder {
    border: 1px dashed #d1d5db;
    padding: 0.75rem;
    border-radius: 16px;
    color: #6b7280;
}

.id-support {
    background: #f8fafc;
}

.support-card {
    background: #fff;
    border-radius: 18px;
    padding: 1.5rem;
    border: 1px solid #e2e8f0;
    box-shadow: 0 12px 25px rgba(15,23,42,0.05);
}

.support-card i {
    font-size: 1.75rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.id-actions h4 {
    font-weight: 700;
}

.feature-chip i,
.support-card i,
.icon-circle i {
    color: inherit;
}

.id-hero .text-white-75 {
    color: rgba(255,255,255,0.8) !important;
}

.id-search-form .form-control:focus {
    border-color: transparent;
    box-shadow: none;
}

.id-search-form .form-control {
    border: none;
    box-shadow: none;
}

.social-links a {
    transition: transform 0.3s ease;
    display: inline-block;
}

.social-links a:hover {
    transform: translateY(-3px);
}

/* Search Section */
.search-section {
    border-bottom: 1px solid #e5e7eb;
}

/* Back to Top Button */
#backToTop {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

#backToTop:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease;
}

/* Responsive */
/* Mobile Devices (Portrait) - up to 576px */
@media (max-width: 576px) {
    /* Typography */
    .display-3 {
        font-size: 1.75rem !important;
    }
    
    .display-4 {
        font-size: 1.5rem !important;
    }
    
    .lead {
        font-size: 0.95rem !important;
    }
    
    h1 {
        font-size: 1.75rem !important;
    }
    
    h2 {
        font-size: 1.5rem !important;
    }
    
    h3 {
        font-size: 1.25rem !important;
    }
    
    /* Header */
    .promo-bar {
        font-size: 0.75rem;
        padding: 0.5rem 0 !important;
    }
    
    .promo-bar span {
        font-size: 0.7rem;
    }
    
    .utility-bar {
        padding: 0.5rem 0 !important;
    }
    
    .utility-bar .col-lg-4,
    .utility-bar .col-md-6 {
        text-align: center !important;
    }
    
    .utility-bar small {
        font-size: 0.75rem;
    }
    
    .site-logo {
        height: 35px;
        max-width: 150px;
    }
    
    .header-main {
        padding: 0.75rem 0 !important;
    }
    
    .header-actions {
        gap: 0.5rem !important;
    }
    
    .header-actions .action-btn,
    .header-actions .profile-btn {
        padding: 0.5rem;
        font-size: 0.7rem;
    }
    
    .header-actions .action-btn i,
    .header-actions .profile-btn i {
        font-size: 1rem;
        margin-bottom: 2px;
    }
    
    .header-actions .action-btn span {
        display: none;
    }
    
    .header-actions .cart-btn {
        padding: 0.4rem 0.6rem;
        gap: 0.4rem;
    }
    
    .header-actions .cart-btn .icon {
        width: 36px;
        height: 36px;
    }
    
    .header-actions .cart-btn .cart-info {
        display: none;
    }
    
    .navbar-toggler {
        padding: 0.4rem 0.6rem;
        font-size: 1rem;
        border: 1px solid #e5e7eb;
        background: #f3f4f6;
    }
    
    .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2879, 70, 229, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    }
    
    /* Navigation */
    .advanced-nav {
        padding: 0.5rem 0;
    }
    
    .advanced-nav .nav-link {
        padding: 0.6rem 1rem !important;
        font-size: 0.9rem;
    }
    
    .category-dropdown .btn {
        padding: 0.5rem 0.8rem;
        font-size: 0.85rem;
    }
    
    .secondary-links {
        margin-top: 1rem;
        flex-direction: column !important;
        align-items: flex-start !important;
    }
    
    .secondary-links a {
        padding: 0.5rem 0;
    }
    
    /* Hero Section */
    .hero-slide {
        padding: 30px 0 !important;
    }
    
    /* Product Cards */
    .product-card {
        margin-bottom: 1rem;
    }
    
    .product-image {
        height: 180px;
    }
    
    /* Buttons */
    .btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    
    .btn-lg {
        padding: 0.6rem 1.2rem;
        font-size: 1rem;
    }
    
    /* Forms */
    .form-control {
        padding: 0.6rem 0.8rem;
        font-size: 0.9rem;
    }
    
    /* Cards */
    .card {
        margin-bottom: 1rem;
    }
    
    .card-body {
        padding: 1rem;
    }
    
    /* Footer */
    .footer-logo {
        height: 45px;
        max-width: 180px;
    }
    
    .footer-area {
        padding: 2rem 0 !important;
    }
    
    .footer-area h5 {
        font-size: 1rem;
        margin-top: 1.5rem;
    }
    
    .footer-links {
        font-size: 0.85rem;
    }
    
    .social-icon {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }
    
    /* ID Card */
    .elegant-id-card {
        padding: 1.5rem;
    }
    
    .advanced-id-photo {
        width: 120px;
        height: 150px;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    .info-grid .full-span {
        grid-column: span 1;
    }
    
    .badge-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    /* Cart */
    .cart-item {
        padding: 1rem 0;
    }
    
    .quantity-input {
        width: 60px;
    }
    
    /* Order Summary */
    .order-summary {
        padding: 1rem;
        margin-top: 1.5rem;
    }
    
    /* Profile */
    .profile-sidebar {
        margin-bottom: 1.5rem;
    }
    
    /* Spacing */
    .py-5 {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }
    
    .my-5 {
        margin-top: 2rem !important;
        margin-bottom: 2rem !important;
    }
    
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

/* Tablets (Portrait) - 577px to 768px */
@media (min-width: 577px) and (max-width: 768px) {
    .hero-slide {
        padding: 40px 0;
    }
    
    .display-3 {
        font-size: 2rem;
    }
    
    .lead {
        font-size: 1rem;
    }
    
    .product-image {
        height: 200px;
    }
    
    .site-logo {
        height: 40px;
    }
    
    .header-actions .cart-btn .cart-info {
        font-size: 0.8rem;
    }
    
    .advanced-id-photo {
        width: 150px;
        height: 180px;
    }
}

/* Tablets (Landscape) - 769px to 991px */
@media (min-width: 769px) and (max-width: 991px) {
    .hero-slide {
        padding: 50px 0;
    }
    
    .display-3 {
        font-size: 2.5rem;
    }
    
    .product-image {
        height: 220px;
    }
    
    .site-logo {
        height: 45px;
    }
}

/* Small Laptops - 992px to 1199px */
@media (min-width: 992px) and (max-width: 1199px) {
    .container {
        max-width: 960px;
    }
    
    .product-image {
        height: 240px;
    }
}

/* Large Screens - 1200px and above */
@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
    
    .product-image {
        height: 250px;
    }
}

/* Extra Large Screens - 1400px and above */
@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
}

/* Cart Page */
.cart-item {
    border-bottom: 1px solid #e5e7eb;
    padding: 1.5rem 0;
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item h6 a {
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.quantity-input {
    width: 80px;
    text-align: center;
}

/* Checkout Page */
.order-summary {
    background-color: #f9fafb;
    border-radius: 0.75rem;
    padding: 1.5rem;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.75rem;
}

/* Profile Page */
.profile-sidebar {
    background-color: #fff;
    border-radius: 0.75rem;
    padding: 1.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.profile-menu {
    list-style: none;
    padding: 0;
}

.profile-menu li {
    margin-bottom: 0.5rem;
}

.profile-menu a {
    display: block;
    padding: 0.75rem 1rem;
    color: #374151;
    text-decoration: none;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.profile-menu a:hover,
.profile-menu a.active {
    background-color: var(--primary-color);
    color: #fff;
}

/* Order Status */
.order-status {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 0.25rem;
    font-size: 0.875rem;
    font-weight: 500;
}

.status-processing {
    background-color: #fef3c7;
    color: #92400e;
}

.status-shipped {
    background-color: #dbeafe;
    color: #1e40af;
}

.status-delivered {
    background-color: #d1fae5;
    color: #065f46;
}

.status-cancelled {
    background-color: #fee2e2;
    color: #991b1b;
}

/* Rating Stars */
.rating {
    display: flex;
    gap: 0.25rem;
}

.rating i {
    font-size: 1rem;
}

/* Loading Spinner */
.spinner-border-sm {
    width: 1rem;
    height: 1rem;
    border-width: 0.15rem;
}

/* Alert */
.alert {
    border-radius: 0.5rem;
    border: none;
}

.alert-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

/* ID Card Styles */
.id-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 1rem;
    padding: 2rem;
    color: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.id-card-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 5px solid #fff;
    object-fit: cover;
}

.id-card-info {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    padding: 1rem;
    margin-top: 1rem;
}

/* Print Styles */
@media print {
    .no-print {
        display: none !important;
    }
    
    .id-card {
        page-break-inside: avoid;
    }
}
