/* PrestaShop Classic Theme - Modern Professional Styling */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;700&display=swap');

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

body {
    font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: #232323;
    background: #f6f6f6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header & Navigation - PrestaShop Style */
.navbar {
    background: #fff;
    border-bottom: 4px solid #2fb5d2;
    padding: 15px 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    font-size: 1.75rem;
    font-weight: 700;
    color: #2fb5d2;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-brand a {
    color: inherit;
    text-decoration: none;
    transition: opacity 0.2s;
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-brand a:hover {
    opacity: 0.8;
}

.nav-brand .logo {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.nav-brand .brand-text {
    font-size: 1.1rem;
    font-weight: 600;
}

.nav-links {
    display: flex;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
}

.nav-links a {
    text-decoration: none;
    color: #7a7a7a;
    font-weight: 600;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #2fb5d2;
}

/* Breadcrumb - PrestaShop Style */
.breadcrumb {
    background: #fff;
    padding: 15px 0;
    border-bottom: 1px solid #e5e5e5;
    margin-bottom: 20px;
}

.breadcrumb-links {
    display: flex;
    gap: 10px;
    align-items: center;
    font-size: 13px;
    color: #7a7a7a;
}

.breadcrumb-links a {
    color: #7a7a7a;
    text-decoration: none;
}

.breadcrumb-links a:hover {
    color: #2fb5d2;
}

/* Buttons - PrestaShop Style */
.btn {
    padding: 12px 24px;
    border: none;
    border-radius: 0;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    transition: all 0.3s ease;
    text-align: center;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.btn:active {
    transform: translateY(0);
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.btn-primary {
    background: #2fb5d2;
    color: #fff;
}

.btn-primary:hover {
    background: #26a5c4;
}

.btn-secondary {
    background: #fff;
    color: #2fb5d2;
    border: 2px solid #2fb5d2;
}

.btn-secondary:hover {
    background: #2fb5d2;
    color: #fff;
}

.btn-block {
    width: 100%;
    display: block;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 13px;
}

/* Hero Section - PrestaShop Style */
.hero {
    background: linear-gradient(135deg, #2fb5d2 0%, #1a8ba3 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
    border-bottom: 4px solid #1a8ba3;
    box-shadow: inset 0 -2px 4px rgba(0,0,0,0.1);
}

.hero h1 {
    font-size: 2.75rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.hero p {
    font-size: 1.35rem;
    margin-bottom: 35px;
    font-weight: 400;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Features Section - PrestaShop Card Style */
.features {
    padding: 70px 0;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

.feature {
    background: white;
    padding: 35px 25px;
    border: 1px solid #e5e5e5;
    text-align: center;
    transition: all 0.3s ease;
}

.feature:hover {
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
    transform: translateY(-3px);
    border-color: #2fb5d2;
}

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: #2fb5d2;
    transition: transform 0.3s ease;
}

.feature:hover .feature-icon {
    transform: scale(1.1);
}

.feature h3 {
    font-size: 18px;
    font-weight: 700;
    color: #232323;
    margin-bottom: 12px;
    letter-spacing: 0.3px;
}

.feature p {
    color: #7a7a7a;
    font-size: 14px;
    line-height: 1.6;
}

/* Auth Forms - PrestaShop Style */
.auth-container {
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 0;
}

.auth-card {
    background: white;
    padding: 40px;
    border: 1px solid #e5e5e5;
    width: 100%;
    max-width: 500px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.auth-card h2 {
    margin-bottom: 30px;
    font-size: 26px;
    font-weight: 700;
    color: #232323;
    text-transform: uppercase;
    border-bottom: 3px solid #2fb5d2;
    padding-bottom: 12px;
    letter-spacing: 0.3px;
}

.form-group {
    margin-bottom: 22px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #232323;
    font-size: 14px;
}

.form-group input {
    width: 100%;
    padding: 12px 14px;
    border: 2px solid #d6d4d4;
    font-size: 14px;
    background: #fff;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #2fb5d2;
    box-shadow: 0 0 0 3px rgba(47, 181, 210, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.error {
    background: #ff5959;
    color: #fff;
    padding: 14px;
    margin-bottom: 20px;
    font-size: 13px;
    border-radius: 2px;
}

.text-center {
    text-align: center;
    margin-top: 25px;
    font-size: 14px;
}

.text-center a {
    color: #2fb5d2;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.text-center a:hover {
    text-decoration: underline;
    color: #1a8ba3;
}

/* Dashboard - PrestaShop Style */
.page-header {
    background: #fff;
    padding: 25px 0;
    border-bottom: 1px solid #e5e5e5;
    margin-bottom: 35px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.page-header h1 {
    font-size: 28px;
    font-weight: 700;
    color: #232323;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.card {
    background: white;
    padding: 30px;
    border: 1px solid #e5e5e5;
    transition: all 0.3s ease;
}

.card:hover {
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
    transform: translateY(-2px);
    border-color: #2fb5d2;
}

.card h3,
.card h4 {
    font-size: 18px;
    font-weight: 700;
    color: #232323;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.card p {
    margin-bottom: 15px;
    color: #7a7a7a;
    font-size: 14px;
    line-height: 1.6;
}

.card strong {
    color: #232323;
    font-weight: 600;
}

/* Footer - PrestaShop Style */
footer {
    background: #373737;
    color: #fff;
    text-align: center;
    padding: 35px 0;
    margin-top: 70px;
    font-size: 13px;
    box-shadow: 0 -2px 8px rgba(0,0,0,0.1);
}

footer a {
    color: #2fb5d2;
    text-decoration: none;
    transition: color 0.3s;
}

footer a:hover {
    color: #5dcde6;
}

/* User Info Badge */
.user-badge {
    background: #2fb5d2;
    color: #fff;
    padding: 8px 14px;
    border-radius: 3px;
    font-size: 13px;
    font-weight: 600;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Status Badges - PrestaShop Style */
.status-confirmed {
    background: #00b050;
    color: #fff;
    padding: 5px 10px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    display: inline-block;
    border-radius: 2px;
}

.status-pending {
    background: #ff9500;
    color: #fff;
    padding: 5px 10px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    display: inline-block;
    border-radius: 2px;
}

.status-cancelled {
    background: #ff5959;
    color: #fff;
    padding: 5px 10px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    display: inline-block;
    border-radius: 2px;
}

/* Responsive - Mobile First */
@media (max-width: 768px) {
    body {
        font-size: 14px;
    }

    .navbar {
        padding: 12px 0;
    }

    .nav-brand {
        font-size: 1.4rem;
    }

    .hero {
        padding: 50px 0;
    }

    .hero h1 {
        font-size: 1.85rem;
        margin-bottom: 15px;
    }

    .hero p {
        font-size: 1.1rem;
        margin-bottom: 25px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        padding: 0 20px;
    }

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

    .form-row {
        grid-template-columns: 1fr;
    }

    .dashboard-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .feature-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .feature {
        padding: 30px 20px;
    }

    .form-group input {
        font-size: 16px; /* Prevents iOS zoom */
    }

    .btn {
        min-height: 48px; /* iOS touch target */
        padding: 14px 24px;
    }

    .auth-card {
        padding: 25px 20px;
        margin: 0 15px;
    }

    .auth-card h2 {
        font-size: 22px;
    }

    .card {
        padding: 25px 20px;
    }

    .page-header {
        padding: 20px 0;
    }

    .page-header h1 {
        font-size: 24px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .feature-grid,
    .dashboard-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero h1 {
        font-size: 2.3rem;
    }
}

@media (min-width: 1025px) {
    .container {
        max-width: 1200px;
    }
}

