* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --red-dark: #8b0000;
    --red-bright: #d62828;
    --cream: #fff8f0;
    --text: #1a1a1a;
    --text-light: #444;
    --white: #ffffff;
    --font-heading: 'Poppins', Arial, sans-serif;
    --font-body: 'Merriweather', Georgia, serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--cream);
    color: var(--text);
    line-height: 1.7;
    font-size: clamp(1rem, 2.5vw, 1.125rem);
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    animation: pageIn 0.4s ease;
}

@keyframes pageIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

main {
    flex: 1;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Navigation */
header {
    background: var(--red-dark);
    padding: 16px 20px;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

nav {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    width: 100%;
    min-height: 44px;
    padding-right: 52px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
}

.nav-links li {
    display: flex;
}

.nav-link {
    font-family: var(--font-heading);
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: clamp(0.9rem, 2.5vw, 1rem);
    padding: 10px 18px;
    border-radius: 25px;
    transition: background 0.25s, color 0.25s, transform 0.2s;
    display: inline-block;
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-1px);
}

.nav-link.active {
    background: var(--white);
    color: var(--red-dark);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.6rem;
    cursor: pointer;
    padding: 4px 8px;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.cart-icon-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    color: var(--white);
    text-decoration: none;
    border-radius: 50%;
    transition: background 0.2s, color 0.2s;
}

.nav-icons {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    gap: 2px;
}

.cart-icon-link:hover {
    background: rgba(255, 255, 255, 0.15);
}

.cart-icon-link.active {
    background: var(--white);
    color: var(--red-dark);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.cart-icon-link svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.user-icon-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    color: var(--white);
    text-decoration: none;
    border-radius: 50%;
    transition: background 0.2s, color 0.2s;
}

.user-icon-link:hover {
    background: rgba(255, 255, 255, 0.15);
}

.user-icon-link.active,
.user-icon-link.logged-in {
    background: var(--white);
    color: var(--red-dark);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.user-icon-link svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

/* Hero */
.hero {
    min-height: clamp(320px, 50vh, 480px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 60px 24px;
    background: linear-gradient(135deg, var(--red-bright), var(--red-dark));
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 80%, rgba(255,255,255,0.08) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255,255,255,0.06) 0%, transparent 40%);
    pointer-events: none;
}

.hero > * {
    position: relative;
    z-index: 1;
}

.hero-badge {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 18px;
    border-radius: 20px;
    margin-bottom: 20px;
    animation: fadeUp 0.6s ease;
}

.hero h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 6vw, 3rem);
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    animation: fadeUp 0.6s ease 0.1s both;
}

.hero p {
    font-size: clamp(1rem, 3vw, 1.25rem);
    max-width: 500px;
    opacity: 0.95;
    animation: fadeUp 0.6s ease 0.2s both;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 28px;
    animation: fadeUp 0.6s ease 0.3s both;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-full {
    min-height: calc(100vh - 280px);
}

.order-btn,
.secondary-btn {
    padding: 14px 32px;
    border-radius: 30px;
    font-family: var(--font-heading);
    font-size: clamp(0.95rem, 2.5vw, 1.1rem);
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
    text-decoration: none;
    display: inline-block;
}

.order-btn {
    background: var(--white);
    color: var(--red-dark);
    border: 2px solid var(--white);
}

.order-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.secondary-btn {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.7);
}

.secondary-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
}

/* Features strip (home) */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    padding: 50px 24px;
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
}

.feature-card {
    background: var(--white);
    padding: 28px 20px;
    border-radius: 14px;
    text-align: center;
    box-shadow: 0 4px 16px rgba(139, 0, 0, 0.08);
    transition: transform 0.2s, box-shadow 0.2s;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(139, 0, 0, 0.12);
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 12px;
}

.feature-card h3 {
    font-family: var(--font-heading);
    color: var(--red-dark);
    font-size: 1.05rem;
    margin-bottom: 8px;
}

.feature-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Product spotlight (home) */
.product-spotlight {
    background: var(--white);
    padding: clamp(50px, 8vw, 70px) 24px;
}

.spotlight-inner {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.spotlight-image {
    position: relative;
    aspect-ratio: 1;
    border-radius: 16px;
    overflow: hidden;
    background: linear-gradient(145deg, #ffe8e0, #ffd0c0);
    display: flex;
    align-items: center;
    justify-content: center;
}

.spotlight-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.spotlight-image .image-placeholder {
    font-size: 5rem;
    display: none;
}

.spotlight-info {
    text-align: left;
}

.spotlight-info h2 {
    font-family: var(--font-heading);
    color: var(--red-dark);
    font-size: clamp(1.4rem, 4vw, 1.8rem);
    margin-bottom: 8px;
}

.spotlight-info h3 {
    font-family: var(--font-heading);
    color: var(--text);
    font-size: clamp(1.1rem, 3vw, 1.35rem);
    margin-bottom: 12px;
}

.spotlight-price {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 4vw, 2rem);
    color: var(--red-bright);
    font-weight: 700;
    margin-bottom: 16px;
}

.spotlight-price span {
    font-size: 0.95rem;
    color: var(--text-light);
    font-weight: 400;
}

.spotlight-desc {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 16px;
}

.spotlight-perks {
    list-style: none;
    margin-bottom: 24px;
}

.spotlight-perks li {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    color: var(--text);
    padding: 6px 0 6px 24px;
    position: relative;
}

.spotlight-perks li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--red-bright);
    font-weight: 700;
}

.spotlight-order-btn {
    background: #1a1a1a !important;
    color: var(--white) !important;
    border: 2px solid #1a1a1a !important;
}

.spotlight-order-btn:hover {
    background: #333 !important;
    border-color: #333 !important;
}

/* Serve with section */
.serve-with {
    padding: clamp(50px, 8vw, 70px) 24px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.serve-with h2 {
    font-family: var(--font-heading);
    color: var(--red-dark);
    font-size: clamp(1.5rem, 4vw, 2rem);
    margin-bottom: 0;
}

.serve-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 16px;
    margin: 28px 0 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.serve-item {
    background: var(--white);
    padding: 20px 12px;
    border-radius: 12px;
    box-shadow: 0 4px 14px rgba(139, 0, 0, 0.08);
    transition: transform 0.2s;
}

.serve-item:hover {
    transform: translateY(-3px);
}

.serve-item span {
    font-size: 2rem;
    display: block;
    margin-bottom: 8px;
}

.serve-item p {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    color: var(--red-dark);
    font-weight: 600;
    margin: 0;
}

.serve-cta {
    border: 2px solid var(--red-dark) !important;
    color: var(--red-dark) !important;
    background: transparent !important;
    display: inline-block;
    padding: 14px 32px;
    border-radius: 30px;
    font-family: var(--font-heading);
    font-weight: 700;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
}

.serve-cta:hover {
    background: rgba(139, 0, 0, 0.08) !important;
    transform: translateY(-2px);
}

/* Bestseller tag */
.bestseller-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--red-bright);
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.inline-tag {
    position: static;
    display: inline-block;
    margin-bottom: 8px;
}

.card-tag {
    top: 16px;
    left: 16px;
}

/* Product CTA banner */
.product-cta-banner {
    width: 100%;
    max-width: 560px;
    margin-top: 32px;
    padding: 24px;
    background: linear-gradient(135deg, var(--red-bright), var(--red-dark));
    border-radius: 14px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    text-align: left;
    box-shadow: 0 6px 24px rgba(139, 0, 0, 0.2);
}

.product-cta-text h3 {
    font-family: var(--font-heading);
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.product-cta-text p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    margin-bottom: 0 !important;
    text-align: left;
}

.product-cta-btn {
    background: var(--white) !important;
    color: var(--red-dark) !important;
    border: none !important;
    white-space: nowrap;
    margin-top: 0 !important;
    padding: 12px 24px !important;
}

.contact-product-banner {
    margin-top: 0;
    margin-bottom: 28px;
}

/* Product page extras */
.product-card {
    position: relative;
}

.serve-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin: 12px 0;
}

.serve-tags span {
    font-family: var(--font-heading);
    font-size: 0.78rem;
    background: var(--cream);
    color: var(--red-dark);
    padding: 6px 12px;
    border-radius: 20px;
    font-weight: 600;
}

.package-pricing {
    width: 100%;
    margin: 12px 0 4px;
    padding: 14px;
    background: var(--cream);
    border-radius: 10px;
}

.package-pricing-label {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 8px !important;
}

.package-prices {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.package-prices span {
    font-family: var(--font-heading);
    font-size: 0.88rem;
    color: var(--red-dark);
    font-weight: 600;
}

/* Floating help / concern button */
.floating-help-btn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 90;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    background: var(--red-dark);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.floating-help-btn svg {
    width: 28px;
    height: 28px;
    fill: currentColor;
}

.floating-help-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
    background: var(--red-bright);
}

.concern-modal-box {
    text-align: left;
}

.concern-modal-box h3,
.concern-modal-box .modal-subtitle {
    text-align: center;
}

.concern-modal-box .form-group {
    margin-bottom: 16px;
}

.concern-modal-box .form-group label {
    display: block;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 8px;
    color: var(--text);
}

.concern-modal-box .form-group input,
.concern-modal-box .form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid rgba(139, 0, 0, 0.2);
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text);
    background: var(--cream);
}

.concern-modal-box .form-group input:focus,
.concern-modal-box .form-group textarea:focus {
    outline: none;
    border-color: var(--red-bright);
    background: var(--white);
}

.concern-modal-box .concern-success {
    text-align: center;
    margin-top: 0;
}

.content-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: clamp(40px, 8vw, 70px) 20px;
    width: 100%;
    min-height: calc(100vh - 200px);
}

.page-about {
    background: var(--cream);
}

.page-products {
    background: #fff5f0;
}

.page-contact {
    background: var(--white);
}

.section-inner {
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-inner h2 {
    font-family: var(--font-heading);
    color: var(--red-dark);
    margin-bottom: 12px;
    font-size: clamp(1.6rem, 5vw, 2.25rem);
    font-weight: 700;
    width: 100%;
}

.section-subtitle {
    color: var(--text-light);
    font-size: clamp(0.95rem, 2.5vw, 1.05rem);
    max-width: 520px;
    margin-bottom: 32px;
}

.section-inner > p:not(.section-subtitle) {
    color: var(--text-light);
    font-size: clamp(1rem, 2.5vw, 1.125rem);
    max-width: 580px;
    margin-bottom: 12px;
    line-height: 1.8;
}

.title-underline {
    width: 60px;
    height: 4px;
    background: var(--red-bright);
    border-radius: 2px;
    margin: 0 auto 24px;
}

/* Product */
.product-card {
    background: var(--white);
    width: 100%;
    max-width: 340px;
    margin: 10px auto 0;
    padding: clamp(20px, 4vw, 28px);
    border-radius: 16px;
    box-shadow: 0 6px 24px rgba(139, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.25s, box-shadow 0.25s;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(139, 0, 0, 0.15);
}

.product-image {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 12px;
    margin-bottom: 18px;
    overflow: hidden;
    background: linear-gradient(145deg, #ffe8e0, #ffd0c0);
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.image-placeholder {
    font-size: 4rem;
    line-height: 1;
}

.product-card h3 {
    font-family: var(--font-heading);
    color: var(--red-dark);
    margin-bottom: 12px;
    font-size: clamp(1.1rem, 3vw, 1.35rem);
    font-weight: 700;
}

.product-card p {
    color: var(--text-light);
    margin-bottom: 8px;
}

.product-card h4 {
    font-family: var(--font-heading);
    color: var(--red-bright);
    margin-top: 16px;
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    font-weight: 700;
}

.product-card .order-btn {
    margin-top: 20px;
    width: 100%;
    background: #1a1a1a;
    color: var(--white);
    border: 2px solid #1a1a1a;
}

.product-card .order-btn:hover {
    background: #333;
    border-color: #333;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.product-card .order-btn:active {
    transform: translateY(0);
    background: #000;
}

/* Cart badge */
.cart-badge {
    position: absolute;
    top: 2px;
    right: 2px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    background: var(--red-bright);
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: 9px;
    border: 2px solid var(--red-dark);
}

.cart-badge[hidden] {
    display: none;
}

/* Cart page */
.page-cart {
    background: #fff5f0;
}

.cart-section {
    max-width: 560px !important;
}

.cart-empty {
    margin-top: 24px;
}

.cart-empty p {
    margin-bottom: 20px;
    color: var(--text-light);
}

.cart-items {
    width: 100%;
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    background: var(--white);
    padding: 20px;
    border-radius: 14px;
    box-shadow: 0 4px 16px rgba(139, 0, 0, 0.08);
    text-align: left;
}

.cart-item-info h3 {
    font-family: var(--font-heading);
    color: var(--red-dark);
    font-size: 1rem;
    margin-bottom: 6px;
}

.cart-item-info p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 4px !important;
    text-align: left;
}

.cart-item-total-pcs {
    font-family: var(--font-heading);
    color: var(--red-bright) !important;
    font-weight: 600;
    font-size: 0.85rem !important;
}

.cart-remove {
    background: none;
    border: none;
    color: var(--red-dark);
    font-size: 1.1rem;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 6px;
    transition: background 0.2s;
    flex-shrink: 0;
}

.cart-remove:hover {
    background: rgba(139, 0, 0, 0.1);
}

.cart-summary {
    width: 100%;
    margin-top: 28px;
    padding-top: 24px;
    border-top: 2px solid rgba(139, 0, 0, 0.15);
}

.cart-summary-total {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--red-dark);
    margin-bottom: 20px !important;
}

.cart-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.cart-clear-btn {
    border: 2px solid var(--red-dark) !important;
    color: var(--red-dark) !important;
    background: transparent !important;
    padding: 12px 24px !important;
    margin-top: 0 !important;
}

.cart-clear-btn:hover {
    background: rgba(139, 0, 0, 0.08) !important;
}

.cart-actions .order-btn {
    margin-top: 0;
    flex: 1;
    min-width: 160px;
    text-align: center;
}

.cart-checkout-btn {
    background: #1a1a1a !important;
    color: var(--white) !important;
    border: 2px solid #1a1a1a !important;
}

.cart-checkout-btn:hover {
    background: #333 !important;
    border-color: #333 !important;
}

/* Checkout page */
.page-checkout {
    background: #fff5f0;
}

.checkout-section {
    max-width: 560px !important;
}

.checkout-order-summary {
    width: 100%;
    background: var(--white);
    padding: 24px;
    border-radius: 14px;
    box-shadow: 0 4px 16px rgba(139, 0, 0, 0.08);
    margin-bottom: 28px;
    text-align: left;
}

.checkout-order-summary h3 {
    font-family: var(--font-heading);
    color: var(--red-dark);
    font-size: 1.1rem;
    margin-bottom: 16px;
    text-align: center;
}

.checkout-items-list {
    list-style: none;
    margin-bottom: 16px;
}

.checkout-items-list li {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(139, 0, 0, 0.1);
    font-size: 0.9rem;
    color: var(--text-light);
}

.checkout-items-list li strong {
    color: var(--red-dark);
    font-family: var(--font-heading);
    white-space: nowrap;
}

.checkout-totals p {
    font-family: var(--font-heading);
    color: var(--text);
    font-size: 0.95rem;
    margin-bottom: 6px !important;
    text-align: left;
}

.checkout-grand-total {
    font-size: 1.15rem !important;
    color: var(--red-dark) !important;
    margin-top: 10px !important;
    padding-top: 12px;
    border-top: 2px solid rgba(139, 0, 0, 0.15);
}

.checkout-form {
    width: 100%;
    background: var(--white);
    padding: 28px 24px;
    border-radius: 14px;
    box-shadow: 0 4px 16px rgba(139, 0, 0, 0.08);
    text-align: left;
}

.checkout-form h3 {
    font-family: var(--font-heading);
    color: var(--red-dark);
    font-size: 1.2rem;
    margin-bottom: 6px;
    text-align: center;
}

.form-note {
    text-align: center;
    font-size: 0.88rem;
    color: var(--text-light);
    margin-bottom: 24px !important;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid rgba(139, 0, 0, 0.2);
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text);
    background: var(--cream);
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--red-bright);
    background: var(--white);
}

.form-group input:invalid:not(:placeholder-shown),
.form-group textarea:invalid:not(:placeholder-shown) {
    border-color: var(--red-bright);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.checkout-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.checkout-back-btn {
    flex: 1;
    min-width: 140px;
    text-align: center;
    border: 2px solid var(--red-dark) !important;
    color: var(--red-dark) !important;
    background: transparent !important;
    padding: 12px 24px !important;
}

.checkout-back-btn:hover {
    background: rgba(139, 0, 0, 0.08) !important;
}

.checkout-submit-btn {
    flex: 1;
    min-width: 140px;
    margin-top: 0 !important;
    background: #1a1a1a !important;
    color: var(--white) !important;
    border: 2px solid #1a1a1a !important;
}

.checkout-submit-btn:hover {
    background: #333 !important;
    border-color: #333 !important;
}

.checkout-success {
    width: 100%;
    background: var(--white);
    padding: 40px 28px;
    border-radius: 14px;
    box-shadow: 0 4px 16px rgba(139, 0, 0, 0.08);
    text-align: center;
}

.success-icon {
    width: 64px;
    height: 64px;
    background: #1a1a1a;
    color: var(--white);
    font-size: 2rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.checkout-success h3 {
    font-family: var(--font-heading);
    color: var(--red-dark);
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.checkout-success > p {
    color: var(--text-light);
    margin-bottom: 24px !important;
}

.success-summary {
    background: var(--cream);
    padding: 20px;
    border-radius: 10px;
    text-align: left;
    margin-bottom: 24px;
}

.success-summary p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 8px !important;
    line-height: 1.6;
}

.success-summary strong {
    color: var(--red-dark);
}


/* Order Modal */
.order-modal {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.order-modal[hidden] {
    display: none;
}

.modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
}

.modal-box {
    position: relative;
    background: var(--white);
    border-radius: 18px;
    padding: 32px 28px;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
    animation: modalIn 0.3s ease;
}

@keyframes modalIn {
    from {
        opacity: 0;
        transform: scale(0.95) translateY(10px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    background: none;
    border: none;
    font-size: 1.2rem;
    color: var(--text-light);
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 6px;
    transition: background 0.2s;
}

.modal-close:hover {
    background: rgba(0, 0, 0, 0.06);
}

.modal-box h3 {
    font-family: var(--font-heading);
    color: var(--red-dark);
    font-size: 1.35rem;
    margin-bottom: 6px;
    text-align: center;
}

.modal-subtitle {
    color: var(--text-light);
    font-size: 0.9rem;
    text-align: center;
    margin-bottom: 24px !important;
}

.order-type-select {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 24px;
}

.order-type-btn {
    padding: 12px 16px;
    border: 2px solid rgba(139, 0, 0, 0.2);
    background: var(--cream);
    color: var(--red-dark);
    border-radius: 10px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.2s;
}

.order-type-btn:hover {
    border-color: var(--red-bright);
}

.order-type-btn.active {
    background: var(--red-dark);
    color: var(--white);
    border-color: var(--red-dark);
}

.order-options {
    margin-bottom: 24px;
}

.option-label,
.qty-label {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    color: var(--text);
    margin-bottom: 10px;
    font-weight: 600;
}

.package-sizes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 20px;
}

.package-size-btn {
    padding: 14px 10px;
    border: 2px solid rgba(139, 0, 0, 0.2);
    background: var(--cream);
    color: var(--red-dark);
    border-radius: 10px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.2s;
}

.package-size-btn:hover {
    border-color: var(--red-bright);
}

.package-size-btn.active {
    background: var(--red-bright);
    color: var(--white);
    border-color: var(--red-bright);
}

.qty-input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid rgba(139, 0, 0, 0.2);
    border-radius: 10px;
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--text);
}

.qty-input:focus {
    outline: none;
    border-color: var(--red-bright);
}

.modal-add-btn {
    width: 100%;
    margin-top: 0 !important;
}

/* Cart toast */
.cart-toast {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%) translateY(80px);
    background: var(--red-dark);
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 600;
    padding: 14px 28px;
    border-radius: 30px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.2);
    z-index: 300;
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
    pointer-events: none;
}

.cart-toast.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}


/* Contact cards */
.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    width: 100%;
    max-width: 600px;
    margin-top: 24px;
}

.contact-card {
    background: var(--white);
    padding: 28px 20px;
    border-radius: 14px;
    text-decoration: none;
    color: var(--text);
    border: 2px solid var(--red-dark);
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s, background 0.2s;
    box-shadow: 0 2px 8px rgba(139, 0, 0, 0.08);
    display: block;
    text-align: center;
}

a.contact-card {
    cursor: pointer;
}

.contact-card:hover {
    transform: translateY(-4px);
    border-color: var(--red-bright);
    background: #fff5f0;
    box-shadow: 0 8px 22px rgba(139, 0, 0, 0.15);
}

.contact-card .contact-icon {
    font-size: 2rem;
    margin-bottom: 10px;
}

.contact-card h3 {
    font-family: var(--font-heading);
    color: var(--red-dark);
    font-size: 1rem;
    margin-bottom: 6px;
}

.contact-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 0 !important;
}

/* Footer */
footer {
    background: var(--red-dark);
    color: var(--white);
    text-align: center;
    padding: clamp(28px, 5vw, 40px) 20px;
    margin-top: auto;
}

footer p {
    font-family: var(--font-heading);
    font-size: clamp(0.9rem, 2.5vw, 1rem);
    margin-bottom: 8px;
}

.footer-content {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 900px;
    margin: 0 auto 20px;
    min-height: 50px;
}

.footer-social {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    color: var(--white);
    text-decoration: none;
    border-radius: 50%;
    transition: transform 0.2s, background 0.2s;
}

.social-icon:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.social-icon svg {
    width: 26px;
    height: 26px;
    fill: currentColor;
}

.developer {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    font-size: clamp(0.85rem, 2vw, 0.95rem);
    opacity: 0.9;
    font-weight: 400;
}

/* Tablet */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    nav {
        flex-wrap: wrap;
        padding-right: 100px;
    }

    .menu-toggle {
        right: 100px;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        margin-top: 16px;
        gap: 4px;
    }

    .nav-links.open {
        display: flex;
    }

    .nav-link {
        width: 100%;
        text-align: center;
    }
}

/* Phone */
@media (max-width: 480px) {
    header {
        padding: 14px 16px;
    }

    .nav-links {
        gap: 4px;
    }

    .nav-link {
        padding: 10px 14px;
        font-size: 0.9rem;
    }

    .hero {
        padding: 48px 16px;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
        max-width: 280px;
    }

    .order-btn,
    .secondary-btn {
        width: 100%;
        text-align: center;
    }

    .features {
        padding: 36px 16px;
    }

    .content-section {
        padding: 36px 16px;
    }

    .product-card {
        max-width: 100%;
    }

    .footer-content {
        flex-direction: column;
        gap: 20px;
        padding-left: 0;
    }

    .footer-social {
        flex-direction: row;
        justify-content: center;
        width: 100%;
        padding-left: 0;
    }

    .cart-actions {
        flex-direction: column;
    }

    .cart-actions .order-btn,
    .cart-clear-btn {
        width: 100%;
    }

    .checkout-actions {
        flex-direction: column;
    }

    .checkout-back-btn,
    .checkout-submit-btn {
        width: 100%;
    }

    .modal-box {
        padding: 28px 20px;
    }
}

/* Large screens */
@media (min-width: 1200px) {
    nav,
    .section-inner,
    .features,
    .spotlight-inner {
        max-width: 900px;
    }
}

@media (max-width: 768px) {
    .spotlight-inner {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .spotlight-info {
        text-align: center;
    }

    .spotlight-perks li {
        text-align: left;
    }

    .spotlight-order-btn {
        width: 100%;
        text-align: center;
    }

    .product-cta-banner {
        flex-direction: column;
        text-align: center;
    }

    .product-cta-text p {
        text-align: center;
    }

    .product-cta-btn {
        width: 100%;
        text-align: center;
    }

    .floating-help-btn {
        bottom: 16px;
        right: 16px;
        width: 48px;
        height: 48px;
    }

    .floating-help-btn svg {
        width: 24px;
        height: 24px;
    }
}

/* Product stock */
.product-stock {
    font-family: var(--font-heading);
    font-size: 0.88rem;
    font-weight: 600;
    margin: 8px 0 12px;
    padding: 6px 14px;
    border-radius: 20px;
    display: inline-block;
}

.product-stock.in-stock {
    background: #e8f5e9;
    color: #2e7d32;
}

.product-stock.low-stock {
    background: #fff3e0;
    color: #e65100;
}

.product-stock.out-of-stock {
    background: #ffebee;
    color: #c62828;
}

.product-card .order-btn:disabled {
    background: #999 !important;
    border-color: #999 !important;
    cursor: not-allowed;
    transform: none !important;
    box-shadow: none !important;
}

/* Concern form */
.concern-section {
    width: 100%;
    max-width: 560px;
    margin-top: 40px;
    text-align: center;
}

.concern-section h3 {
    font-family: var(--font-heading);
    color: var(--red-dark);
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.concern-form {
    margin-top: 16px;
    text-align: left;
}

.concern-success {
    margin-top: 16px;
    padding: 14px;
    background: #e8f5e9;
    color: #2e7d32;
    border-radius: 10px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
}

/* Admin panel */
.admin-login-page,
.admin-body {
    background: #f5f0eb;
    animation: none;
    min-height: 100vh;
}

.admin-login-brand {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--red-dark);
    margin-bottom: 20px;
    font-size: 1rem;
}

.admin-login {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.admin-login-box {
    background: var(--white);
    padding: 40px 32px;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    width: 100%;
    max-width: 400px;
    text-align: center;
}

.admin-login-box h1 {
    font-family: var(--font-heading);
    color: var(--red-dark);
    font-size: 1.5rem;
    margin-bottom: 6px;
}

.admin-login-box > p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 28px;
}

.admin-login-btn {
    width: 100%;
    margin-top: 8px !important;
    background: #1a1a1a !important;
    color: var(--white) !important;
    border: 2px solid #1a1a1a !important;
}

.login-error {
    color: var(--red-bright);
    font-size: 0.85rem;
    margin-top: 12px;
    font-family: var(--font-heading);
}

.admin-back-link {
    display: inline-block;
    margin-top: 20px;
    color: var(--text-light);
    font-family: var(--font-heading);
    font-size: 0.9rem;
    text-decoration: none;
}

.admin-back-link:hover {
    color: var(--red-dark);
}

/* Admin layout with sidebar */
.admin-layout {
    display: flex;
    min-height: 100vh;
}

.admin-sidebar {
    width: 240px;
    min-width: 240px;
    background: var(--red-dark);
    color: var(--white);
    display: flex;
    flex-direction: column;
    position: sticky;
    top: 0;
    height: 100vh;
    overflow-y: auto;
}

.sidebar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 24px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.sidebar-brand span {
    font-size: 1.8rem;
}

.sidebar-brand strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 1rem;
}

.sidebar-brand small {
    font-size: 0.75rem;
    opacity: 0.8;
}

.sidebar-nav {
    flex: 1;
    padding: 16px 12px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.sidebar-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 10px;
    transition: background 0.2s, color 0.2s;
}

.sidebar-link:hover,
.sidebar-link.active {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
}

.sidebar-link.active {
    background: var(--white);
    color: var(--red-dark);
}

.sidebar-icon {
    font-size: 1.1rem;
}

.nav-badge {
    margin-left: auto;
    background: var(--red-bright);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 10px;
}

.sidebar-link.active .nav-badge {
    background: var(--red-bright);
    color: var(--white);
}

.sidebar-footer {
    padding: 16px 12px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sidebar-view-site {
    font-size: 0.85rem;
}

.sidebar-logout {
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    border-radius: 10px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: background 0.2s;
}

.sidebar-logout:hover {
    background: rgba(255, 255, 255, 0.2);
}

.admin-main {
    flex: 1;
    padding: 32px 28px 60px;
    overflow-x: hidden;
}

.admin-page-header {
    margin-bottom: 28px;
}

.admin-page-header h1 {
    font-family: var(--font-heading);
    color: var(--red-dark);
    font-size: 1.75rem;
    margin-bottom: 6px;
}

.admin-page-header p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.admin-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 16px;
    margin-bottom: 32px;
}

.admin-stat-card {
    background: var(--white);
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
    border-left: 4px solid var(--red-bright);
}

.stat-label {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.admin-stat-card strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--red-dark);
    margin: 6px 0;
}

.stat-unit {
    font-size: 0.8rem;
    color: var(--text-light);
}

.admin-quick-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
}

.admin-quick-card {
    background: var(--white);
    padding: 24px 20px;
    border-radius: 14px;
    text-decoration: none;
    color: var(--text);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
    border: 2px solid transparent;
    transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
    text-align: left;
}

.admin-quick-card:hover {
    transform: translateY(-4px);
    border-color: var(--red-bright);
    box-shadow: 0 8px 24px rgba(139, 0, 0, 0.12);
}

.quick-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 12px;
}

.admin-quick-card h3 {
    font-family: var(--font-heading);
    color: var(--red-dark);
    font-size: 1rem;
    margin-bottom: 6px;
}

.admin-quick-card p {
    font-size: 0.85rem;
    color: var(--text-light);
    margin: 0;
    line-height: 1.5;
}

.admin-card {
    background: var(--white);
    padding: 28px;
    border-radius: 14px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    max-width: 560px;
}

.admin-card h3 {
    font-family: var(--font-heading);
    color: var(--red-dark);
    margin-bottom: 8px;
}

.admin-meta {
    color: var(--text-light);
    font-size: 0.88rem;
    margin-bottom: 8px !important;
}

.admin-stock-card {
    max-width: 600px;
}

.stock-preview {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-bottom: 24px;
    margin-bottom: 24px;
    border-bottom: 2px solid rgba(139, 0, 0, 0.1);
}

.stock-preview-icon {
    font-size: 3rem;
    background: var(--cream);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    flex-shrink: 0;
}

.admin-stock-form,
.admin-settings-form {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.field-hint {
    display: block;
    font-size: 0.78rem;
    color: var(--text-light);
    margin-top: 6px;
}

.admin-save-btn {
    margin-top: 16px !important;
    background: #1a1a1a !important;
    color: var(--white) !important;
    border: 2px solid #1a1a1a !important;
    align-self: flex-start;
}

.admin-save-msg {
    margin-top: 16px;
    color: #2e7d32;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
}

.admin-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 800px;
}

.admin-item {
    background: var(--white);
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
    border-left: 4px solid #ddd;
    text-align: left;
}

.admin-item.is-new {
    border-left-color: var(--red-bright);
}

.admin-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-bottom: 6px;
}

.admin-item-header h3 {
    font-family: var(--font-heading);
    color: var(--red-dark);
    font-size: 1rem;
}

.admin-badge {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 12px;
    text-transform: uppercase;
}

.admin-badge.new,
.admin-badge.pending {
    background: #ffebee;
    color: var(--red-bright);
}

.admin-badge.confirmed {
    background: #fff3e0;
    color: #e65100;
}

.admin-badge.shipped {
    background: #e3f2fd;
    color: #1565c0;
}

.admin-badge.done,
.admin-badge.read {
    background: #e8f5e9;
    color: #2e7d32;
}

.admin-order-items {
    list-style: none;
    margin: 10px 0;
    padding: 10px;
    background: var(--cream);
    border-radius: 8px;
}

.admin-order-items li {
    font-size: 0.88rem;
    color: var(--text-light);
    padding: 4px 0;
}

.admin-total {
    font-family: var(--font-heading);
    color: var(--red-dark);
    margin: 10px 0;
}

.admin-message {
    background: var(--cream);
    padding: 12px;
    border-radius: 8px;
    font-size: 0.9rem;
    color: var(--text);
    margin: 10px 0;
    line-height: 1.6;
}

.admin-item-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
}

.admin-action-btn {
    padding: 8px 14px;
    border: 2px solid var(--red-dark);
    background: transparent;
    color: var(--red-dark);
    border-radius: 8px;
    font-family: var(--font-heading);
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    text-decoration: none;
    display: inline-block;
}

.admin-action-btn:hover {
    background: rgba(139, 0, 0, 0.08);
}

.admin-delete-btn {
    border-color: #999;
    color: #666;
}

.admin-empty {
    color: var(--text-light);
    text-align: center;
    padding: 40px;
    background: var(--white);
    border-radius: 12px;
    max-width: 800px;
}

@media (max-width: 768px) {
    .admin-layout {
        flex-direction: column;
    }

    .admin-sidebar {
        width: 100%;
        min-width: 100%;
        height: auto;
        position: static;
    }

    .sidebar-nav {
        flex-direction: row;
        flex-wrap: wrap;
        padding: 12px;
    }

    .sidebar-link {
        flex: 1;
        min-width: 120px;
        justify-content: center;
        font-size: 0.8rem;
        padding: 10px 12px;
    }

    .sidebar-footer {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .sidebar-logout {
        flex: 1;
    }

    .admin-main {
        padding: 24px 16px 48px;
    }

    .admin-save-btn {
        width: 100%;
        align-self: stretch;
    }

    .stock-preview {
        flex-direction: column;
        text-align: center;
    }
}

/* Auth modal */
.auth-modal-box {
    max-width: 420px;
}

.auth-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
}

.auth-tab-btn {
    flex: 1;
    padding: 10px;
    border: 2px solid #eee;
    background: #f9f9f9;
    border-radius: 8px;
    cursor: pointer;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    transition: border-color 0.2s, background 0.2s;
}

.auth-tab-btn.active {
    border-color: var(--red-bright);
    background: #ffebee;
    color: var(--red-dark);
}

.auth-form .form-group {
    margin-bottom: 14px;
}

/* Account page */
.page-account .account-section {
    max-width: 720px;
}

.account-header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 32px;
    padding: 24px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.account-header h3 {
    font-family: var(--font-heading);
    color: var(--red-dark);
    margin-bottom: 4px;
}

.account-header p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.logout-btn {
    padding: 10px 20px;
    border: 2px solid var(--red-bright);
    background: transparent;
    color: var(--red-dark);
    border-radius: 8px;
    font-family: var(--font-heading);
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}

.logout-btn:hover {
    background: var(--red-bright);
    color: var(--white);
}

.order-status-badge {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 12px;
    text-transform: uppercase;
}

.order-status-badge.pending {
    background: #ffebee;
    color: var(--red-bright);
}

.order-status-badge.confirmed {
    background: #fff3e0;
    color: #e65100;
}

.order-status-badge.shipped {
    background: #e3f2fd;
    color: #1565c0;
}

.order-status-badge.done {
    background: #e8f5e9;
    color: #2e7d32;
}

.order-track-steps {
    display: flex;
    gap: 8px;
    margin-top: 16px;
    flex-wrap: wrap;
}

.track-step {
    flex: 1;
    min-width: 90px;
    padding: 10px 8px;
    text-align: center;
    font-size: 0.75rem;
    font-weight: 600;
    color: #bbb;
    background: #f5f5f5;
    border-radius: 8px;
    border: 2px solid #eee;
}

.track-step span {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.track-step.active {
    color: var(--red-dark);
    background: #ffebee;
    border-color: var(--red-bright);
}
