:root {
    --primary-color: #2563eb;
    --primary-hover: #1d4ed8;
    --bg-color: #f8fafc;
    --card-bg: #ffffff;
    --text-main: #1e293b;
    --text-muted: #64748b;
    --border-color: #e2e8f0;
    --success-color: #22c55e;
    --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-main);
    line-height: 1.5;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Header */
header {
    background-color: var(--card-bg);
    padding: 1rem 0;
    box-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-img {
    height: 2.5rem;
    width: auto;
}

.logo-text h1 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin: 0;
    line-height: 1.2;
}

.logo-text p {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin: 0;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.login-btn {
    background-color: #9ca3af;
    color: white;
    border: none;
    padding: 0.4rem 0.75rem;
    border-radius: 0.5rem;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.2s;
}

.login-btn:hover {
    background-color: #6b7280;
}

.cart-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 0.4rem 0.75rem;
    border-radius: 0.5rem;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: background-color 0.2s;
}

.cart-btn:hover {
    background-color: var(--primary-hover);
}

/* User Menu */
.user-menu {
    position: relative;
}

.user-btn {
    background-color: var(--bg-color);
    border: 1px solid var(--border-color);
    padding: 0.4rem 0.75rem;
    border-radius: 0.5rem;
    cursor: pointer;
    font-weight: 500;
    color: var(--text-main);
    transition: all 0.2s;
}

.user-btn:hover {
    background-color: var(--card-bg);
    border-color: var(--primary-color);
}

.user-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 0.5rem;
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    box-shadow: var(--shadow);
    min-width: 200px;
    z-index: 1000;
}

.user-dropdown.show {
    display: block;
}

.user-dropdown a {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--text-main);
    text-decoration: none;
    transition: background-color 0.2s;
}

.user-dropdown a:hover {
    background-color: var(--bg-color);
}

.user-dropdown a:first-child {
    border-radius: 0.5rem 0.5rem 0 0;
}

.user-dropdown a:last-child {
    border-radius: 0 0 0.5rem 0.5rem;
}

/* Navigation */
.category-nav {
    background-color: var(--card-bg);
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
    overflow-x: auto;
    white-space: nowrap;
    margin-bottom: 2rem;
}

.category-nav .container {
    display: flex;
    gap: 0.75rem;
}

.cat-btn {
    background: none;
    border: 1px solid var(--border-color);
    padding: 0.4rem 0.75rem;
    border-radius: 2rem;
    cursor: pointer;
    color: var(--text-muted);
    font-weight: 500;
    transition: all 0.2s;
}

.cat-btn:hover,
.cat-btn.active {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 1.5rem;
    padding-bottom: 4rem;
}

@media (min-width: 640px) {
    .product-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
}

.product-card {
    background: var(--card-bg);
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.2s;
    display: flex;
    flex-direction: column;
    border: 2px solid var(--primary-color);
}

.product-card:hover {
    transform: translateY(-4px);
}

.product-image {
    width: 100%;
    height: 160px;
    object-fit: cover;
    background-color: #f1f5f9;
}

.product-info {
    padding: 1rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-category {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
}

.product-name {
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.product-price {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.125rem;
    margin-top: auto;
    margin-bottom: 0.75rem;
}

.add-to-cart-btn {
    width: 100%;
    background-color: white;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    padding: 0.5rem;
    border-radius: 0.5rem;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.2s;
}

.add-to-cart-btn:hover {
    background-color: var(--primary-color);
    color: white;
}

/* Modal */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    opacity: 1;
    transition: opacity 0.3s;
}

.modal.hidden {
    pointer-events: none;
    opacity: 0;
}

.modal-content {
    background-color: var(--card-bg);
    width: 100%;
    max-width: 400px;
    max-height: 100vh;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    transform: translateX(0);
    transition: transform 0.3s;
    overflow-y: auto;
}

.modal.hidden .modal-content {
    transform: translateX(100%);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
    flex-shrink: 0;
}

.close-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-muted);
}

.cart-items {
    flex-grow: 1;
    overflow-y: auto;
    margin-bottom: 1.5rem;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
}

.cart-item-info h4 {
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.cart-item-price {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.cart-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.qty-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    width: 24px;
    height: 24px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s;
}

.qty-btn:hover {
    background-color: var(--primary-hover);
}

.cart-summary {
    background-color: #f8fafc;
    padding: 1rem;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    flex-shrink: 0;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.summary-row.total {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--primary-color);
    border-top: 1px solid var(--border-color);
    padding-top: 0.5rem;
    margin-top: 0.5rem;
}

.cart-form {
    flex-shrink: 0;
}

.cart-form input {
    width: 100%;
    padding: 0.75rem;
    margin-bottom: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    font-family: inherit;
}

.checkout-btn {
    width: 100%;
    background-color: var(--success-color);
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 0.5rem;
    font-weight: 700;
    cursor: pointer;
    font-size: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}

.checkout-btn:hover {
    background-color: #16a34a;
}

/* Auth Modal - SCROLLABLE */
.auth-modal-content {
    background-color: white;
    max-width: 600px;
    max-height: 90vh;
}

.auth-form {
    margin: 1 rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.auth-form h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.auth-form input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    font-family: inherit;
    font-size: 0.85rem;
}

.auth-form input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.error-msg {
    color: #dc2626;
    font-size: 0.85rem;
    margin: -0.5rem 0 0 0;
}

.auth-submit-btn {
    width: 100%;
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 0.75rem;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.2s;
}

.auth-submit-btn:hover {
    background-color: var(--primary-hover);
}

.auth-switch {
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.auth-switch a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.auth-switch a:hover {
    text-decoration: underline;
}

/* Order History Modal */
.history-modal-content {
    max-width: 600px;
    max-height: 90vh;
}

.history-container {
    max-height: 500px;
    overflow-y: auto;
    padding: 1rem 0;
}

.history-item {
    background-color: var(--bg-color);
    border-radius: 0.5rem;
    padding: 1rem;
    margin-bottom: 1rem;
    border: 1px solid var(--border-color);
}

.history-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border-color);
}

.order-id {
    font-weight: 700;
    color: var(--primary-color);
}

.order-date {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.order-items {
    list-style: none;
    padding: 0;
    margin: 0.75rem 0;
}

.order-items li {
    padding: 0.25rem 0;
    font-size: 0.9rem;
}

.history-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--border-color);
}

.order-status {
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.8rem;
    font-weight: 600;
}

.status-pending {
    background-color: #fef3c7;
    color: #92400e;
}

.status-confirmed {
    background-color: #dbeafe;
    color: #1e40af;
}

.status-delivered {
    background-color: #d1fae5;
    color: #065f46;
}

.empty-msg,
.empty-cart-msg {
    text-align: center;
    color: var(--text-muted);
    padding: 2rem;
}

/* Footer */
.footer {
    background-color: var(--card-bg);
    padding: 2rem 0;
    margin-top: 3rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-muted);
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
}

@media (min-width: 640px) {
    .footer-content {
        display: grid;
        grid-template-columns: 2fr 1fr;
        gap: 2rem;
        text-align: left;
        align-items: start;
    }
}

.footer-section h3 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.how-it-works-detailed {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    text-align: left;
}

.step h4 {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 0.5rem;
}

.step p {
    font-size: 0.85rem;
    line-height: 1.6;
    color: var(--text-muted);
    max-width: 65ch;
}

.footer-right {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.footer-logo-img {
    height: 2rem;
    width: auto;
}

.footer-logo h3 {
    margin: 0;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.footer-link:hover {
    text-decoration: underline;
}

.copyright {
    margin-top: 0.5rem;
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.cod-note {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-align: center;
    margin-top: 0.75rem;
    font-style: italic;
}

/* About Page - 2 Column Layout */
.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
    padding: 2rem 0;
}

.about-text {
    max-width: 100%;
}

.about-text h2 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.about-text h2:first-child {
    margin-top: 0;
}

.about-text h4 {
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-main);
}

.about-text p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.about-text a {
    color: var(--primary-color);
    text-decoration: none;
}

.about-text a:hover {
    text-decoration: underline;
}

.about-image {
    position: sticky;
    top: 6rem;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 1rem;
    box-shadow: var(--shadow);
}

@media (max-width: 768px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-image {
        position: relative;
        top: 0;
    }
}

/* Responsive */
@media (max-width: 640px) {

    /* Stack header buttons vertically */
    .header-actions {
        flex-direction: column;
        gap: 0.5rem;
        align-items: stretch;
        width: 100%;
    }

    .login-btn,
    .user-btn,
    .cart-btn {
        width: 100%;
        padding: 0.5rem 0.75rem;
        font-size: 0.9rem;
        text-align: center;
    }

    /* Product cards - full width */
    .product-card {
        display: flex;
        flex-direction: column;
        height: 100%;
    }

    .product-image {
        width: 100%;
        height: auto;
        aspect-ratio: 1;
        object-fit: cover;
    }

    .product-info {
        display: flex;
        flex-direction: column;
        flex: 1;
        padding: 1rem;
    }

    .product-name {
        flex: 1;
    }

    .add-to-cart-btn {
        width: 100%;
        margin-top: auto;
    }

    /* Footer - left align */
    .footer-content {
        text-align: left;
    }

    .footer-section,
    .footer-right {
        align-items: flex-start;
    }

    .footer-logo {
        justify-content: flex-start;
    }

    .copyright {
        text-align: left;
    }

    /* Modals */
    .auth-modal-content,
    .history-modal-content {
        max-width: 95vw;
        max-height: 95vh;
    }
}

/* Behind Gopin - Team Cards */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.team-card {
    background: var(--card-bg);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.2s;
}

.team-card:hover {
    transform: translateY(-4px);
}

.team-photo {
    width: 150px;
    height: 150px;
    margin: 0 auto 1.5rem;
    border-radius: 15%;
    overflow: hidden;
    border: 4px solid var(--primary-color);
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-card h3 {
    color: var(--text-main);
    margin-bottom: 0.5rem;
}

.team-role {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-bio {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Projects Grid */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.project-card {
    background: var(--card-bg);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--primary-color);
    transition: transform 0.2s;
}

.project-card:hover {
    transform: translateX(4px);
}

.project-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.project-card p {
    color: var(--text-muted);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.project-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.project-link:hover {
    text-decoration: underline;
}

/* Disclaimer Page */
.disclaimer-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
}

.disclaimer-container h2 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-align: center;
}

.disclaimer-section {
    margin-bottom: 3rem;
}

.disclaimer-section h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--border-color);
}

.disclaimer-section h4 {
    color: var(--text-main);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.disclaimer-section p {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.disclaimer-section ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.disclaimer-section li {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.disclaimer-section a {
    color: var(--primary-color);
    text-decoration: none;
}

.disclaimer-section a:hover {
    text-decoration: underline;
}

/* Status Page */
.status-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow);
    margin-bottom: 3rem;
}

.status-logo img {
    width: 100px;
    height: auto;
}

.status-info {
    flex-grow: 1;
}

.current-time {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 1rem;
}

.overall-status {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    border-radius: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.overall-status.operational {
    background-color: #d1fae5;
    color: #065f46;
}

.overall-status.disrupted {
    background-color: #fef3c7;
    color: #92400e;
}

.overall-status.shutdown {
    background-color: #fee2e2;
    color: #991b1b;
}

.status-indicator {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.status-indicator.operational {
    background-color: #22c55e;
}

.status-indicator.disrupted {
    background-color: #f59e0b;
}

.status-indicator.shutdown {
    background-color: #ef4444;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

/* Services Container */
.services-container {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow);
    margin-bottom: 2rem;
}

.service-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.service-item:last-child {
    border-bottom: none;
}

.service-info h3 {
    color: var(--text-main);
    margin-bottom: 0.5rem;
}

.service-schedule {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.status-badge {
    padding: 0.4rem 0.75rem;
    border-radius: 2rem;
    font-weight: 600;
    font-size: 0.9rem;
}

.status-badge.operational {
    background-color: #d1fae5;
    color: #065f46;
}

.status-badge.offline {
    background-color: #f3f4f6;
    color: #6b7280;
}

/* Status Legend */
.status-legend {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow);
}

.status-legend h3 {
    color: var(--text-main);
    margin-bottom: 1rem;
}

.legend-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.legend-item span:last-child {
    color: var(--text-muted);
}

/* Responsive for new pages */
@media (max-width: 640px) {
    .status-header {
        flex-direction: column;
        text-align: center;
    }

    .team-grid,
    .projects-grid {
        grid-template-columns: 1fr;
    }

    .service-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
}

/* Page Header */
.page-header {
    text-align: center;
    margin-bottom: 3rem;
}

.page-header h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.page-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* New Badge */
.new-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(135deg, #f59e0b, #ef4444);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 700;
    z-index: 10;
    animation: pulse-badge 2s infinite;
}

@keyframes pulse-badge {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.product-card {
    position: relative;
}

.loading-msg,
.error-msg {
    text-align: center;
    color: var(--text-muted);
    padding: 3rem;
    grid-column: 1 / -1;
}

.error-msg {
    color: #dc2626;
}

/* Footer Link Disabled - Go-Laundry Coming Soon */
.footer-link-disabled {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.25rem 0;
    cursor: not-allowed;
}

.link-disabled-text {
    color: #9ca3af;
    font-weight: 600;
    text-decoration: none;
}

.coming-soon-badge {
    background-color: #e5e7eb;
    color: #6b7280;
    padding: 0.125rem 0.5rem;
    border-radius: 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.025em;
}

/* Service Buttons in Footer */
.service-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.service-btn {
    display: block;
    width: 50%;
    padding: 0.4rem 0.75rem;
    border-radius: 0.5rem;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 0.85rem;
    box-sizing: border-box;
    font-family: inherit;
}

.service-btn-active {
    background-color: var(--primary-color);
    color: white;
}

.service-btn-active:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
}

.service-btn-disabled {
    background-color: #9ca3af;
    color: #d1d5db;
    cursor: not-allowed;
}

.service-btn-wrapper {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.coming-soon {
    font-style: italic;
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* Print Page Styles */
.print-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.print-card {
    background: var(--card-bg);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: var(--shadow);
    border: 2px solid var(--primary-color);
    text-align: center;
}

.print-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.print-card h3 {
    color: var(--text-main);
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.print-price {
    color: var(--primary-color);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.print-price span {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-muted);
}

.print-desc {
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.quantity-control {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.quantity-control input {
    width: 80px;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 600;
    border: 2px solid var(--border-color);
    border-radius: 0.5rem;
    padding: 0.5rem;
}

.print-subtotal {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-main);
}

.print-subtotal span {
    color: var(--primary-color);
}

.print-summary {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow);
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.print-order-form {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow);
    max-width: 500px;
    margin: 0 auto;
}

.print-order-form h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.print-order-form input,
.print-order-form textarea {
    width: 100%;
    padding: 0.75rem;
    margin-bottom: 1rem;
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    font-family: inherit;
    font-size: 1rem;
}

.print-order-form textarea {
    resize: vertical;
}

.order-print-btn {
    width: 100%;
    background-color: var(--success-color);
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 0.5rem;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.2s;
}

.order-print-btn:hover:not(:disabled) {
    background-color: #16a34a;
    transform: translateY(-2px);
}

.order-print-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.print-note {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-top: 1rem;
    font-style: italic;
}

@media (max-width: 640px) {
    .service-btn-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .print-grid {
        grid-template-columns: 1fr;
    }
}

/* About Page Gallery */
.about-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.about-gallery img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.about-gallery img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
    .about-gallery {
        grid-template-columns: 1fr;
    }

    .about-gallery img {
        height: 250px;
    }
}

/* Navigation Separator */
.nav-separator {
    color: var(--border-color);
    font-weight: 300;
    padding: 0 0.5rem;
    user-select: none;
}/* Auth Modal - Centered and Wider with Better Padding */
#auth-modal {
    justify-content: center !important;
}
#auth-modal .auth-modal-content {
    background-color: white;
    padding: 2.5rem !important;
    border-radius: 0.75rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    width: 90%;
    max-width: 600px !important;
    max-height: 90vh;
    overflow-y: auto;
}
#auth-modal .auth-form input {
    padding: 0.875rem !important;
    margin-bottom: 0.75rem;
}
