:root {
    --primary: #8E1C22; /* Deep Crimson */
    --primary-light: #A62D33;
    --accent: #C5A059; /* Soft Gold */
    --secondary: #121212; /* Rich Black */
    --text: #1A1A1A;
    --muted: #717171;
    --border: rgba(197, 160, 89, 0.2); /* Golden border tint */
    --bg: #FFFFFF;
    --bg-soft: #F8F5F2; /* Warm Cream */
    --glass: rgba(255, 255, 255, 0.85);
    --shadow-soft: 0 10px 40px rgba(0, 0, 0, 0.05);
    --shadow-premium: 0 25px 60px rgba(142, 28, 34, 0.1);
}

/* Responsive Typography */
html { 
    font-size: 16px; 
    overflow-x: hidden;
    width: 100%;
}
@media (max-width: 768px) { html { font-size: 14px; } }

h1 { font-size: clamp(2.5rem, 8vw, 5.5rem); }
h2 { font-size: clamp(2rem, 6vw, 3.5rem); }
h3 { font-size: clamp(1.2rem, 4vw, 1.8rem); }
p { font-size: clamp(0.95rem, 2vw, 1.1rem); }

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.8;
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

/* Modern Header & Dropdown */
header {
    background: var(--glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 1.5rem 10%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border);
}

/* Hamburger Menu */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1100;
}

.menu-toggle span {
    display: block;
    width: 30px;
    height: 3px;
    background: var(--secondary);
    transition: 0.3s;
    border-radius: 2px;
}

.menu-toggle.active span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }



.nav-container { display: flex; align-items: center; gap: 3rem; }
nav ul { display: flex; list-style: none; gap: 2.5rem; margin: 0; padding: 0; }
nav ul li { position: relative; }
nav ul li a {
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    font-size: 0.95rem;
    transition: 0.4s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
nav ul li a:hover { color: var(--primary); }

/* Dropdown Logic */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 220px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    border-radius: 12px;
    padding: 1rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: 0.3s;
    border: 1px solid var(--border);
    z-index: 2000;
}
.dropdown-parent.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.dropdown-menu a {
    display: block;
    padding: 0.7rem 1.5rem;
    font-size: 0.9rem;
}
.dropdown-menu a:hover {
    background: #F9F9F9;
    color: var(--primary);
}

@media (max-width: 992px) {
    header { padding: 1rem 5%; }
    .menu-toggle { display: flex; }
    
    .nav-container {
        position: fixed;
        top: 0; right: -100%;
        width: 80%; height: 100vh;
        background: #fff;
        z-index: 1050;
        flex-direction: column;
        justify-content: center;
        padding: 5rem 10%;
        transition: 0.5s cubic-bezier(0.19, 1, 0.22, 1);
        box-shadow: -10px 0 30px rgba(0,0,0,0.05);
    }
    
    .nav-container.active { right: 0; }
    
    nav ul {
        flex-direction: column;
        gap: 2rem;
        width: 100%;
    }
    
    nav ul li a { font-size: 1.2rem; width: 100%; border-bottom: 1px solid var(--border); padding-bottom: 1rem; }
    
    .dropdown-menu {
        position: static !important;
        opacity: 1 !important; 
        visibility: visible !important;
        transform: none !important;
        box-shadow: none !important;
        border: none !important;
        padding: 0 1.5rem !important;
        display: none;
        margin-top: 1rem !important;
        background: #f9f9f9 !important;
        border-radius: 8px !important;
        width: 100% !important;
        min-width: unset !important;
    }
    .dropdown-parent.active .dropdown-menu { display: block; }
}

/* Typography */
h1, h2, h3 { font-weight: 800; letter-spacing: -0.5px; line-height: 1.2; }

/* Main Container - Full Width Landing */
.main-wrapper {
    width: 100%;
    margin: 0 auto;
}

.section-padding { padding: 6rem 10%; }

/* Hero Section V3 */
.hero-v2 {
    text-align: center;
    padding: 12rem 10%;
    position: relative;
    background: url('../images/hero.png') no-repeat center center/cover;
    color: #fff;
    overflow: hidden;
}

.hero-v2::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(18, 18, 18, 0.85), rgba(18, 18, 18, 0.6));
    z-index: 1;
}

.hero-v2 .container {
    position: relative;
    z-index: 2;
}

.hero-v2 h1 { 
    font-size: 5.5rem; 
    margin-bottom: 2rem; 
    font-weight: 900; 
    text-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
.hero-v2 h1 span { color: var(--accent); }
.hero-v2 p { 
    font-size: 1.4rem; 
    color: rgba(255,255,255,0.8); 
    max-width: 800px; 
    margin: 0 auto 4rem;
    font-weight: 300;
}

.btn-modern {
    padding: 1.2rem 3rem;
    background: var(--primary);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    border-radius: 4px; /* More sophisticated than 100px */
    display: inline-block;
    transition: 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    border: 1px solid var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
}
/* Buttons */
.btn-modern {
    padding: 1.2rem 3rem;
    background: var(--primary);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    border-radius: 4px;
    display: inline-block;
    transition: 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    border: 1px solid var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
}

.btn-outline-primary {
    color: var(--primary);
    font-weight: 700;
    text-decoration: none;
    border: 1px solid var(--primary);
    padding: 0.8rem 1.5rem;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: 0.3s;
    display: inline-block;
}

.btn-outline-primary:hover {
    background: var(--primary);
    color: #fff;
}

/* Stats section */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    background: var(--bg-soft);
    border-bottom: 1px solid var(--border);
    position: relative;
    z-index: 10;
    margin-top: -50px;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    border-radius: 4px;
    box-shadow: var(--shadow-premium);
}
.stat-item {
    padding: 4rem 2rem;
    border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-item h3 { font-size: 3.5rem; color: var(--primary); margin-bottom: 0.5rem; font-weight: 900; }
.stat-item p { font-size: 0.9rem; text-transform: uppercase; letter-spacing: 2px; color: var(--muted); }

/* Services Grid */
.services-v2 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

@media (max-width: 992px) {
    .services-v2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .services-v2 {
        grid-template-columns: 1fr;
    }
}

.service-card {
    padding: 4rem 3rem;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 4px;
    transition: 0.5s;
    position: relative;
    overflow: hidden;
}
.service-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; width: 100%; height: 3px;
    background: var(--accent);
    transform: scaleX(0);
    transition: 0.5s;
    transform-origin: right;
}
.service-card:hover { transform: translateY(-15px); border-color: var(--accent); }
.service-card:hover::after { transform: scaleX(1); transform-origin: left; }

/* Custom Grids for Home */
.about-grid, .why-us-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.vision-mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

@media (max-width: 992px) {
    .about-grid, .why-us-grid, .vision-mission-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .stats-grid { 
        width: 100%; 
        grid-template-columns: repeat(3, 1fr); 
        margin-top: -30px; 
    }
    .stat-item { 
        border-right: 1px solid var(--border); 
        border-bottom: none; 
        padding: 2.5rem 1rem; 
    }
    .stat-item h3 { font-size: 1.8rem; }
    .stat-item p { font-size: 0.65rem; }
    .stat-item:last-child { border-right: none; }
    
    .hero-v2 h1 { font-size: 3rem; }
    .hero-v2 p { font-size: 1.1rem; }
}

@media (max-width: 600px) {
    .hero-v2 { padding: 6rem 5%; }
    .hero-v2 h1 { font-size: 2.5rem; }
    .section-padding { padding: 4.5rem 5%; }
}

@media (max-width: 500px) {
    .badge-trusted {
        position: static !important;
        margin-top: 1rem;
        text-align: center;
        width: 100%;
    }
}

.responsive-grid-2 {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
}

.responsive-grid-equal {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

@media (max-width: 992px) {
    .responsive-grid-2, .responsive-grid-equal {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Base text sizes already using clamp in style.css */

/* --- Product Cards --- */
.card-v2 .img-box {
    border-radius: 4px;
    background: var(--bg-soft);
    border: 1px solid var(--border);
}
.card-v2 h3 { font-size: 1.2rem; margin-top: 1rem; }
.card-v2 .price { color: var(--primary); font-weight: 900; }

/* Product Grid V3 - Enhanced */
.shop-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 4rem;
    align-items: start;
}

.shop-sidebar {
    position: sticky;
    top: 120px;
    background: var(--bg-soft);
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid var(--border);
}

.sidebar-title {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    margin-bottom: 2rem;
    font-weight: 700;
}

.category-list {
    list-style: none;
    padding: 0;
}

.category-list li {
    margin-bottom: 1.2rem;
}

.category-list li a {
    text-decoration: none;
    color: var(--text);
    font-size: 0.95rem;
    transition: 0.3s;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.category-list li a:hover {
    color: var(--primary);
    padding-left: 8px;
}

.category-list li a.active {
    color: var(--primary);
    font-weight: 700;
}

/* Card Premium V3 */
.products-v2 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 3rem;
}

@media (max-width: 768px) {
    .products-v2 {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.2rem;
    }
}

@media (max-width: 480px) {
    .products-v2 {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }
}

.card-premium {
    text-decoration: none;
    color: var(--text);
    display: block;
    background: #fff;
    border-radius: 12px;
    padding: 1rem;
    transition: 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid transparent;
}

.card-premium .img-box {
    width: 100%;
    aspect-ratio: 1/1;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    background: #fbfbfb;
    position: relative;
}

.card-premium .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.8s;
}

.card-premium .content-box {
    padding: 0.5rem;
}

.card-premium h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--secondary);
    transition: 0.3s;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.8rem;
}

.card-premium .price-tag {
    font-size: 1.2rem;
    color: var(--primary);
    font-weight: 900;
}

@media (max-width: 600px) {
    .card-premium { padding: 0.5rem; border-radius: 8px; }
    .card-premium .img-box { margin-bottom: 0.8rem; }
    .card-premium h3 { font-size: 0.9rem; min-height: 2.2rem; }
    .card-premium .price-tag { font-size: 1rem; }
}

.card-premium:hover {
    transform: translateY(-10px);
    border-color: var(--border);
    box-shadow: var(--shadow-premium);
}

.card-premium:hover h3 {
    color: var(--primary);
}

.card-premium:hover .img-box img {
    transform: scale(1.1);
}

/* Mobile Responsive Catalog */
@media (max-width: 1024px) {
    .shop-layout {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .shop-sidebar {
        position: sticky;
        top: 80px; 
        z-index: 100;
        background: #fff;
        padding: 1rem 0;
        border: none;
        border-radius: 0;
        margin: 0 -5vw 2.5rem; /* Better approach with vw */
        width: 100vw;
        padding-left: 5vw;
        border-bottom: 1px solid var(--border);
    }
    
    .sidebar-title { 
        font-size: 0.65rem;
        margin-bottom: 0.8rem;
        opacity: 0.6;
        text-transform: uppercase;
        letter-spacing: 1px;
    }
    
    .category-list {
        display: flex;
        overflow-x: auto;
        gap: 0.6rem;
        padding-bottom: 0.5rem;
        padding-right: 5vw;
        scrollbar-width: none;
        -ms-overflow-style: none;
        -webkit-overflow-scrolling: touch;
    }
    .category-list::-webkit-scrollbar { display: none; }
    
    .category-list li { margin-bottom: 0; flex-shrink: 0; }
    .category-list li a {
        background: var(--bg-soft);
        padding: 0.5rem 1rem;
        border-radius: 50px;
        border: 1px solid transparent;
        font-size: 0.8rem;
        font-weight: 500;
        color: var(--muted);
        white-space: nowrap;
        transition: 0.3s all;
    }
    .category-list li a.active {
        background: var(--primary);
        color: #fff;
        border-color: var(--primary);
        box-shadow: 0 5px 15px rgba(142, 28, 34, 0.15);
    }
    
    /* Catalog header cleanup */
    .section-padding[style*="text-align: center"] {
        padding-top: 3rem !important;
    }
    .section-padding[style*="text-align: center"] div[style*="margin-bottom: 6rem"] {
        margin-bottom: 2.5rem !important;
    }
}

/* Product Detail Grid */
.product-detail-grid {
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 6rem; 
    align-items: start;
}

@media (max-width: 992px) {
    .product-detail-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .product-detail-grid h1 {
        font-size: 2.5rem !important;
    }
}


/* WhatsApp Floating */
.wa-modern {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 70px;
    height: 70px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 35px;
    box-shadow: 0 20px 50px rgba(37, 211, 102, 0.3);
    z-index: 1000;
    text-decoration: none;
    transition: 0.4s;
}
.wa-modern:hover { transform: scale(1.1); }

/* Animations */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
.animate { animation: fadeInUp 0.8s ease forwards; }

/* Premium Footer */
footer {
    background: #1A1A1A;
    color: rgba(255,255,255,0.7);
    padding: 6rem 10% 2rem;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 6rem;
    margin-bottom: 6rem;
}

.footer-col h4 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

.footer-col p {
    font-size: 0.95rem;
    line-height: 1.8;
}

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

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links li a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: 0.3s;
    font-size: 0.95rem;
}

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

.contact-info {
    list-style: none;
    padding: 0;
}

.contact-info li {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.contact-info li i {
    color: var(--primary);
    font-size: 1.1rem;
    margin-top: 0.2rem;
}

.social-links {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
}

.social-links a {
    color: #fff;
    font-size: 1.2rem;
    transition: 0.3s;
}

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

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
}

.payment-icons {
    display: flex;
    gap: 1rem;
}

.payment-icons img {
    height: 30px;
    filter: grayscale(1) brightness(1.5);
    opacity: 0.6;
    transition: 0.3s;
}

.payment-icons img:hover {
    filter: none;
    opacity: 1;
}

@media (max-width: 900px) {
    .footer-grid { grid-template-columns: 1fr; gap: 4rem; }
    .footer-bottom { flex-direction: column; gap: 2rem; text-align: center; }
}

/* --- Contact Page Specific --- */
.contact-hero {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('../images/workshop.png');
    background-size: cover;
    background-position: center;
    padding: 8rem 2rem;
    text-align: center;
    color: #fff;
    border-radius: 30px;
    margin-bottom: -4rem;
    position: relative;
    z-index: 1;
}

.contact-hero h1 {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1rem;
    letter-spacing: -2px;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem 5rem;
    position: relative;
    z-index: 2;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.contact-card-premium {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 3rem;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.contact-card-premium:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.contact-info-item .icon-box {
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: #fff;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-info-item h4 {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.6;
    margin-bottom: 0.3rem;
}

.contact-info-item p, .contact-info-item a {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--secondary);
    text-decoration: none;
}

.contact-map {
    width: 100%;
    height: 450px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

@media (max-width: 992px) {
    .contact-hero h1 { font-size: 2.5rem; }
    .contact-grid { grid-template-columns: 1fr; }
    .contact-hero { padding: 5rem 1rem; }
    .contact-grid { grid-template-columns: 1fr; }
}

/* Member Area Responsive Styles */
.member-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 4rem;
    align-items: start;
}

.member-sidebar {
    position: sticky;
    top: 120px;
}

.member-sidebar-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    border: 1px solid #f0f0f0;
}

.member-sidebar ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.member-sidebar li {
    margin-bottom: 1.5rem;
}

.member-sidebar a {
    text-decoration: none;
    color: #64748b;
    font-weight: 700;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem 1.2rem;
    border-radius: 10px;
    transition: 0.3s;
}

.member-sidebar a:hover, .member-sidebar a.active {
    background: var(--primary);
    color: #fff;
}

.member-sidebar a i {
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.member-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.member-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
    border: 1px solid #f0f0f0;
}

.order-item-grid {
    display: grid;
    grid-template-columns: 120px 1fr auto;
    gap: 2.5rem;
    align-items: start;
    padding: 2.5rem 0;
    border-bottom: 1px solid #f1f5f9;
}

.order-product-img {
    width: 120px;
    height: 120px;
    background: #f9f9f9;
    border-radius: 16px;
    overflow: hidden;
    border: 1.5px solid #f0f0f0;
    flex-shrink: 0;
}

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

@media (max-width: 992px) {
    .member-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .member-sidebar {
        position: static;
        margin-bottom: 2rem;
    }
    .member-sidebar-card {
        padding: 1rem;
    }
    .member-sidebar ul {
        display: flex;
        flex-wrap: wrap;
        gap: 0.4rem;
    }
    .member-sidebar li {
        margin-bottom: 0;
    }
    .member-sidebar a {
        padding: 0.5rem 0.8rem;
        font-size: 0.75rem;
    }
    .order-item-grid {
        grid-template-columns: 100px 1fr;
        gap: 1.5rem;
    }
    .order-item-actions {
        grid-column: span 2;
        text-align: left !important;
        padding-top: 1rem;
        border-top: 1px dashed #f1f5f9;
    }
    .order-item-actions p {
        font-size: 1.5rem !important;
        margin-bottom: 1rem !important;
    }
}

@media (max-width: 600px) {
    .order-item-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .order-product-img {
        width: 100%;
        height: 200px;
    }
    .order-item-actions {
        grid-column: span 1;
    }
    .member-card {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .member-sidebar ul {
        justify-content: space-between;
    }
    .member-sidebar li {
        flex: 1;
    }
    .member-sidebar a {
        justify-content: center;
        text-align: center;
    }
}

