/* ============================================================
   Aradhya Creation — Neumorphic Component Library
   Light theme soft UI components
   ============================================================ */

/* ── Neumorphic Cards ────────────────────────────────────── */
.neu-card {
    background: var(--surface);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    padding: var(--space-xl);
    transition: all var(--transition-base);
}

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

.neu-card-sm {
    background: var(--surface);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    padding: var(--space-lg);
    transition: all var(--transition-base);
}

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

.neu-card-flat {
    background: var(--surface);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    padding: var(--space-lg);
}

.neu-card-inset {
    background: var(--surface);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-inset);
    padding: var(--space-lg);
}

/* ── Hero Section ────────────────────────────────────────── */
.hero {
    position: relative;
    padding: var(--space-4xl) 0;
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 0.5rem 1.25rem;
    background: var(--surface);
    box-shadow: var(--shadow-sm);
    border-radius: var(--radius-full);
    font-size: var(--font-size-sm);
    font-weight: 600;
    color: var(--primary);
    margin-bottom: var(--space-xl);
    animation: fadeInUp 0.6s ease;
}

.hero h1 {
    font-size: var(--font-size-5xl);
    line-height: 1.15;
    margin-bottom: var(--space-lg);
    animation: fadeInUp 0.6s 0.1s ease both;
}

.hero h1 .highlight {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: var(--font-size-lg);
    color: var(--text-muted);
    margin-bottom: var(--space-xl);
    max-width: 520px;
    animation: fadeInUp 0.6s 0.2s ease both;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    animation: fadeInUp 0.6s 0.3s ease both;
}

.hero-stats {
    display: flex;
    gap: var(--space-2xl);
    margin-top: var(--space-3xl);
    animation: fadeInUp 0.6s 0.4s ease both;
}

.hero-stat {
    text-align: center;
}

.hero-stat .stat-number {
    font-size: var(--font-size-3xl);
    font-weight: 700;
    color: var(--text);
    display: block;
}

.hero-stat .stat-label {
    font-size: var(--font-size-sm);
    color: var(--text-muted);
    margin: 0;
}

.hero-image {
    position: absolute;
    right: -5%;
    top: 50%;
    transform: translateY(-50%);
    width: 45%;
    z-index: 1;
    animation: scaleIn 0.8s 0.3s ease both;
}

.hero-image img {
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

/* ── Neumorphic Icon Box ─────────────────────────────────── */
.neu-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--surface);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: var(--space-lg);
    transition: all var(--transition-base);
}

.neu-icon-sm {
    width: 48px;
    height: 48px;
    font-size: 1.2rem;
}

.neu-icon-lg {
    width: 80px;
    height: 80px;
    font-size: 2rem;
}

.neu-card:hover .neu-icon {
    box-shadow: var(--shadow-inset);
    color: var(--accent);
}

/* ── Product Card ────────────────────────────────────────── */
.product-card {
    background: var(--surface);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: all var(--transition-base);
}

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

.product-card-image {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: var(--bg-alt);
}

.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.product-card-badge {
    position: absolute;
    top: var(--space-md);
    left: var(--space-md);
}

.product-card-body {
    padding: var(--space-lg);
}

.product-card-category {
    font-size: var(--font-size-xs);
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--space-sm);
}

.product-card-title {
    font-size: var(--font-size-lg);
    font-weight: 700;
    color: var(--text);
    margin-bottom: var(--space-sm);
}

.product-card-title a {
    color: var(--text);
}

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

.product-card-desc {
    font-size: var(--font-size-sm);
    color: var(--text-muted);
    margin-bottom: var(--space-md);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: var(--space-md);
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.product-card-price {
    font-size: var(--font-size-sm);
    font-weight: 600;
    color: var(--primary);
}

.product-card-moq {
    font-size: var(--font-size-xs);
    color: var(--text-light);
}

/* ── Team Card ───────────────────────────────────────────── */
.team-card {
    background: var(--surface);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    text-align: center;
    transition: all var(--transition-base);
}

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

.team-card-photo {
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: var(--bg-alt);
}

.team-card-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.team-card-body {
    padding: var(--space-lg);
}

.team-card-name {
    font-size: var(--font-size-lg);
    font-weight: 700;
    color: var(--text);
    margin-bottom: var(--space-xs);
}

.team-card-role {
    font-size: var(--font-size-sm);
    color: var(--primary);
    font-weight: 600;
    margin-bottom: var(--space-md);
}

.team-card-bio {
    font-size: var(--font-size-sm);
    color: var(--text-muted);
    margin: 0;
}

/* ── Service Card ────────────────────────────────────────── */
.service-card {
    background: var(--surface);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    padding: var(--space-2xl) var(--space-xl);
    text-align: center;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transition: transform var(--transition-base);
}

.service-card:hover::before {
    transform: scaleX(1);
}

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

.service-card .neu-icon {
    margin: 0 auto var(--space-lg);
}

.service-card-title {
    font-size: var(--font-size-lg);
    font-weight: 700;
    color: var(--text);
    margin-bottom: var(--space-md);
}

.service-card-desc {
    font-size: var(--font-size-sm);
    color: var(--text-muted);
    margin: 0;
}

/* ── Testimonial Card ────────────────────────────────────── */
.testimonial-card {
    background: var(--surface);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    padding: var(--space-xl);
    position: relative;
    transition: all var(--transition-base);
}

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

.testimonial-quote {
    font-size: 3rem;
    color: var(--primary);
    opacity: 0.15;
    position: absolute;
    top: var(--space-md);
    left: var(--space-lg);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-content {
    font-size: var(--font-size-base);
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: var(--space-lg);
    font-style: italic;
    position: relative;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFF;
    font-weight: 700;
    font-size: var(--font-size-lg);
}

.testimonial-name {
    font-weight: 700;
    color: var(--text);
    font-size: var(--font-size-sm);
}

.testimonial-company {
    font-size: var(--font-size-xs);
    color: var(--text-muted);
    margin: 0;
}

.testimonial-stars {
    color: #F59E0B;
    font-size: var(--font-size-sm);
    margin-bottom: var(--space-md);
}

/* ── Gallery Grid ────────────────────────────────────────── */
.gallery-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    cursor: pointer;
    aspect-ratio: 4 / 3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.8), transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: var(--space-lg);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay-text {
    color: #FFF;
    font-weight: 600;
    font-size: var(--font-size-sm);
}

/* ── Category Filter Tabs ────────────────────────────────── */
.filter-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-2xl);
}

.filter-tab {
    padding: 0.55rem 1.25rem;
    font-family: var(--font-family);
    font-size: var(--font-size-sm);
    font-weight: 600;
    color: var(--text-muted);
    background: var(--surface);
    border: none;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    transition: all var(--transition-base);
}

.filter-tab:hover {
    color: var(--primary);
    box-shadow: var(--shadow-inset-sm);
}

.filter-tab.active {
    background: var(--primary);
    color: #FFF;
    box-shadow: none;
}

/* ── Lightbox ────────────────────────────────────────────── */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.92);
    z-index: var(--z-modal);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-xl);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-base);
}

.lightbox.active {
    opacity: 1;
    pointer-events: all;
}

.lightbox-content {
    max-width: 90vw;
    max-height: 85vh;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: scaleIn 0.3s ease;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: var(--space-lg);
    right: var(--space-lg);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    color: #FFF;
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    color: #FFF;
    border: none;
    border-radius: 50%;
    font-size: 1.25rem;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.2);
}

.lightbox-prev {
    left: var(--space-lg);
}

.lightbox-next {
    right: var(--space-lg);
}

/* ── Carousel ────────────────────────────────────────────── */
.carousel {
    position: relative;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    transition: transform var(--transition-slow);
}

.carousel-slide {
    flex: 0 0 100%;
    min-width: 0;
}

.carousel-slide-third {
    flex: 0 0 calc(100% / 3);
    padding: 0 var(--space-md);
}

.carousel-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-md);
    margin-top: var(--space-xl);
}

.carousel-btn {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--surface);
    border: none;
    border-radius: 50%;
    box-shadow: var(--shadow-sm);
    color: var(--text-muted);
    font-size: 1rem;
    cursor: pointer;
    transition: all var(--transition-base);
}

.carousel-btn:hover {
    color: var(--primary);
    box-shadow: var(--shadow-inset-sm);
}

.carousel-dots {
    display: flex;
    gap: var(--space-sm);
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: var(--surface);
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    transition: all var(--transition-base);
}

.carousel-dot.active {
    background: var(--primary);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
    transform: scale(1.2);
}

/* ── Search Bar ──────────────────────────────────────────── */
.search-bar {
    position: relative;
    max-width: 500px;
    margin: 0 auto var(--space-2xl);
}

.search-bar input {
    width: 100%;
    padding: 1rem 1.5rem 1rem 3rem;
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    background: var(--surface);
    border: none;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-md);
    color: var(--text);
    transition: all var(--transition-base);
}

.search-bar input:focus {
    outline: none;
    box-shadow: var(--shadow-inset), 0 0 0 2px var(--accent);
}

.search-bar i {
    position: absolute;
    left: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
    font-size: 1rem;
}

/* ── Specs Table ─────────────────────────────────────────── */
.specs-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.specs-table th,
.specs-table td {
    padding: 0.85rem 1.25rem;
    text-align: left;
    font-size: var(--font-size-sm);
}

.specs-table th {
    background: var(--bg-alt);
    font-weight: 600;
    color: var(--text);
    width: 35%;
}

.specs-table td {
    background: var(--surface);
    color: var(--text-muted);
}

.specs-table tr:not(:last-child) th,
.specs-table tr:not(:last-child) td {
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

/* ── Why Choose Us ───────────────────────────────────────── */
.benefit-item {
    display: flex;
    gap: var(--space-lg);
    align-items: flex-start;
}

.benefit-item .neu-icon {
    flex-shrink: 0;
}

.benefit-title {
    font-size: var(--font-size-lg);
    font-weight: 700;
    color: var(--text);
    margin-bottom: var(--space-xs);
}

.benefit-desc {
    font-size: var(--font-size-sm);
    color: var(--text-muted);
    margin: 0;
}

/* ── CTA Section ─────────────────────────────────────────── */
.cta-section {
    background: var(--dark-bg);
    border-radius: var(--radius-xl);
    padding: var(--space-4xl) var(--space-2xl);
    text-align: center;
    margin: var(--space-3xl) auto;
    max-width: 1100px;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.15), transparent 70%);
    border-radius: 50%;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.1), transparent 70%);
    border-radius: 50%;
}

.cta-section h2 {
    color: var(--dark-text);
    margin-bottom: var(--space-md);
    position: relative;
}

.cta-section p {
    color: var(--dark-muted);
    font-size: var(--font-size-lg);
    max-width: 550px;
    margin: 0 auto var(--space-xl);
    position: relative;
}

.cta-section .btn {
    position: relative;
}

/* ── Category Carousel Card ──────────────────────────────── */
.category-card {
    background: var(--surface);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    padding: var(--space-xl);
    text-align: center;
    transition: all var(--transition-base);
    cursor: pointer;
}

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

.category-card .neu-icon {
    margin: 0 auto var(--space-md);
}

.category-card:hover .neu-icon {
    box-shadow: var(--shadow-inset);
    color: var(--accent);
}

.category-card-name {
    font-weight: 700;
    color: var(--text);
    font-size: var(--font-size-base);
    margin: 0;
}

/* ── About Stats ─────────────────────────────────────────── */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
}

.stat-card {
    background: var(--surface);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    padding: var(--space-xl);
    text-align: center;
    transition: all var(--transition-base);
}

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

.stat-number {
    font-size: var(--font-size-4xl);
    font-weight: 700;
    color: var(--primary);
    display: block;
    margin-bottom: var(--space-xs);
}

.stat-label {
    font-size: var(--font-size-sm);
    color: var(--text-muted);
    font-weight: 500;
    margin: 0;
}

/* ── Product Detail ──────────────────────────────────────── */
.product-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: start;
}

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

.product-gallery-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    margin-bottom: var(--space-md);
    cursor: pointer;
    aspect-ratio: 4 / 3;
}

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

.product-gallery-thumbs {
    display: flex;
    gap: var(--space-sm);
}

.product-thumb {
    width: 72px;
    height: 72px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-fast);
    opacity: 0.6;
}

.product-thumb.active,
.product-thumb:hover {
    opacity: 1;
    box-shadow: var(--shadow-md), 0 0 0 2px var(--primary);
}

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

.product-info {
    padding: var(--space-lg) 0;
}

.product-info-title {
    font-size: var(--font-size-3xl);
    margin-bottom: var(--space-sm);
}

.product-info-category {
    font-size: var(--font-size-sm);
    color: var(--accent);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--space-lg);
}

.product-info-desc {
    font-size: var(--font-size-base);
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: var(--space-xl);
}

.product-moq {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md) var(--space-lg);
    background: var(--surface);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-inset);
    margin-bottom: var(--space-xl);
}

.product-moq-label {
    font-weight: 600;
    color: var(--text);
    font-size: var(--font-size-sm);
}

.product-moq-value {
    font-weight: 700;
    color: var(--primary);
    font-size: var(--font-size-lg);
}

.product-actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    margin-top: var(--space-xl);
}

/* ── Sidebar ─────────────────────────────────────────────── */
.sidebar-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: var(--space-2xl);
    align-items: start;
}

.sidebar {
    position: sticky;
    top: 96px;
}

.sidebar-card {
    background: var(--surface);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    padding: var(--space-lg);
}

.sidebar-title {
    font-size: var(--font-size-base);
    font-weight: 700;
    margin-bottom: var(--space-lg);
    color: var(--text);
    padding-bottom: var(--space-sm);
    border-bottom: 2px solid rgba(0, 0, 0, 0.06);
}

.sidebar-link {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 0.65rem var(--space-md);
    font-size: var(--font-size-sm);
    color: var(--text-muted);
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
    text-decoration: none;
    margin-bottom: var(--space-xs);
}

.sidebar-link:hover {
    color: var(--primary);
    background: rgba(59, 130, 246, 0.06);
}

.sidebar-link.active {
    color: var(--primary);
    background: rgba(59, 130, 246, 0.1);
    font-weight: 600;
}

.sidebar-link i {
    width: 16px;
    text-align: center;
    font-size: 0.85em;
}

/* ── Enquiry Form Section ────────────────────────────────── */
.enquiry-section {
    background: var(--surface);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    padding: var(--space-2xl);
    max-width: 700px;
    margin: 0 auto;
}

.math-captcha {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.math-captcha-question {
    font-weight: 700;
    font-size: var(--font-size-lg);
    color: var(--primary);
    white-space: nowrap;
}

.math-captcha input {
    max-width: 120px;
}

/* ── Admin Specific ──────────────────────────────────────── */
.admin-layout {
    display: grid;
    grid-template-columns: 250px 1fr;
    min-height: calc(100vh - 72px);
}

.admin-sidebar {
    background: var(--dark-bg);
    padding: var(--space-xl);
    color: var(--dark-text);
}

.admin-sidebar-link {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 0.75rem var(--space-md);
    color: var(--dark-muted);
    font-size: var(--font-size-sm);
    font-weight: 500;
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
    text-decoration: none;
    margin-bottom: var(--space-xs);
}

.admin-sidebar-link:hover {
    color: var(--dark-text);
    background: var(--dark-surface);
}

.admin-sidebar-link.active {
    color: var(--primary-light);
    background: rgba(59, 130, 246, 0.1);
}

.admin-content {
    padding: var(--space-xl);
}

.admin-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--space-xl);
}

.admin-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: var(--surface);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.admin-table th {
    background: var(--bg-alt);
    padding: 1rem 1.25rem;
    text-align: left;
    font-size: var(--font-size-sm);
    font-weight: 600;
    color: var(--text);
}

.admin-table td {
    padding: 0.85rem 1.25rem;
    font-size: var(--font-size-sm);
    color: var(--text-muted);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.admin-table tr:hover td {
    background: rgba(59, 130, 246, 0.03);
}

.admin-actions {
    display: flex;
    gap: var(--space-sm);
}

.admin-btn {
    padding: 0.35rem 0.75rem;
    font-size: var(--font-size-xs);
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-weight: 600;
    transition: all var(--transition-fast);
}

.admin-btn-edit {
    background: rgba(59, 130, 246, 0.1);
    color: var(--primary);
}

.admin-btn-edit:hover {
    background: var(--primary);
    color: #FFF;
}

.admin-btn-delete {
    background: rgba(239, 68, 68, 0.1);
    color: #EF4444;
}

.admin-btn-delete:hover {
    background: #EF4444;
    color: #FFF;
}

/* ── Login Page ──────────────────────────────────────────── */
.login-page {
    min-height: calc(100vh - 72px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-xl);
}

.login-card {
    background: var(--surface);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    padding: var(--space-2xl);
    width: 100%;
    max-width: 440px;
    text-align: center;
}

.login-card h1 {
    font-size: var(--font-size-2xl);
    margin-bottom: var(--space-xs);
}

.login-card .login-subtitle {
    color: var(--text-muted);
    font-size: var(--font-size-sm);
    margin-bottom: var(--space-xl);
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 768px) {
    .hero {
        padding: var(--space-2xl) 0;
        min-height: auto;
    }

    .hero h1 {
        font-size: var(--font-size-3xl);
    }

    .hero-image {
        display: none;
    }

    .hero-stats {
        gap: var(--space-lg);
    }

    .product-detail {
        grid-template-columns: 1fr;
    }

    .product-gallery {
        position: static;
    }

    .sidebar-layout {
        grid-template-columns: 1fr;
    }

    .sidebar {
        position: static;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .admin-layout {
        grid-template-columns: 1fr;
    }

    .admin-sidebar {
        display: none;
    }

    .carousel-slide-third {
        flex: 0 0 50%;
    }
}

@media (max-width: 480px) {
    .hero-stats {
        flex-direction: column;
        gap: var(--space-md);
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .product-actions {
        flex-direction: column;
    }

    .product-actions .btn {
        width: 100%;
    }

    .carousel-slide-third {
        flex: 0 0 100%;
    }

    .filter-tabs {
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: var(--space-sm);
    }

    .filter-tab {
        flex-shrink: 0;
    }
}
