* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Segoe UI", Arial, sans-serif;
    background: #fff8fa;
    color: #1d1d1f;
}

a {
    text-decoration: none;
}

.container {
    width: 92%;
    max-width: 1200px;
    margin: auto;
}

.header {
    background: #ffffff;
    box-shadow: 0 8px 30px rgba(139, 15, 47, 0.08);
    position: sticky;
    top: 0;
    z-index: 99;
}

.navbar {
    height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-box {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-box img {
    height: 58px;
}

.logo-text {
    font-size: 24px;
    font-weight: 800;
    color: #7f0d2b;
}

.nav-links {
    display: flex;
    gap: 26px;
    align-items: center;
}

.nav-links a {
    color: #333;
    font-weight: 600;
}

.btn-primary {
    background: linear-gradient(135deg, #8b0f2f, #c51f4c);
    color: #fff !important;
    padding: 13px 22px;
    border-radius: 999px;
    font-weight: 700;
    display: inline-block;
    box-shadow: 0 10px 24px rgba(139, 15, 47, 0.25);
}

.btn-outline {
    border: 1px solid #8b0f2f;
    color: #8b0f2f;
    padding: 12px 20px;
    border-radius: 999px;
    font-weight: 700;
    display: inline-block;
}

.menu-btn {
    display: none;
    font-size: 28px;
    cursor: pointer;
}

.mobile-menu {
    display: none;
    background: #fff;
    padding: 18px;
}

.mobile-menu a {
    display: block;
    padding: 13px 0;
    color: #333;
    font-weight: 700;
}

.hero {
    padding: 75px 0;
    background:
        radial-gradient(circle at top right, rgba(197, 31, 76, 0.18), transparent 34%),
        linear-gradient(135deg, #fff5f8, #ffffff);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 42px;
    align-items: center;
}

.badge {
    display: inline-block;
    background: #ffe2ea;
    color: #8b0f2f;
    padding: 9px 18px;
    border-radius: 999px;
    font-weight: 800;
    margin-bottom: 18px;
}

.hero h1 {
    font-size: 52px;
    line-height: 1.12;
    color: #18181b;
    margin-bottom: 20px;
}

.hero h1 span {
    color: #8b0f2f;
}

.hero p {
    font-size: 18px;
    color: #555;
    line-height: 1.75;
    margin-bottom: 28px;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.hero-card {
    background: #fff;
    border-radius: 30px;
    padding: 28px;
    box-shadow: 0 25px 60px rgba(139, 15, 47, 0.13);
}

.hero-card img {
    width: 100%;
    max-height: 250px;
    object-fit: contain;
}

.order-box {
    margin-top: 20px;
    display: grid;
    gap: 12px;
}

.order-box div {
    background: #fff5f8;
    padding: 14px;
    border-radius: 16px;
    font-weight: 700;
    color: #7f0d2b;
}

.section {
    padding: 70px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 42px;
}

.section-title h2 {
    font-size: 38px;
    color: #18181b;
}

.section-title p {
    color: #666;
    margin-top: 10px;
}

.cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.card {
    background: #fff;
    padding: 28px;
    border-radius: 24px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-6px);
}

.card-icon {
    width: 56px;
    height: 56px;
    background: #ffe2ea;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8b0f2f;
    font-size: 26px;
    margin-bottom: 16px;
}

.card h3 {
    margin-bottom: 10px;
    color: #222;
}

.card p {
    color: #666;
    line-height: 1.6;
}

.delivery-section {
    background: #1d0b12;
    color: #fff;
}

.delivery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.delivery-card {
    background: rgba(255,255,255,0.08);
    padding: 28px;
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,0.12);
}

.delivery-card h3 {
    font-size: 24px;
    margin-bottom: 12px;
}

.price {
    font-size: 34px;
    font-weight: 900;
    color: #ffb3c7;
    margin: 15px 0;
}

.cta {
    background: linear-gradient(135deg, #8b0f2f, #c51f4c);
    color: #fff;
    text-align: center;
    padding: 70px 20px;
    border-radius: 34px;
}

.cta h2 {
    font-size: 38px;
    margin-bottom: 15px;
}

.footer {
    background: #12070b;
    color: #ccc;
    padding: 40px 0;
    margin-top: 60px;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.footer h3 {
    color: #fff;
    margin-bottom: 12px;
}

@media (max-width: 900px) {
    .nav-links {
        display: none;
    }

    .menu-btn {
        display: block;
    }

    .mobile-menu.show {
        display: block;
    }

    .hero {
        padding: 45px 0;
    }

    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero p {
        font-size: 16px;
    }

    .cards {
        grid-template-columns: 1fr;
    }

    .delivery-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        flex-direction: column;
    }

    .logo-text {
        font-size: 20px;
    }

    .logo-box img {
        height: 48px;
    }
}

.auth-wrapper{
    min-height:100vh;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:20px;
}

.auth-box{
    width:100%;
    max-width:450px;
    background:#fff;
    padding:30px;
    border-radius:25px;
    box-shadow:0 15px 50px rgba(0,0,0,.08);
}

.auth-box h2{
    margin-bottom:20px;
}

.auth-box input{
    width:100%;
    padding:15px;
    margin-bottom:15px;
    border:1px solid #ddd;
    border-radius:12px;
}

.auth-box button{
    width:100%;
    border:none;
    cursor:pointer;
}

.mobile-page {
    width: 94%;
    max-width: 1050px;
    margin: auto;
    padding: 22px 0 60px;
}

.page-top {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 22px;
}

.page-top h2 {
    color: #18181b;
    font-size: 30px;
}

.page-top p {
    color: #666;
    margin-top: 5px;
}

.back-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #ffe2ea;
    color: #8b0f2f;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
}

.success-msg {
    background: #e8fff2;
    color: #137a3a;
    padding: 14px 18px;
    border-radius: 14px;
    margin-bottom: 18px;
    font-weight: 700;
}

.premium-form-card {
    background: #fff;
    padding: 28px;
    border-radius: 28px;
    box-shadow: 0 18px 50px rgba(139, 15, 47, 0.09);
}

.premium-form-card label {
    display: block;
    font-weight: 800;
    color: #222;
    margin-bottom: 8px;
}

.premium-form-card input,
.premium-form-card textarea,
.premium-form-card select {
    width: 100%;
    padding: 15px;
    border: 1px solid #ead1d9;
    border-radius: 15px;
    margin-bottom: 15px;
    font-size: 15px;
    outline: none;
}

.premium-form-card input:focus,
.premium-form-card textarea:focus,
.premium-form-card select:focus {
    border-color: #8b0f2f;
    box-shadow: 0 0 0 4px rgba(139, 15, 47, 0.08);
}

.premium-form-card textarea {
    min-height: 110px;
    resize: vertical;
}

.measure-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.measure-grid small {
    display: block;
    color: #777;
    margin-top: -8px;
    margin-bottom: 10px;
}

.full-btn {
    width: 100%;
    border: none;
    cursor: pointer;
    text-align: center;
    margin-top: 10px;
}

.mini-title {
    margin: 28px 0 16px;
    color: #18181b;
}

.measurement-card {
    background: #fff;
    border-radius: 22px;
    padding: 20px;
    margin-bottom: 14px;
    box-shadow: 0 12px 35px rgba(0,0,0,0.06);
    border-left: 5px solid #8b0f2f;
}

.measurement-card h3 {
    color: #8b0f2f;
    margin-bottom: 8px;
}

.measurement-card p {
    color: #555;
    line-height: 1.6;
}

@media(max-width: 768px) {
    .measure-grid {
        grid-template-columns: 1fr;
        gap: 5px;
    }

    .premium-form-card {
        padding: 20px;
        border-radius: 22px;
    }

    .page-top h2 {
        font-size: 24px;
    }
}

.error-msg {
    background: #fff0f0;
    color: #b42318;
    padding: 14px 18px;
    border-radius: 14px;
    margin-bottom: 18px;
    font-weight: 700;
}

.warning-box {
    background: #fff7e6;
    color: #7a4b00;
    padding: 24px;
    border-radius: 22px;
    font-weight: 700;
    box-shadow: 0 12px 35px rgba(0,0,0,0.06);
}

.order-card {
    background: #fff;
    border-radius: 24px;
    padding: 22px;
    margin-bottom: 16px;
    box-shadow: 0 14px 40px rgba(0,0,0,0.06);
    border: 1px solid #f3d8e0;
}

.order-head {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 16px;
}

.order-head h3 {
    color: #8b0f2f;
    margin-bottom: 5px;
}

.order-head p,
.order-info p {
    color: #555;
    line-height: 1.7;
}

.status-pill {
    background: #ffe2ea;
    color: #8b0f2f;
    padding: 8px 13px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 800;
    white-space: nowrap;
}

.track-summary {
    background: linear-gradient(135deg, #8b0f2f, #c51f4c);
    color: #fff;
    padding: 24px;
    border-radius: 26px;
    box-shadow: 0 16px 45px rgba(139,15,47,0.25);
}

.track-summary h3 {
    font-size: 24px;
    margin-bottom: 12px;
}

.track-summary p {
    line-height: 1.8;
}

.image-preview-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin: 22px 0;
}

.image-preview-grid div {
    background: #fff;
    padding: 14px;
    border-radius: 20px;
    box-shadow: 0 12px 35px rgba(0,0,0,0.06);
}

.image-preview-grid img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 16px;
    margin-top: 8px;
}

.timeline {
    background: #fff;
    padding: 22px;
    border-radius: 26px;
    box-shadow: 0 14px 40px rgba(0,0,0,0.06);
}

.timeline-item {
    display: flex;
    gap: 14px;
    position: relative;
    padding-bottom: 24px;
    opacity: 0.45;
}

.timeline-item:not(:last-child)::before {
    content: "";
    position: absolute;
    left: 10px;
    top: 24px;
    width: 2px;
    height: calc(100% - 20px);
    background: #ead1d9;
}

.timeline-item.active {
    opacity: 1;
}

.timeline-item.active .dot {
    background: #8b0f2f;
    box-shadow: 0 0 0 6px rgba(139,15,47,0.12);
}

.dot {
    width: 22px;
    height: 22px;
    min-width: 22px;
    border-radius: 50%;
    background: #ddd;
    position: relative;
    z-index: 2;
}

.timeline-item h4 {
    color: #18181b;
    margin-bottom: 4px;
}

.timeline-item p {
    color: #666;
}

.log-card {
    background: #fff;
    padding: 16px;
    border-radius: 18px;
    margin-bottom: 12px;
    box-shadow: 0 10px 28px rgba(0,0,0,0.05);
}

.log-card h4 {
    color: #8b0f2f;
    margin-bottom: 5px;
}

.log-card p {
    color: #555;
    margin-bottom: 6px;
}

.log-card small {
    color: #888;
}

@media(max-width: 768px) {
    .order-head {
        flex-direction: column;
    }

    .image-preview-grid {
        grid-template-columns: 1fr;
    }

    .image-preview-grid img {
        height: 220px;
    }
}

.admin-layout {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 260px 1fr;
    background: #fff8fa;
}

.admin-sidebar {
    background: #16070d;
    color: #fff;
    padding: 26px 18px;
    position: sticky;
    top: 0;
    height: 100vh;
}

.admin-logo {
    font-size: 25px;
    font-weight: 900;
    margin-bottom: 28px;
    color: #ffb3c7;
}

.admin-sidebar a {
    display: block;
    padding: 14px 16px;
    color: #f5dbe2;
    border-radius: 14px;
    margin-bottom: 8px;
    font-weight: 700;
}

.admin-sidebar a.active,
.admin-sidebar a:hover {
    background: #8b0f2f;
    color: #fff;
}

.admin-main {
    padding: 28px;
    overflow-x: hidden;
}

.admin-top {
    background: #fff;
    border-radius: 26px;
    padding: 24px;
    margin-bottom: 22px;
    box-shadow: 0 12px 35px rgba(0,0,0,0.05);
}

.admin-top h2 {
    font-size: 30px;
    color: #18181b;
}

.admin-top p {
    color: #666;
    margin-top: 6px;
}

.admin-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.stat-card {
    background: linear-gradient(135deg, #fff, #fff0f4);
    padding: 24px;
    border-radius: 24px;
    box-shadow: 0 14px 38px rgba(139,15,47,0.08);
    border: 1px solid #f4d2dc;
}

.stat-card p {
    color: #666;
    font-weight: 700;
}

.stat-card h3 {
    font-size: 34px;
    color: #8b0f2f;
    margin-top: 10px;
}

.admin-table-wrap {
    overflow-x: auto;
    background: #fff;
    border-radius: 24px;
    padding: 16px;
    box-shadow: 0 14px 40px rgba(0,0,0,0.06);
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 850px;
}

.admin-table th,
.admin-table td {
    padding: 14px;
    border-bottom: 1px solid #f0d9df;
    text-align: left;
    font-size: 14px;
}

.admin-table th {
    background: #fff5f8;
    color: #8b0f2f;
    font-weight: 900;
}

.small-btn {
    background: #8b0f2f;
    color: #fff;
    padding: 8px 13px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 800;
    display: inline-block;
}

.filter-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}

.filter-row a {
    background: #fff;
    color: #8b0f2f;
    padding: 10px 15px;
    border-radius: 999px;
    font-weight: 800;
    box-shadow: 0 8px 20px rgba(0,0,0,0.04);
}

.admin-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-bottom: 18px;
}

.admin-panel-card {
    background: #fff;
    border-radius: 24px;
    padding: 22px;
    box-shadow: 0 14px 40px rgba(0,0,0,0.06);
    border: 1px solid #f4d2dc;
}

.admin-panel-card h3 {
    color: #8b0f2f;
    margin-bottom: 14px;
}

.admin-panel-card p {
    color: #555;
    line-height: 1.8;
}

.status-form label {
    display: block;
    font-weight: 800;
    margin-bottom: 8px;
}

.status-form select,
.status-form textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #ead1d9;
    border-radius: 14px;
    margin-bottom: 14px;
}

.status-form textarea {
    min-height: 100px;
}

.status-form button {
    border: none;
    cursor: pointer;
}

@media(max-width: 900px) {
    .admin-layout {
        grid-template-columns: 1fr;
    }

    .admin-sidebar {
        position: relative;
        height: auto;
    }

    .admin-main {
        padding: 18px;
    }

    .admin-stats,
    .admin-detail-grid {
        grid-template-columns: 1fr;
    }
}

.admin-hero {
    background:
        radial-gradient(circle at top right, rgba(255,255,255,0.22), transparent 30%),
        linear-gradient(135deg, #16070d, #8b0f2f);
    color: #fff;
    padding: 32px;
    border-radius: 30px;
    margin-bottom: 22px;
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: center;
    box-shadow: 0 20px 50px rgba(139,15,47,0.25);
}

.admin-badge {
    display: inline-block;
    background: rgba(255,255,255,0.16);
    color: #ffd6e1;
    padding: 8px 15px;
    border-radius: 999px;
    font-weight: 900;
    margin-bottom: 14px;
}

.admin-hero h1 {
    font-size: 36px;
    margin-bottom: 10px;
}

.admin-hero p {
    color: #ffe8ef;
    line-height: 1.6;
}

.admin-hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.premium-stats {
    margin-bottom: 18px;
}

.second-row {
    margin-bottom: 24px;
}

.premium-stat {
    position: relative;
    overflow: hidden;
}

.premium-stat::after {
    content: "";
    position: absolute;
    right: -30px;
    top: -30px;
    width: 100px;
    height: 100px;
    background: rgba(139,15,47,0.08);
    border-radius: 50%;
}

.stat-icon {
    width: 46px;
    height: 46px;
    background: #ffe2ea;
    color: #8b0f2f;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 12px;
}

.premium-stat small {
    color: #777;
    font-weight: 700;
}

.dark-stat {
    background: linear-gradient(135deg, #1d0b12, #36111f);
    color: #fff;
}

.dark-stat p,
.dark-stat small {
    color: #ffd6e1;
}

.dark-stat h3 {
    color: #fff;
}

.dark-stat .stat-icon {
    background: rgba(255,255,255,0.12);
    color: #ffb3c7;
}

.dashboard-grid {
    align-items: start;
}

.status-progress {
    margin-bottom: 18px;
}

.status-progress-top {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    font-weight: 800;
    color: #333;
    margin-bottom: 8px;
}

.progress-line {
    height: 10px;
    background: #ffe2ea;
    border-radius: 999px;
    overflow: hidden;
}

.progress-line div {
    height: 100%;
    background: linear-gradient(135deg, #8b0f2f, #c51f4c);
    border-radius: 999px;
}

.finance-list {
    display: grid;
    gap: 13px;
    margin-bottom: 18px;
}

.finance-list div {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    background: #fff5f8;
    padding: 14px;
    border-radius: 16px;
}

.finance-list span {
    color: #555;
    font-weight: 700;
}

.finance-list b {
    color: #8b0f2f;
}

.mini-activity {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 0;
    border-bottom: 1px solid #f0d9df;
}

.mini-activity:last-child {
    border-bottom: none;
}

.mini-activity b {
    color: #18181b;
}

.mini-activity p {
    color: #666;
    margin-top: 5px;
}

.mini-activity span {
    background: #ffe2ea;
    color: #8b0f2f;
    padding: 7px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
    height: fit-content;
}

@media(max-width: 900px) {
    .admin-hero {
        flex-direction: column;
        align-items: flex-start;
        padding: 24px;
    }

    .admin-hero h1 {
        font-size: 28px;
    }

    .admin-hero-actions {
        width: 100%;
    }

    .admin-hero-actions a {
        width: 100%;
        text-align: center;
    }
}

.customer-shell {
    width: 94%;
    max-width: 1180px;
    margin: auto;
    padding: 24px 0 90px;
}

.customer-hero {
    background:
        radial-gradient(circle at top right, rgba(255,255,255,0.28), transparent 34%),
        linear-gradient(135deg, #8b0f2f, #c51f4c);
    color: #fff;
    padding: 32px;
    border-radius: 32px;
    box-shadow: 0 22px 55px rgba(139,15,47,0.25);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    margin-bottom: 22px;
}

.customer-badge {
    display: inline-block;
    background: rgba(255,255,255,0.18);
    color: #ffe2ea;
    padding: 8px 15px;
    border-radius: 999px;
    font-weight: 900;
    margin-bottom: 14px;
}

.customer-hero h1 {
    font-size: 36px;
    margin-bottom: 10px;
}

.customer-hero p {
    color: #ffe8ef;
    line-height: 1.7;
}

.customer-hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.customer-hero .btn-outline {
    background: #fff;
}

.customer-alert {
    background: #fff7e6;
    border: 1px solid #ffe0a3;
    color: #704400;
    padding: 20px;
    border-radius: 24px;
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: center;
    margin-bottom: 22px;
    box-shadow: 0 12px 35px rgba(0,0,0,0.05);
}

.customer-alert h3 {
    margin-bottom: 6px;
}

.customer-alert p {
    line-height: 1.6;
}

.customer-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-bottom: 22px;
}

.customer-stat-card {
    background: #fff;
    padding: 24px;
    border-radius: 26px;
    box-shadow: 0 14px 40px rgba(0,0,0,0.06);
    border: 1px solid #f4d2dc;
    position: relative;
    overflow: hidden;
}

.customer-stat-card::after {
    content: "";
    position: absolute;
    right: -30px;
    top: -30px;
    width: 95px;
    height: 95px;
    background: rgba(139,15,47,0.07);
    border-radius: 50%;
}

.customer-stat-icon {
    width: 48px;
    height: 48px;
    background: #ffe2ea;
    color: #8b0f2f;
    border-radius: 17px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 12px;
}

.customer-stat-card p {
    color: #666;
    font-weight: 800;
}

.customer-stat-card h3 {
    color: #8b0f2f;
    font-size: 32px;
    margin-top: 8px;
}

.active-order-card {
    background: #1d0b12;
    color: #fff;
    padding: 26px;
    border-radius: 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    margin-bottom: 24px;
    box-shadow: 0 18px 45px rgba(0,0,0,0.16);
}

.active-order-card span {
    color: #ffb3c7;
    font-weight: 900;
}

.active-order-card h2 {
    margin: 8px 0;
}

.active-order-card p {
    color: #ffe8ef;
    line-height: 1.7;
}

.customer-action-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-bottom: 25px;
}

.customer-action-card {
    background: #fff;
    padding: 24px;
    border-radius: 26px;
    box-shadow: 0 14px 40px rgba(0,0,0,0.06);
    border: 1px solid #f4d2dc;
    color: #222;
    transition: 0.25s;
}

.customer-action-card:hover {
    transform: translateY(-5px);
}

.customer-action-card div {
    width: 54px;
    height: 54px;
    background: #ffe2ea;
    color: #8b0f2f;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 14px;
}

.customer-action-card h3 {
    margin-bottom: 8px;
    color: #18181b;
}

.customer-action-card p {
    color: #666;
    line-height: 1.6;
}

.bottom-nav {
    display: none;
}

@media(max-width: 900px) {
    .customer-shell {
        width: 92%;
        padding-top: 16px;
    }

    .customer-hero {
        flex-direction: column;
        align-items: flex-start;
        padding: 24px;
        border-radius: 26px;
    }

    .customer-hero h1 {
        font-size: 28px;
    }

    .customer-hero-actions {
        width: 100%;
    }

    .customer-hero-actions a {
        width: 100%;
        text-align: center;
    }

    .customer-alert {
        flex-direction: column;
        align-items: flex-start;
    }

    .customer-alert a {
        width: 100%;
        text-align: center;
    }

    .customer-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .customer-stat-card {
        padding: 18px;
        border-radius: 22px;
    }

    .customer-stat-card h3 {
        font-size: 25px;
    }

    .active-order-card {
        flex-direction: column;
        align-items: flex-start;
        padding: 22px;
    }

    .active-order-card a {
        width: 100%;
        text-align: center;
    }

    .customer-action-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .bottom-nav {
        position: fixed;
        left: 12px;
        right: 12px;
        bottom: 12px;
        background: #fff;
        border-radius: 24px;
        padding: 10px;
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        box-shadow: 0 15px 45px rgba(0,0,0,0.16);
        z-index: 999;
        border: 1px solid #f4d2dc;
    }

    .bottom-nav a {
        text-align: center;
        color: #777;
        font-size: 18px;
        font-weight: 800;
    }

    .bottom-nav a span {
        display: block;
        font-size: 11px;
        margin-top: 3px;
    }

    .bottom-nav a.active {
        color: #8b0f2f;
    }
}
.profile-layout {
    display: grid;
    grid-template-columns: 330px 1fr;
    gap: 22px;
    align-items: start;
}

.profile-card {
    background: #fff;
    padding: 26px;
    border-radius: 28px;
    box-shadow: 0 14px 40px rgba(0,0,0,0.06);
    border: 1px solid #f4d2dc;
    text-align: center;
}

.profile-avatar {
    width: 120px;
    height: 120px;
    margin: 0 auto 16px;
}

.profile-avatar img,
.avatar-placeholder {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    background: linear-gradient(135deg, #8b0f2f, #c51f4c);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 44px;
    font-weight: 900;
    box-shadow: 0 12px 30px rgba(139,15,47,0.25);
}

.profile-card h3 {
    color: #18181b;
    font-size: 24px;
    margin-bottom: 8px;
}

.profile-card p {
    color: #666;
    line-height: 1.7;
}

.profile-address-box {
    margin-top: 20px;
    background: #fff5f8;
    padding: 16px;
    border-radius: 18px;
    text-align: left;
}

.profile-address-box b {
    color: #8b0f2f;
    display: block;
    margin-bottom: 8px;
}

.profile-address-box span {
    color: #444;
    display: block;
    line-height: 1.6;
}

.profile-address-box small {
    display: block;
    color: #777;
    margin-top: 6px;
}

@media(max-width: 900px) {
    .profile-layout {
        grid-template-columns: 1fr;
    }

    .profile-card {
        padding: 22px;
    }
}