/* SKL Leather Crafts - Main Stylesheet */

:root {
    --dark-bg: #1a1a1a;
    --darker-bg: #0f0f0f;
    --neon-red: #9d4edd;
    --bright-red: #b77ff0;
    --light-red: #c77dff;
    --neon-orange: #ff6600; /* Keep for footer "Design" only */
    --text-light: #f5f5f5;
    --text-gray: #cccccc;
    --border-color: #333333;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-light);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

/* Header Styles */
header {
    background: linear-gradient(135deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
    border-bottom: 3px solid var(--neon-red);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(157, 78, 221, 0.3);
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
    overflow-x: hidden;
    overflow-y: visible;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    width: 100%;
    box-sizing: border-box;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--neon-red);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 0 0 10px rgba(157, 78, 221, 0.5);
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.logo:hover {
    text-shadow: 0 0 20px rgba(157, 78, 221, 0.8);
    transform: scale(1.05);
}


/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    position: relative;
}

.mobile-menu-toggle span {
    width: 100%;
    height: 3px;
    background: var(--neon-red);
    border-radius: 3px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.mobile-menu-overlay.active {
    display: block;
    opacity: 1;
}

/* Mobile Navigation - Stylish Slide Down */
.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 100vw;
    max-height: 0;
    background: linear-gradient(135deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
    z-index: 999;
    overflow: hidden;
    overflow-x: hidden;
    transition: max-height 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
    box-sizing: border-box;
}

.mobile-nav.active {
    max-height: 100vh;
    overflow-y: auto;
    overflow-x: hidden;
}

.mobile-nav::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--neon-red), transparent);
    animation: shimmer 2s infinite;
    z-index: 1;
}

.mobile-nav::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--neon-red), transparent);
    animation: shimmer 2s infinite;
    animation-delay: 1s;
    z-index: 1;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.mobile-nav ul {
    list-style: none;
    padding: 5rem 0 2rem 0;
    margin: 0;
    width: 100%;
    max-width: 100%;
    display: block;
    box-sizing: border-box;
}

.mobile-nav li {
    border-bottom: 1px solid rgba(157, 78, 221, 0.1);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    width: 100%;
    max-width: 100%;
    display: block;
    box-sizing: border-box;
}

.mobile-nav.active li {
    opacity: 1;
    transform: translateX(0);
}

.mobile-nav.active li:nth-child(1) { transition-delay: 0.1s; }
.mobile-nav.active li:nth-child(2) { transition-delay: 0.15s; }
.mobile-nav.active li:nth-child(3) { transition-delay: 0.2s; }
.mobile-nav.active li:nth-child(4) { transition-delay: 0.25s; }
.mobile-nav.active li:nth-child(5) { transition-delay: 0.3s; }
.mobile-nav.active li:nth-child(6) { transition-delay: 0.35s; }
.mobile-nav.active li:nth-child(7) { transition-delay: 0.4s; }
.mobile-nav.active li:nth-child(8) { transition-delay: 0.45s; }
.mobile-nav.active li:nth-child(9) { transition-delay: 0.5s; }
.mobile-nav.active li:nth-child(10) { transition-delay: 0.55s; }

.mobile-nav li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: var(--neon-red);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.mobile-nav li:hover::before,
.mobile-nav li.active::before {
    transform: scaleY(1);
}

.mobile-nav a {
    display: flex;
    align-items: center;
    padding: 1.25rem 1.5rem;
    color: var(--text-light);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}


.mobile-nav a {
    flex: 1 1 auto;
    min-width: 0;
    max-width: 100%;
}

.mobile-nav a > *:not(i):not(.cart-badge) {
    flex: 1 1 auto;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mobile-nav a:hover {
    background: rgba(157, 78, 221, 0.1);
    color: var(--neon-red);
    padding-left: 2rem;
    transform: translateX(5px);
}

.mobile-nav a.active {
    background: rgba(157, 78, 221, 0.2);
    color: var(--neon-red);
    padding-left: 2rem;
    font-weight: 700;
    border-left: 4px solid var(--neon-red);
    box-shadow: inset 0 0 20px rgba(157, 78, 221, 0.1);
}

.mobile-nav a i {
    margin-right: 1rem;
    font-size: 1.2rem;
    width: 28px;
    min-width: 28px;
    text-align: center;
    color: var(--neon-red);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.mobile-nav a:hover i,
.mobile-nav a.active i {
    color: var(--neon-red);
    transform: scale(1.2);
    text-shadow: 0 0 10px rgba(157, 78, 221, 0.8);
}

.mobile-nav .mobile-cart-link {
    position: relative;
}

.mobile-nav .cart-badge {
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    background: var(--neon-red);
    color: var(--darker-bg);
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: bold;
    box-shadow: 0 0 10px rgba(157, 78, 221, 0.5);
    flex-shrink: 0;
    margin-left: auto;
}

.mobile-nav .btn {
    margin: 1rem 1.5rem;
    width: calc(100% - 3rem);
    text-align: center;
    padding: 1rem;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(157, 78, 221, 0.4);
    border: 2px solid var(--neon-red);
    background: transparent;
    color: var(--neon-red);
}

.mobile-nav .btn:hover {
    background: var(--neon-red);
    color: var(--darker-bg);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(157, 78, 221, 0.6);
}

.mobile-nav .mobile-cart-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    align-items: center;
    margin: 0;
    padding: 0;
}

nav li {
    margin: 0;
    padding: 0;
}

nav a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
    position: relative;
    white-space: nowrap;
}

nav a:hover {
    color: var(--neon-red);
}

nav a.active {
    color: var(--neon-red);
    background: rgba(157, 78, 221, 0.15);
    border-radius: 5px;
    font-weight: 700;
}

.desktop-nav {
    display: none;
}

.header-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.cart-icon {
    position: relative;
    color: var(--neon-red);
    font-size: 1.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cart-icon:hover {
    transform: scale(1.1);
    text-shadow: 0 0 10px rgba(157, 78, 221, 0.8);
}

.cart-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--neon-red);
    color: var(--darker-bg);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: bold;
}

.btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background: var(--neon-red);
    color: var(--darker-bg);
    box-shadow: 0 4px 15px rgba(157, 78, 221, 0.4);
}

.btn-primary:hover {
    background: var(--bright-red);
    box-shadow: 0 6px 20px rgba(157, 78, 221, 0.6);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--neon-red);
    border: 2px solid var(--neon-red);
}

.btn-secondary:hover {
    background: var(--neon-red);
    color: var(--darker-bg);
}

.btn-outline {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--border-color);
}

.btn-outline:hover {
    border-color: var(--neon-red);
    color: var(--neon-red);
}

/* Main Content */
main {
    flex: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
    width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
    border-radius: 10px;
    margin-bottom: 3rem;
    border: 1px solid var(--border-color);
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--neon-red);
    text-shadow: 0 0 20px rgba(157, 78, 221, 0.5);
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Products Grid - Mobile First */
.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

.product-card {
    background: var(--darker-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    border-color: var(--neon-red);
    box-shadow: 0 4px 15px rgba(157, 78, 221, 0.2);
}

.product-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    background: var(--dark-bg);
    display: block;
}

.product-info {
    padding: 1rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-name {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    color: var(--text-light);
    font-weight: 600;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-price {
    font-size: 1.25rem;
    color: var(--neon-red);
    font-weight: bold;
    margin-bottom: 0.75rem;
    margin-top: auto;
}

.product-card .btn {
    font-size: 0.85rem;
    padding: 0.6rem 1rem;
    margin-top: 0.5rem;
}

/* Forms */
.form-container {
    max-width: 500px;
    margin: 2rem auto;
    background: var(--darker-bg);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid var(--border-color);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-light);
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    background: var(--dark-bg);
    border: 1px solid var(--border-color);
    border-radius: 5px;
    color: var(--text-light);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--neon-red);
    box-shadow: 0 0 10px rgba(157, 78, 221, 0.3);
}

/* Cart */
.cart-container {
    background: var(--darker-bg);
    padding: 1rem;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    margin: 1rem 0;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.cart-item {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item-info {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex: 1;
    width: 100%;
}

.cart-item-image {
    width: 80px;
    height: 80px;
    min-width: 80px;
    object-fit: cover;
    border-radius: 5px;
}

.cart-item-details {
    flex: 1;
    min-width: 0;
}

.cart-item-name {
    color: var(--text-light);
    margin-bottom: 0.5rem;
    font-size: 1rem;
    word-wrap: break-word;
}

.cart-item-price {
    color: var(--neon-red);
    font-size: 1.1rem;
    font-weight: bold;
}

.cart-item-actions {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    width: 100%;
    flex-wrap: wrap;
}

.cart-quantity-input {
    width: 70px;
    padding: 0.5rem;
    background: var(--dark-bg);
    border: 1px solid var(--border-color);
    border-radius: 5px;
    color: var(--text-light);
    font-size: 0.9rem;
}

.cart-action-btn {
    padding: 0.5rem 0.75rem;
    font-size: 0.85rem;
    white-space: nowrap;
}

.cart-delete-btn {
    color: #b77ff0;
}

.cart-btn-text {
    display: inline;
}

.cart-total {
    text-align: right;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid var(--neon-red);
}

.cart-total h3 {
    font-size: 1.5rem;
    color: var(--neon-red);
}

/* Footer */
footer {
    background: var(--darker-bg);
    border-top: 3px solid var(--neon-red);
    padding: 2rem 0;
    margin-top: 4rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.footer-section h3 {
    color: var(--neon-red);
    margin-bottom: 1rem;
}

.footer-section a {
    color: var(--text-gray);
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--neon-red);
}

.footer-branding {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    margin-top: 2rem;
}

.footer-branding p {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.footer-branding .strategy {
    font-weight: bold;
    color: var(--text-light);
}

.footer-branding .design {
    color: var(--neon-orange);
    font-weight: bold;
}

/* Admin Dashboard */
/* Admin Dashboard - Updated */
.admin-dashboard {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.stat-card {
    background: var(--dark-bg);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--neon-red), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-card:hover {
    border-color: var(--neon-red);
    box-shadow: 0 4px 20px rgba(157, 78, 221, 0.2);
    transform: translateY(-2px);
}

.stat-card:hover::before {
    opacity: 1;
}

.stat-icon {
    font-size: 2rem;
    color: var(--neon-red);
    margin-bottom: 0.5rem;
}

.stat-card h3 {
    color: var(--text-gray);
    font-size: 0.9rem;
    font-weight: 500;
    margin: 0 0 0.5rem 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-value {
    color: var(--text-light);
    font-size: 2rem;
    font-weight: bold;
}

/* Alerts */
.alert {
    padding: 1rem;
    border-radius: 5px;
    margin-bottom: 1rem;
}

.alert-success {
    background: rgba(0, 255, 0, 0.1);
    border: 1px solid rgba(0, 255, 0, 0.3);
    color: #00ff00;
}

.alert-error {
    background: rgba(255, 0, 0, 0.1);
    border: 1px solid rgba(255, 0, 0, 0.3);
    color: #b77ff0;
}

.alert-info {
    background: rgba(157, 78, 221, 0.1);
    border: 1px solid rgba(157, 78, 221, 0.3);
    color: var(--neon-red);
}

/* Shop Page Styles - Mobile First */
.shop-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem;
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
}

.shop-header {
    text-align: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--border-color);
}

.shop-header h1 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.shop-layout {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.shop-sidebar {
    background: var(--darker-bg);
    padding: 1rem;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    display: none;
}

.shop-sidebar.active {
    display: block;
}

.filter-section {
    margin-bottom: 1rem;
}

.filter-group {
    margin-bottom: 1.5rem;
}

.filter-input,
.filter-select {
    width: 100%;
    padding: 0.75rem;
    background: var(--dark-bg);
    border: 1px solid var(--border-color);
    border-radius: 5px;
    color: var(--text-light);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.filter-input:focus,
.filter-select:focus {
    outline: none;
    border-color: var(--neon-red);
    box-shadow: 0 0 10px rgba(157, 78, 221, 0.3);
}

.shop-main {
    min-width: 0;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.shop-toolbar {
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.9rem;
}

.shop-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.mobile-filter-toggle {
    display: none;
    width: 100%;
    margin-bottom: 1rem;
    padding: 0.75rem 1rem;
    background: var(--neon-red);
    color: var(--darker-bg);
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(157, 78, 221, 0.4);
    transition: all 0.3s ease;
}

.mobile-filter-toggle:hover {
    background: var(--bright-red);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(157, 78, 221, 0.6);
}

.mobile-filter-toggle i {
    margin-right: 0.5rem;
}

.shop-card {
    position: relative;
}

.product-image-wrapper {
    position: relative;
    overflow: hidden;
}

.stock-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--neon-red);
    color: var(--darker-bg);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: bold;
    z-index: 10;
}

.stock-badge.out-of-stock {
    background: #b77ff0;
    color: var(--text-light);
}

.product-category {
    font-size: 0.85rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.no-products {
    text-align: center;
    padding: 4rem 2rem;
    background: var(--darker-bg);
    border-radius: 10px;
    border: 1px solid var(--border-color);
}

/* Tablet and Up */
@media (min-width: 768px) {
    .cart-container {
        padding: 1.5rem;
    }
    main {
        padding: 2rem;
    }

    .header-container {
        padding: 0 2rem;
    }

    /* Hide mobile menu on desktop */
    .mobile-menu-toggle {
        display: none;
    }

    .mobile-nav {
        display: none !important;
    }

    .mobile-menu-overlay {
        display: none !important;
    }

    /* Show desktop nav */
    .desktop-nav {
        display: block;
    }

    .desktop-nav ul {
        display: flex;
        list-style: none;
        gap: 1.5rem;
        align-items: center;
        margin: 0;
        padding: 0;
    }

    .desktop-nav li {
        margin: 0;
        padding: 0;
    }

    .desktop-nav a {
        color: var(--text-light);
        text-decoration: none;
        font-weight: 500;
        padding: 0.5rem 1rem;
        border-radius: 5px;
        transition: all 0.3s ease;
        position: relative;
        white-space: nowrap;
    }

    .desktop-nav a:hover {
        color: var(--neon-red);
    }

    .desktop-nav a.active {
        color: var(--neon-red);
        background: rgba(157, 78, 221, 0.15);
        border-radius: 5px;
        font-weight: 700;
    }

    .products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }

    .product-image {
        height: 220px;
    }

    .product-info {
        padding: 1.25rem;
    }

    .product-name {
        font-size: 1.1rem;
    }

    .product-price {
        font-size: 1.4rem;
    }

    /* Shop - Tablet */
    .shop-container {
        padding: 1.5rem;
    }

    .shop-header {
        margin-bottom: 2rem;
        padding-bottom: 1.5rem;
    }

    .shop-header h1 {
        font-size: 2rem;
    }

    .shop-layout {
        flex-direction: row;
        gap: 1.5rem;
    }

    .shop-sidebar {
        display: block;
        width: 220px;
        min-width: 220px;
        position: sticky;
        top: 100px;
        height: fit-content;
    }

    .mobile-filter-toggle {
        display: none !important;
    }

    .shop-main {
        flex: 1;
        min-width: 0;
    }

    .shop-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

/* Admin Products - Card Grid Layout */
.admin-products-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.product-price-cell {
    color: var(--neon-red) !important;
    font-weight: bold;
}

/* Admin Product Cards */
.admin-product-card {
    background: var(--dark-bg);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 1.25rem;
    transition: all 0.3s ease;
}

.admin-product-card:hover {
    border-color: var(--neon-red);
    box-shadow: 0 4px 20px rgba(157, 78, 221, 0.2);
    transform: translateY(-2px);
}

.admin-product-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
    gap: 1rem;
}

.admin-product-name {
    color: var(--text-light);
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    flex: 1;
    word-wrap: break-word;
}

.admin-product-details {
    margin-bottom: 1rem;
}

.admin-product-detail-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(157, 78, 221, 0.1);
}

.admin-product-detail-item:last-child {
    border-bottom: none;
}

.detail-label {
    color: var(--text-gray);
    font-weight: 500;
}

.detail-value {
    color: var(--text-light);
    font-weight: 600;
}

.admin-product-actions {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
    flex-direction: column;
}

.admin-product-actions .btn {
    width: 100%;
    justify-content: center;
}

.admin-product-actions form {
    width: 100%;
}

.status-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
}

.status-badge.active {
    background: rgba(0, 255, 0, 0.2);
    color: #00ff00;
    border: 1px solid rgba(0, 255, 0, 0.3);
}

.status-badge.inactive {
    background: rgba(183, 127, 240, 0.2);
    color: #b77ff0;
    border: 1px solid rgba(183, 127, 240, 0.3);
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

.btn-delete {
    color: #b77ff0;
}

.btn-delete:hover {
    background: rgba(183, 127, 240, 0.2);
    border-color: #b77ff0;
}

/* Admin Filter Bar */
.admin-filter-bar {
    margin-bottom: 1.5rem;
}

.admin-filter-toggle {
    margin-bottom: 1rem;
}

.admin-filter-panel {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--dark-bg);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    margin-top: 1rem;
}

.admin-filter-group {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.admin-filter-group label {
    color: var(--text-light);
    font-weight: 500;
    font-size: 0.9rem;
}

.admin-search-input {
    width: 100%;
    padding: 0.75rem 2.5rem 0.75rem 1rem;
    background: var(--darker-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-light);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.admin-search-input:focus {
    outline: none;
    border-color: var(--neon-red);
    box-shadow: 0 0 0 3px rgba(157, 78, 221, 0.1);
}

.admin-search-icon {
    position: absolute;
    right: 1rem;
    top: 2.5rem;
    color: var(--text-gray);
    pointer-events: none;
}

.admin-filter-select {
    padding: 0.75rem;
    background: var(--darker-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-light);
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.admin-filter-select:focus {
    outline: none;
    border-color: var(--neon-red);
    box-shadow: 0 0 0 3px rgba(157, 78, 221, 0.1);
}

.admin-no-results {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem 1rem;
    color: var(--text-gray);
}

.admin-no-results i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--neon-red);
    opacity: 0.5;
}

/* Admin Dashboard */
.admin-dashboard {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.stat-card {
    background: var(--dark-bg);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--neon-red), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-card:hover {
    border-color: var(--neon-red);
    box-shadow: 0 4px 20px rgba(157, 78, 221, 0.2);
    transform: translateY(-2px);
}

.stat-card:hover::before {
    opacity: 1;
}

.stat-icon {
    font-size: 2rem;
    color: var(--neon-red);
    margin-bottom: 0.5rem;
}

.stat-card h3 {
    color: var(--text-gray);
    font-size: 0.9rem;
    font-weight: 500;
    margin: 0 0 0.5rem 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-value {
    color: var(--text-light);
    font-size: 2rem;
    font-weight: bold;
}

/* Admin Analytics Grid */
.admin-analytics-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.admin-section-title {
    color: var(--neon-red);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--neon-red);
}

/* Admin List Cards */
.admin-list-cards {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.admin-list-card {
    background: var(--dark-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 1rem;
    transition: all 0.3s ease;
}

.admin-list-card:hover {
    border-color: var(--neon-red);
    background: rgba(255, 51, 51, 0.05);
}

.admin-list-card-content {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.admin-list-card-main h4 {
    color: var(--text-light);
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
}

.admin-list-card-stats {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.admin-list-stat {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.stat-label {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.stat-number {
    color: var(--text-light);
    font-weight: 600;
    font-size: 1rem;
}

.stat-number.revenue {
    color: var(--neon-red);
}

.stat-number.views {
    color: var(--neon-red);
}

.admin-empty-state {
    color: var(--text-gray);
    text-align: center;
    padding: 2rem;
    font-style: italic;
}

/* Admin Quick Actions */
.admin-quick-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 2rem;
}

.admin-quick-actions .btn {
    width: 100%;
    justify-content: center;
}

/* Admin Orders */
.admin-orders-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.admin-order-card {
    background: var(--dark-bg);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 1.25rem;
    transition: all 0.3s ease;
}

.admin-order-card:hover {
    border-color: var(--neon-red);
    box-shadow: 0 4px 20px rgba(157, 78, 221, 0.2);
    transform: translateY(-2px);
}

.admin-order-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.admin-order-number {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    font-weight: 600;
    font-size: 1.1rem;
}

.admin-order-number i {
    color: var(--neon-red);
}

.order-status-badge {
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: capitalize;
}

.order-status-badge.status-pending {
    background: rgba(255, 193, 7, 0.2);
    color: #ffc107;
    border: 1px solid rgba(255, 193, 7, 0.3);
}

.order-status-badge.status-processing {
    background: rgba(0, 123, 255, 0.2);
    color: #007bff;
    border: 1px solid rgba(0, 123, 255, 0.3);
}

.order-status-badge.status-shipped {
    background: rgba(23, 162, 184, 0.2);
    color: #17a2b8;
    border: 1px solid rgba(23, 162, 184, 0.3);
}

.order-status-badge.status-completed {
    background: rgba(40, 167, 69, 0.2);
    color: #28a745;
    border: 1px solid rgba(40, 167, 69, 0.3);
}

.order-status-badge.status-cancelled {
    background: rgba(220, 53, 69, 0.2);
    color: #dc3545;
    border: 1px solid rgba(220, 53, 69, 0.3);
}

.admin-order-details {
    margin-bottom: 1rem;
}

.admin-order-detail-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(157, 78, 221, 0.1);
}

.admin-order-detail-item:last-child {
    border-bottom: none;
}

.admin-order-detail-item .detail-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
    font-weight: 500;
}

.admin-order-detail-item .detail-value {
    color: var(--text-light);
    font-weight: 600;
    text-align: right;
}

.order-amount {
    color: var(--neon-red) !important;
    font-size: 1.1rem;
}

.admin-order-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1rem;
}

.admin-status-form {
    width: 100%;
}

.admin-status-select {
    width: 100%;
    padding: 0.75rem;
    background: var(--darker-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-light);
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.admin-status-select:focus {
    outline: none;
    border-color: var(--neon-red);
    box-shadow: 0 0 0 3px rgba(157, 78, 221, 0.1);
}

/* Admin Leads */
.admin-leads-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.admin-lead-card {
    background: var(--dark-bg);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 1.25rem;
    transition: all 0.3s ease;
}

.admin-lead-card:hover {
    border-color: var(--neon-red);
    box-shadow: 0 4px 20px rgba(157, 78, 221, 0.2);
    transform: translateY(-2px);
}

.admin-lead-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.admin-lead-name {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    font-weight: 600;
    font-size: 1.1rem;
}

.admin-lead-name i {
    color: var(--neon-red);
}

.lead-status-badge {
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: capitalize;
}

.lead-status-badge.status-new {
    background: rgba(0, 123, 255, 0.2);
    color: #007bff;
    border: 1px solid rgba(0, 123, 255, 0.3);
}

.lead-status-badge.status-contacted {
    background: rgba(255, 193, 7, 0.2);
    color: #ffc107;
    border: 1px solid rgba(255, 193, 7, 0.3);
}

.lead-status-badge.status-qualified {
    background: rgba(23, 162, 184, 0.2);
    color: #17a2b8;
    border: 1px solid rgba(23, 162, 184, 0.3);
}

.lead-status-badge.status-converted {
    background: rgba(40, 167, 69, 0.2);
    color: #28a745;
    border: 1px solid rgba(40, 167, 69, 0.3);
}

.lead-status-badge.status-closed {
    background: rgba(108, 117, 125, 0.2);
    color: #6c757d;
    border: 1px solid rgba(108, 117, 125, 0.3);
}

.admin-lead-details {
    margin-bottom: 1rem;
}

.admin-lead-detail-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(157, 78, 221, 0.1);
}

.admin-lead-detail-item:last-child {
    border-bottom: none;
}

.admin-lead-detail-item .detail-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
    font-weight: 500;
}

.admin-lead-detail-item .detail-value {
    color: var(--text-light);
    font-weight: 600;
    text-align: right;
    word-break: break-word;
}

.admin-lead-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1rem;
}

/* Admin Lead Modal */
.admin-lead-modal-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.admin-lead-modal-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.admin-lead-modal-item:last-of-type {
    border-bottom: none;
}

.modal-label {
    color: var(--text-gray);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.modal-value {
    color: var(--text-light);
    font-weight: 600;
    margin-top: 0.25rem;
}

.admin-lead-modal-message {
    padding-top: 1rem;
}

.modal-message-content {
    background: var(--dark-bg);
    padding: 1rem;
    border-radius: 8px;
    margin-top: 0.5rem;
    color: var(--text-light);
    line-height: 1.6;
    white-space: pre-wrap;
}

/* Desktop */
@media (min-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }

    .product-image {
        height: 250px;
    }

    .product-info {
        padding: 1.5rem;
    }

    .product-name {
        font-size: 1.2rem;
    }

    .product-price {
        font-size: 1.5rem;
    }

    .product-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(157, 78, 221, 0.3);
    }

    /* Shop - Desktop */
    .shop-container {
        padding: 2rem;
    }

    .shop-header {
        margin-bottom: 3rem;
        padding-bottom: 2rem;
    }

    .shop-header h1 {
        font-size: 2.5rem;
    }

    .shop-layout {
        gap: 2rem;
    }

    .shop-sidebar {
        width: 250px;
        min-width: 250px;
        padding: 1.5rem;
    }

    .shop-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }
}

/* Mobile Optimizations */
@media (max-width: 767px) {
    /* Header */
    .header-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 0.75rem 1rem;
        position: relative;
        width: 100%;
        box-sizing: border-box;
        gap: 0.5rem;
        min-height: 50px;
        overflow: visible;
    }

    .logo {
        font-size: 0.75rem;
        letter-spacing: 1px;
        flex: 1 1 0;
        min-width: 0;
        max-width: calc(100% - 40px);
        overflow: visible;
        white-space: normal;
        line-height: 1.2;
        word-wrap: break-word;
        text-align: left;
        padding-right: 0.5rem;
    }

    /* Hide desktop nav on mobile */
    .desktop-nav {
        display: none !important;
    }

    /* Show mobile menu toggle */
    .mobile-menu-toggle {
        display: flex !important;
        flex-shrink: 0 !important;
        flex-grow: 0 !important;
        width: 30px !important;
        min-width: 30px !important;
        height: 30px !important;
        order: 2;
        visibility: visible !important;
        opacity: 1 !important;
        position: relative !important;
        z-index: 1001 !important;
    }
    
    .mobile-menu-toggle span {
        background: var(--neon-red) !important;
        box-shadow: 0 0 8px rgba(157, 78, 221, 0.6);
    }

    /* Show mobile nav when active */
    .mobile-nav {
        display: block;
    }

    /* Main Content */
    main {
        padding: 1rem;
    }

    /* Hero */
    .hero {
        padding: 2rem 1rem;
        margin-bottom: 2rem;
    }

    .hero h1 {
        font-size: 1.75rem;
        margin-bottom: 0.75rem;
    }

    .hero p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
    }

    /* Forms */
    .form-container {
        padding: 1.5rem;
        margin: 1rem auto;
    }

    /* Cart - Mobile */
    .cart-container {
        padding: 0.75rem;
        margin: 0.75rem 0;
    }

    .cart-item {
        padding: 0.75rem 0;
    }

    .cart-item-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .cart-item-image {
        width: 100%;
        height: 200px;
        min-width: 100%;
    }

    .cart-item-name {
        font-size: 0.95rem;
    }

    .cart-item-price {
        font-size: 1rem;
    }

    .cart-item-actions {
        width: 100%;
        flex-direction: column;
    }

    .cart-action-btn {
        width: 100%;
        justify-content: center;
    }

    .cart-btn-text {
        display: inline;
    }

    .cart-quantity-input {
        width: 100%;
        max-width: 100px;
    }

    /* Shop - Mobile */
    .shop-container {
        padding: 0.75rem;
    }

    .shop-header {
        margin-bottom: 1rem;
        padding-bottom: 0.75rem;
    }

    .shop-header h1 {
        font-size: 1.25rem;
    }

    .shop-header p {
        font-size: 0.9rem;
    }

    .shop-layout {
        gap: 0.75rem;
    }

    .shop-toolbar {
        margin-bottom: 0.75rem;
        padding-bottom: 0.5rem;
        font-size: 0.85rem;
    }

    .shop-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .product-image {
        height: 150px;
    }

    .product-info {
        padding: 0.75rem;
    }

    .product-name {
        font-size: 0.85rem;
    }

    .product-price {
        font-size: 1.1rem;
    }

    .product-card .btn {
        font-size: 0.75rem;
        padding: 0.5rem 0.75rem;
    }

    .mobile-filter-toggle {
        display: block !important;
    }

    .shop-sidebar {
        position: static;
        margin-bottom: 1rem;
        padding: 1rem;
    }

    .filter-group {
        margin-bottom: 1rem;
    }

    .filter-input,
    .filter-select {
        font-size: 0.9rem;
        padding: 0.65rem;
    }

    /* Footer */
    .footer-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1.5rem 1rem;
    }

    /* Admin Dashboard */
    .admin-dashboard {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .stat-card {
        padding: 1.5rem;
    }

    .admin-order-actions,
    .admin-lead-actions {
        flex-direction: column;
    }

    .admin-order-actions .btn,
    .admin-lead-actions .btn {
        width: 100%;
    }

    /* Product Detail */
    .product-detail-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }

    .product-detail-grid h1 {
        font-size: 1.5rem;
    }

    .product-detail-grid .product-price {
        font-size: 1.75rem;
    }

    /* Checkout */
    .checkout-grid {
        grid-template-columns: 1fr !important;
    }

    /* Profile */
    .profile-grid {
        grid-template-columns: 1fr !important;
    }

    .profile-name-grid,
    .profile-address-grid {
        grid-template-columns: 1fr !important;
    }

    /* Checkout */
    .checkout-address-grid {
        grid-template-columns: 1fr !important;
    }

    /* Tables */
    table {
        font-size: 0.85rem;
    }

    table th,
    table td {
        padding: 0.5rem 0.25rem;
    }

    /* Admin */
    .admin-stats-grid {
        grid-template-columns: 1fr !important;
    }

    /* Contact */
    .contact-grid {
        grid-template-columns: 1fr !important;
    }

    /* Custom Work Section */
    .custom-work-section {
        padding: 1.5rem 1rem !important;
        margin-top: 2rem !important;
    }

    .custom-work-section h2 {
        font-size: 1.5rem;
    }

    /* Hide category text on mobile product cards */
    .product-category {
        font-size: 0.75rem;
        margin-bottom: 0.25rem;
    }

    /* Ensure no horizontal overflow anywhere */
    * {
        max-width: 100vw;
    }

    img {
        max-width: 100%;
        height: auto;
    }

    /* Product detail quantity input */
    .quantity-input {
        width: 100% !important;
        max-width: 120px;
    }

    /* Tables - make scrollable on mobile */
    .cart-container table,
    .admin-dashboard table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
        width: 100%;
    }

    .cart-container table thead,
    .cart-container table tbody,
    .cart-container table tr {
        display: table;
        width: 100%;
        table-layout: fixed;
    }


    /* Admin Modal */
    .admin-modal-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.85);
        backdrop-filter: blur(5px);
        z-index: 2000;
        display: flex;
        align-items: flex-start;
        justify-content: center;
        overflow-y: auto;
        padding: 1rem;
    }

    .admin-modal-content {
        background: var(--darker-bg);
        border-radius: 10px;
        padding: 1.5rem;
        width: 100%;
        max-width: 500px;
        border: 1px solid var(--border-color);
        max-height: 90vh;
        overflow-y: auto;
        margin: auto;
    }

    .admin-modal-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 1.5rem;
        padding-bottom: 1rem;
        border-bottom: 2px solid var(--neon-red);
    }

    .admin-modal-header h2 {
        color: var(--neon-red);
        margin: 0;
        font-size: 1.5rem;
    }

    .admin-modal-close {
        background: none;
        border: none;
        color: var(--text-light);
        font-size: 2rem;
        cursor: pointer;
        padding: 0;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        transition: all 0.3s ease;
    }

    .admin-modal-close:hover {
        background: rgba(157, 78, 221, 0.2);
        color: var(--neon-red);
        transform: rotate(90deg);
    }

    /* Admin Page Titles */
    .admin-page-title {
        text-align: center;
        margin-bottom: 1.5rem;
        color: var(--neon-red);
        font-size: 1.5rem;
    }

    .admin-action-bar {
        margin-bottom: 1.5rem;
    }

    .admin-action-bar .btn {
        width: 100%;
        justify-content: center;
    }
}

/* Tablet and Up - Admin */
@media (min-width: 768px) {
    .admin-dashboard {
        grid-template-columns: repeat(2, 1fr);
    }

    .admin-analytics-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .admin-page-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .admin-action-bar {
        margin-bottom: 2rem;
    }

    .admin-action-bar .btn {
        width: auto;
    }

    .admin-quick-actions {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .admin-quick-actions .btn {
        width: auto;
        flex: 1;
        min-width: 200px;
    }

    .admin-order-actions,
    .admin-lead-actions {
        flex-direction: row;
    }

    .admin-order-actions .btn,
    .admin-lead-actions .btn {
        width: auto;
        flex: 1;
    }

    .admin-status-form {
        flex: 1;
    }

    .form-grid-2 {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
}

/* Desktop - Admin */
@media (min-width: 1024px) {
    .admin-dashboard {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Tablet and Up - Admin Products */
@media (min-width: 768px) {
    .admin-products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .form-grid-2 {
        grid-template-columns: 1fr 1fr;
    }

    .admin-modal-content {
        padding: 2rem;
        max-width: 600px;
    }

    .admin-product-actions {
        flex-direction: row;
    }

    .admin-product-actions .btn {
        width: auto;
        flex: 1;
    }

    .admin-page-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .admin-action-bar {
        margin-bottom: 2rem;
    }

    .admin-action-bar .btn {
        width: auto;
    }

    .admin-filter-panel {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: flex-end;
    }

    .admin-filter-group {
        flex: 1;
        min-width: 200px;
    }

    .admin-search-input {
        min-width: 250px;
    }
}

/* Desktop - Admin Products */
@media (min-width: 1024px) {
    .admin-products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Tablet specific */
@media (min-width: 768px) and (max-width: 1023px) {
    .product-detail-grid {
        grid-template-columns: 1fr 1fr;
    }

    .checkout-grid {
        grid-template-columns: 1fr;
    }

    .profile-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }

    .cart-item {
        flex-direction: row;
    }

    .cart-item-info {
        flex-direction: row;
    }

    .cart-item-image {
        width: 100px;
        height: 100px;
        min-width: 100px;
    }

    .cart-item-actions {
        flex-direction: row;
        width: auto;
    }

    .cart-action-btn {
        width: auto;
    }

    .profile-name-grid {
        grid-template-columns: 1fr 1fr !important;
    }

    .profile-address-grid {
        grid-template-columns: 2fr 1fr 1fr !important;
    }

    .checkout-address-grid {
        grid-template-columns: 2fr 1fr 1fr !important;
    }
}

/* Desktop specific */
@media (min-width: 1024px) {
    .product-detail-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }

    .checkout-grid {
        grid-template-columns: 2fr 1fr;
    }

    .profile-grid {
        grid-template-columns: 1fr 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }

    .cart-item {
        flex-direction: row;
    }

    .cart-item-info {
        flex-direction: row;
    }

    .cart-item-image {
        width: 100px;
        height: 100px;
        min-width: 100px;
    }

    .cart-item-actions {
        flex-direction: row;
        width: auto;
    }

    .cart-action-btn {
        width: auto;
    }

    .profile-name-grid {
        grid-template-columns: 1fr 1fr !important;
    }

    .profile-address-grid {
        grid-template-columns: 2fr 1fr 1fr !important;
    }

    .checkout-address-grid {
        grid-template-columns: 2fr 1fr 1fr !important;
    }
}

/* Tablet specific */
@media (min-width: 768px) and (max-width: 1023px) {
    .product-detail-grid {
        grid-template-columns: 1fr 1fr;
    }
}
