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

:root {
    --primary: #0f766e;
    --primary-dark: #0b5d56;
    --secondary: #f59e0b;
    --dark: #0f172a;
    --text: #334155;
    --muted: #64748b;
    --light: #f8fafc;
    --white: #ffffff;
    --border: #e2e8f0;
    --shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
    --radius: 16px;
    --radius-sm: 10px;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.7;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

.site-wrapper {
    overflow: hidden;
}

.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Topbar */
.topbar {
    background: var(--dark);
    color: var(--white);
    font-size: 14px;
}

.topbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    padding-top: 10px;
    padding-bottom: 10px;
}

.topbar-left span,
.topbar-right a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.topbar-right {
    display: flex;
    align-items: center;
    gap: 18px;
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    min-height: 84px;
}

.site-logo a {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-weight: 700;
    color: var(--dark);
    font-size: 24px;
}

.site-logo img {
    width: 78px;
    height: 78px;
    object-fit: contain;
    background: transparent;
}

.footer-logo a {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    font-weight: 700;
    color: var(--white);
    font-size: 26px;
}

.footer-logo img {
    width: 110px;
    height: 110px;
    object-fit: contain;
    background: transparent;
}
.main-nav ul {
    display: flex;
    align-items: center;
    gap: 28px;
}

.main-nav a {
    font-weight: 500;
    color: var(--dark);
    position: relative;
    transition: var(--transition);
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--primary);
}

.main-nav a.active::after,
.main-nav a:hover::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 100%;
    height: 2px;
    background: var(--primary);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.menu-toggle {
    display: none;
    border: none;
    background: transparent;
    font-size: 22px;
    cursor: pointer;
    color: var(--dark);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 24px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition);
    border: 1px solid transparent;
    cursor: pointer;
}

.btn-sm {
    padding: 10px 18px;
    font-size: 14px;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-outline {
    background: var(--white);
    color: var(--primary);
    border-color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 600;
}

.text-link:hover {
    color: var(--primary-dark);
}

/* Sections */
section {
    padding: 90px 0;
}

.section-heading {
    max-width: 720px;
    margin: 0 auto 45px;
    text-align: center;
}

.section-eyebrow {
    display: inline-block;
    color: var(--secondary);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    margin-bottom: 12px;
}

.section-heading h2,
.hero-content h1,
.about-preview-content h2,
.cta-text h2 {
    color: var(--dark);
    line-height: 1.2;
}

.section-heading h2 {
    font-size: 40px;
    margin-bottom: 16px;
}

.section-heading p {
    color: var(--muted);
    font-size: 16px;
}

.center {
    text-align: center;
}

/* Hero */
.hero-section {
    padding-top: 80px;
    padding-bottom: 80px;
    background:
        linear-gradient(135deg, rgba(15, 118, 110, 0.08), rgba(245, 158, 11, 0.08)),
        #f8fafc;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 50px;
}

.hero-content h1 {
    font-size: 56px;
    margin-bottom: 22px;
}

.hero-content p {
    font-size: 18px;
    color: var(--muted);
    margin-bottom: 28px;
    max-width: 650px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.hero-image img {
    width: 100%;
    border-radius: 28px;
    box-shadow: var(--shadow);
    background: var(--white);
}

/* Highlights */
.highlights-section {
    padding-top: 40px;
    padding-bottom: 40px;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.highlight-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 24px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.highlight-card:hover {
    transform: translateY(-6px);
}

.highlight-card i {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(15, 118, 110, 0.1);
    color: var(--primary);
    font-size: 24px;
    margin-bottom: 18px;
}

.highlight-card h3 {
    font-size: 22px;
    color: var(--dark);
    margin-bottom: 10px;
}

.highlight-card p {
    color: var(--muted);
}

/* Product Cards */
.products-section,
.best-sellers-section {
    background: var(--white);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.product-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
}

.product-card:hover {
    transform: translateY(-8px);
}

.product-image {
    background: #f1f5f9;
    min-height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 22px;
}

.product-image img {
    max-height: 220px;
    object-fit: contain;
}

.product-body {
    padding: 24px;
}

.product-category {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    color: var(--secondary);
    text-transform: uppercase;
    margin-bottom: 10px;
}

.product-body h3 {
    font-size: 22px;
    color: var(--dark);
    margin-bottom: 12px;
    line-height: 1.3;
}

.product-body p {
    color: var(--muted);
    margin-bottom: 18px;
}

.card-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.section-action {
    margin-top: 35px;
}

/* Categories */
.categories-section {
    background: #f8fafc;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.category-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 30px 24px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
}

.category-card:hover {
    transform: translateY(-8px);
}

.category-icon {
    width: 68px;
    height: 68px;
    border-radius: 18px;
    background: rgba(245, 158, 11, 0.12);
    color: var(--secondary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 20px;
}

.category-card h3 {
    font-size: 24px;
    color: var(--dark);
    margin-bottom: 10px;
}

.category-card p {
    color: var(--muted);
    margin-bottom: 16px;
}

/* About Preview */
.about-preview-section {
    background: var(--white);
}

.about-preview-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    align-items: center;
    gap: 48px;
}

.about-preview-image img {
    border-radius: 28px;
    box-shadow: var(--shadow);
    width: 100%;
}

.about-preview-content h2 {
    font-size: 42px;
    margin-bottom: 18px;
}

.about-preview-content p {
    color: var(--muted);
    margin-bottom: 24px;
    font-size: 16px;
}

.about-check-list {
    margin-bottom: 28px;
}

.about-check-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    color: var(--text);
    font-weight: 500;
}

.about-check-list i {
    color: var(--primary);
    margin-top: 4px;
}

/* Stats */
.stats-section {
    padding-top: 30px;
    padding-bottom: 30px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.stat-box {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    border-radius: 22px;
    padding: 32px 20px;
    text-align: center;
    box-shadow: var(--shadow);
}

.stat-box h3 {
    font-size: 42px;
    line-height: 1;
    margin-bottom: 10px;
}

.stat-box p {
    font-size: 16px;
    opacity: 0.95;
}

/* CTA */
.cta-section {
    background: #f8fafc;
}

.cta-box {
    background: linear-gradient(135deg, rgba(15, 118, 110, 0.95), rgba(11, 93, 86, 0.95));
    color: var(--white);
    border-radius: 28px;
    padding: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    box-shadow: var(--shadow);
}

.cta-text h2 {
    color: var(--white);
    font-size: 38px;
    margin-bottom: 12px;
}

.cta-text p {
    color: rgba(255, 255, 255, 0.88);
    max-width: 620px;
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.cta-box .btn-outline {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.7);
    color: var(--white);
}

.cta-box .btn-outline:hover {
    background: var(--white);
    color: var(--primary);
}

.cta-box .section-eyebrow {
    color: #fde68a;
}

/* Contact Preview */
.contact-preview-section {
    background: var(--white);
}

.contact-preview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.contact-preview-card {
    text-align: center;
    padding: 32px 24px;
    border: 1px solid var(--border);
    border-radius: 22px;
    box-shadow: var(--shadow);
    background: var(--white);
}

.contact-preview-card i {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(15, 118, 110, 0.1);
    color: var(--primary);
    font-size: 24px;
}

.contact-preview-card h3 {
    font-size: 22px;
    color: var(--dark);
    margin-bottom: 8px;
}

.contact-preview-card p {
    color: var(--muted);
}

/* Footer */
.site-footer {
    position: relative;
    background:
        radial-gradient(circle at top left, rgba(132, 204, 22, 0.22) 0%, rgba(132, 204, 22, 0.00) 28%),
        radial-gradient(circle at bottom right, rgba(245, 158, 11, 0.18) 0%, rgba(245, 158, 11, 0.00) 24%),
        linear-gradient(135deg, #03122f 0%, #071a45 45%, #04122c 100%);
    color: rgba(255, 255, 255, 0.84);
    padding-top: 70px;
    overflow: hidden;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1.1fr;
    gap: 28px;
    padding-bottom: 40px;
}

.footer-brand p {
    margin-top: 16px;
    max-width: 360px;
}

.footer-col h4 {
    font-size: 20px;
    color: var(--white);
    margin-bottom: 18px;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 12px;
}

.footer-links a:hover {
    color: var(--secondary);
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.footer-contact i {
    margin-top: 5px;
    color: var(--secondary);
}

.footer-socials {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.footer-socials a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.footer-socials a:hover {
    background: var(--secondary);
    color: var(--dark);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 22px;
    padding-bottom: 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
}

.footer-bottom-links {
    display: flex;
    gap: 18px;
}

.footer-bottom-links a:hover {
    color: var(--secondary);
}

/* Utility */
.homepage {
    min-height: 100vh;
}

.page-hero-section {
    padding: 90px 0 70px;
    background: linear-gradient(135deg, rgba(15, 118, 110, 0.08), rgba(245, 158, 11, 0.08)), #f8fafc;
}

.page-hero-content {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
}

.page-hero-content h1 {
    font-size: 52px;
    line-height: 1.15;
    color: var(--dark);
    margin-bottom: 18px;
}

.page-hero-content p {
    font-size: 18px;
    color: var(--muted);
    margin-bottom: 18px;
}

.breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--muted);
    font-weight: 500;
}

.breadcrumb a {
    color: var(--primary);
}

.story-section,
.about-details-section {
    background: var(--white);
}

.catalog-section {
    background: var(--white);
}

.catalog-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.catalog-search,
.catalog-filter {
    flex: 1;
    min-width: 260px;
}

.catalog-search input,
.catalog-filter select {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid var(--border);
    border-radius: 14px;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    color: var(--text);
    background: var(--white);
    outline: none;
}

.catalog-search input:focus,
.catalog-filter select:focus {
    border-color: var(--primary);
}

.catalog-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 30px;
}

.catalog-tab {
    border: 1px solid var(--border);
    background: var(--white);
    color: var(--text);
    padding: 11px 18px;
    border-radius: 999px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.catalog-tab:hover,
.catalog-tab.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.product-meta {
    margin-bottom: 18px;
    color: var(--muted);
    font-size: 14px;
}

.product-meta strong {
    color: var(--dark);
    display: block;
    margin-bottom: 4px;
}

.product-details-section {
    background: var(--white);
}

.product-details-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 42px;
    align-items: start;
}

.product-details-image-wrap {
    position: relative;
}

.product-details-image {
    background: #f8fafc;
    border: 1px solid var(--border);
    border-radius: 28px;
    padding: 30px;
    box-shadow: var(--shadow);
    min-height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-details-image img {
    max-height: 440px;
    object-fit: contain;
}

.product-details-content h2 {
    font-size: 44px;
    line-height: 1.15;
    color: var(--dark);
    margin: 12px 0 18px;
}

.product-details-description {
    font-size: 17px;
    color: var(--muted);
    margin-bottom: 24px;
}

.details-meta-box {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 22px 22px 16px;
    margin-bottom: 18px;
    box-shadow: var(--shadow);
}

.details-meta-box h4 {
    font-size: 20px;
    color: var(--dark);
    margin-bottom: 14px;
}

.size-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.size-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 9px 16px;
    border-radius: 999px;
    background: rgba(15, 118, 110, 0.10);
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
}

.details-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.product-extra-section {
    background: #f8fafc;
    padding-top: 40px;
    padding-bottom: 40px;
}

.product-extra-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.extra-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 28px 24px;
    box-shadow: var(--shadow);
}

.extra-card h3 {
    font-size: 24px;
    color: var(--dark);
    margin-bottom: 12px;
}

.extra-card p {
    color: var(--muted);
}

.footer-brand {
    max-width: 380px;
}

.footer-brand p {
    margin-top: 18px;
    max-width: 360px;
}

.footer-logo {
    margin-bottom: 10px;
}

.footer-logo span {
    display: inline-block;
    color: var(--white);
    line-height: 1.2;
}

.auth-section {
    background: var(--white);
}

.auth-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: stretch;
}

.auth-info-card,
.auth-form-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 36px 32px;
    box-shadow: var(--shadow);
}

.auth-info-card h2 {
    font-size: 40px;
    line-height: 1.15;
    color: var(--dark);
    margin-bottom: 18px;
}

.auth-info-card p {
    color: var(--muted);
    margin-bottom: 24px;
}

.auth-side-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.auth-form-card h3 {
    font-size: 32px;
    color: var(--dark);
    margin-bottom: 8px;
}

.auth-subtext {
    color: var(--muted);
    margin-bottom: 22px;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 8px;
}

.form-group input {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border);
    border-radius: 14px;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    color: var(--text);
    outline: none;
    background: var(--white);
}

.form-group input:focus {
    border-color: var(--primary);
}

.form-row-inline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.checkbox-inline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--text);
    font-weight: 500;
}

.auth-submit-btn {
    width: 100%;
}

.auth-bottom-links {
    margin-top: 22px;
    text-align: center;
}

.auth-bottom-links p {
    color: var(--muted);
    margin-bottom: 6px;
}

.auth-bottom-links a {
    color: var(--primary);
    font-weight: 700;
}

.alert {
    padding: 14px 16px;
    border-radius: 14px;
    margin-bottom: 18px;
    font-size: 14px;
    font-weight: 500;
}

.alert-success {
    background: rgba(34, 197, 94, 0.10);
    color: #15803d;
    border: 1px solid rgba(34, 197, 94, 0.20);
}

.alert-danger {
    background: rgba(239, 68, 68, 0.10);
    color: #b91c1c;
    border: 1px solid rgba(239, 68, 68, 0.20);
}

.register-page .auth-form-card {
    max-width: 100%;
}

.register-page .auth-form {
    gap: 16px;
}

.register-page .checkbox-inline {
    align-items: flex-start;
    line-height: 1.5;
}

.pending-section {
    background: var(--white);
}

.pending-card {
    max-width: 860px;
    margin: 0 auto;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 28px;
    padding: 42px 36px;
    box-shadow: var(--shadow);
    text-align: center;
}

.pending-icon {
    width: 96px;
    height: 96px;
    margin: 0 auto 22px;
    border-radius: 50%;
    background: rgba(245, 158, 11, 0.12);
    color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 38px;
}

.pending-card h2 {
    font-size: 40px;
    line-height: 1.15;
    color: var(--dark);
    margin-bottom: 16px;
}

.pending-text {
    max-width: 680px;
    margin: 0 auto 24px;
    color: var(--muted);
    font-size: 17px;
}

.pending-info-box {
    text-align: left;
    max-width: 700px;
    margin: 0 auto 26px;
    background: #f8fafc;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 24px 24px 14px;
}

.pending-info-box h4 {
    font-size: 22px;
    color: var(--dark);
    margin-bottom: 14px;
}

.pending-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.contact-main-section {
    background: var(--white);
}

.contact-main-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 30px;
    align-items: stretch;
}

.contact-details-card,
.contact-form-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 36px 32px;
    box-shadow: var(--shadow);
}

.contact-details-card h2 {
    font-size: 40px;
    line-height: 1.15;
    color: var(--dark);
    margin-bottom: 16px;
}

.contact-details-card p {
    color: var(--muted);
    margin-bottom: 22px;
}

.contact-details-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 28px;
}

.contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 18px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: #f8fafc;
}

.contact-detail-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(15, 118, 110, 0.10);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.contact-detail-text h4 {
    font-size: 20px;
    color: var(--dark);
    margin-bottom: 4px;
}

.contact-detail-text p {
    margin-bottom: 0;
    color: var(--muted);
}

.contact-social-box h4 {
    font-size: 20px;
    color: var(--dark);
    margin-bottom: 14px;
}

.contact-form-card h3 {
    font-size: 32px;
    color: var(--dark);
    margin-bottom: 8px;
}

.contact-form-card textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border);
    border-radius: 14px;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    color: var(--text);
    outline: none;
    background: var(--white);
    resize: vertical;
}

.contact-form-card textarea:focus {
    border-color: var(--primary);
}

.map-section {
    background: #f8fafc;
    padding-top: 40px;
    padding-bottom: 80px;
}

.map-placeholder {
    min-height: 300px;
    border: 1px solid var(--border);
    border-radius: 24px;
    background: var(--white);
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 30px;
}

.map-placeholder i {
    font-size: 48px;
    color: var(--primary);
    margin-bottom: 14px;
}

.map-placeholder h3 {
    font-size: 28px;
    color: var(--dark);
    margin-bottom: 8px;
}

.map-placeholder p {
    color: var(--muted);
}

.catalog-tab {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.empty-state {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 40px 28px;
    box-shadow: var(--shadow);
}

.empty-state h3 {
    font-size: 32px;
    color: var(--dark);
    margin-bottom: 12px;
}

.empty-state p {
    color: var(--muted);
    margin-bottom: 18px;
}

.pagination-wrap {
    margin-top: 38px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.pagination-summary {
    color: var(--muted);
    font-size: 14px;
    text-align: center;
}

.pagination {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.pagination-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 46px;
    height: 46px;
    padding: 0 16px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: var(--white);
    color: var(--text);
    font-weight: 600;
    transition: var(--transition);
    text-decoration: none;
}

.pagination-btn:hover,
.pagination-btn.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.pagination-dots {
    color: var(--muted);
    font-weight: 700;
    padding: 0 4px;
}

.dashboard-section {
    background: var(--white);
}

.dashboard-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 30px;
    align-items: stretch;
    margin-bottom: 30px;
}

.dashboard-main-card,
.dashboard-side-card,
.dashboard-note-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 34px 30px;
    box-shadow: var(--shadow);
}

.dashboard-main-card h2 {
    font-size: 38px;
    line-height: 1.15;
    color: var(--dark);
    margin-bottom: 16px;
}

.dashboard-main-card p,
.dashboard-note-card p {
    color: var(--muted);
    margin-bottom: 20px;
}

.dashboard-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.dashboard-side-card h3,
.dashboard-note-card h3 {
    font-size: 28px;
    color: var(--dark);
    margin-bottom: 18px;
}

.dashboard-detail-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.dashboard-detail-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 14px 16px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: #f8fafc;
}

.dashboard-detail-item strong {
    color: var(--dark);
    font-size: 14px;
}

.dashboard-detail-item span {
    color: var(--text);
}

.dashboard-status {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    padding: 7px 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
}

.dashboard-status.approved {
    background: rgba(34, 197, 94, 0.12);
    color: #15803d;
}

.btn-xs {
    padding: 9px 14px;
    font-size: 13px;
    min-height: auto;
}

.btn-danger {
    background: #dc2626;
    color: var(--white);
    border-color: #dc2626;
}

.btn-danger:hover {
    background: #b91c1c;
    color: var(--white);
    border-color: #b91c1c;
    transform: translateY(-2px);
}

.admin-panel-section {
    background: var(--white);
}

.admin-summary-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
    margin-bottom: 24px;
}

.admin-summary-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 20px;
    box-shadow: var(--shadow);
    padding: 22px 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: var(--transition);
    text-decoration: none;
}

.admin-summary-card:hover,
.admin-summary-card.active {
    transform: translateY(-4px);
    border-color: var(--primary);
}

.admin-summary-label {
    color: var(--muted);
    font-size: 14px;
    font-weight: 600;
}

.admin-summary-card strong {
    font-size: 34px;
    line-height: 1;
    color: var(--dark);
}

.admin-table-wrap {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 22px;
    box-shadow: var(--shadow);
    overflow-x: auto;
}

.admin-table {
    width: 100%;
    min-width: 1150px;
    border-collapse: collapse;
}

.admin-table th,
.admin-table td {
    padding: 16px 14px;
    border-bottom: 1px solid var(--border);
    text-align: left;
    vertical-align: top;
    font-size: 14px;
}

.admin-table th {
    background: #f8fafc;
    color: var(--dark);
    font-weight: 700;
}

.admin-table tbody tr:hover {
    background: rgba(15, 118, 110, 0.03);
}

.status-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 7px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
}

.status-badge.pending {
    background: rgba(245, 158, 11, 0.14);
    color: #b45309;
}

.status-badge.approved,
.dashboard-status.approved {
    background: rgba(34, 197, 94, 0.12);
    color: #15803d;
}

.status-badge.rejected {
    background: rgba(239, 68, 68, 0.12);
    color: #b91c1c;
}

.status-badge.inactive {
    background: rgba(100, 116, 139, 0.16);
    color: #475569;
}

.action-group {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.inline-action-form {
    display: inline;
}

.admin-empty-state {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 42px 28px;
    box-shadow: var(--shadow);
}

.admin-empty-state h3 {
    font-size: 32px;
    color: var(--dark);
    margin-bottom: 12px;
}

.admin-empty-state p {
    color: var(--muted);
}

.po-section {
    background: var(--white);
}

.po-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 30px;
    align-items: start;
}

.po-main-card,
.po-side-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 34px 30px;
    box-shadow: var(--shadow);
}

.po-main-card h2 {
    font-size: 38px;
    line-height: 1.15;
    color: var(--dark);
    margin-bottom: 10px;
}

.po-subtext {
    color: var(--muted);
    margin-bottom: 24px;
}

.po-form {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.po-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.po-form textarea,
.po-items-table input,
.po-items-table select {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--border);
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    background: var(--white);
    color: var(--text);
    outline: none;
}

.po-form textarea:focus,
.po-items-table input:focus,
.po-items-table select:focus {
    border-color: var(--primary);
}

.po-items-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
}

.po-items-header h3,
.po-side-card h3,
.po-note-box h4 {
    font-size: 24px;
    color: var(--dark);
    margin: 0;
}

.po-items-wrap {
    overflow-x: auto;
    border: 1px solid var(--border);
    border-radius: 18px;
}

.po-items-table {
    width: 100%;
    min-width: 880px;
    border-collapse: collapse;
}

.po-items-table th,
.po-items-table td {
    padding: 14px 12px;
    border-bottom: 1px solid var(--border);
    text-align: left;
    vertical-align: middle;
    background: var(--white);
}

.po-items-table th {
    background: #f8fafc;
    color: var(--dark);
    font-weight: 700;
}

.po-form-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.po-note-box {
    margin-top: 24px;
    padding: 20px 18px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: #f8fafc;
}

.po-note-box p {
    margin-top: 12px;
    margin-bottom: 0;
    color: var(--muted);
}

.po-section {
    background: var(--white);
}

.po-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 30px;
    align-items: start;
}

.po-main-card,
.po-side-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 34px 30px;
    box-shadow: var(--shadow);
}

.po-main-card h2 {
    font-size: 38px;
    line-height: 1.15;
    color: var(--dark);
    margin-bottom: 10px;
}

.po-subtext {
    color: var(--muted);
    margin-bottom: 24px;
}

.po-form {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.po-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.po-form textarea,
.po-items-table input,
.po-items-table select {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--border);
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    background: var(--white);
    color: var(--text);
    outline: none;
}

.po-form textarea:focus,
.po-items-table input:focus,
.po-items-table select:focus {
    border-color: var(--primary);
}

.po-items-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
}

.po-items-header h3,
.po-side-card h3,
.po-note-box h4 {
    font-size: 24px;
    color: var(--dark);
    margin: 0;
}

.po-items-wrap {
    overflow-x: auto;
    border: 1px solid var(--border);
    border-radius: 18px;
}

.po-items-table {
    width: 100%;
    min-width: 880px;
    border-collapse: collapse;
}

.po-items-table th,
.po-items-table td {
    padding: 14px 12px;
    border-bottom: 1px solid var(--border);
    text-align: left;
    vertical-align: middle;
    background: var(--white);
}

.po-items-table th {
    background: #f8fafc;
    color: var(--dark);
    font-weight: 700;
}

.po-form-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.po-note-box {
    margin-top: 24px;
    padding: 20px 18px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: #f8fafc;
}

.po-note-box p {
    margin-top: 12px;
    margin-bottom: 0;
    color: var(--muted);
}

.dashboard-status.pending {
    background: rgba(245, 158, 11, 0.14);
    color: #b45309;
}

.dashboard-status.rejected {
    background: rgba(239, 68, 68, 0.12);
    color: #b91c1c;
}

.admin-summary-grid-wide {
    grid-template-columns: repeat(7, 1fr);
}

.status-badge.submitted,
.dashboard-status.submitted {
    background: rgba(245, 158, 11, 0.14);
    color: #b45309;
}

.status-badge.under-review,
.dashboard-status.under-review {
    background: rgba(59, 130, 246, 0.14);
    color: #1d4ed8;
}

.status-badge.processing,
.dashboard-status.processing {
    background: rgba(168, 85, 247, 0.14);
    color: #7e22ce;
}

.status-badge.completed,
.dashboard-status.completed {
    background: rgba(34, 197, 94, 0.12);
    color: #15803d;
}