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

:root {
  --teal: #0D9488;
  --teal-dark: #134E4A;
  --teal-light: #F0FDFA;
  --teal-mid: #ccfbf1;
  --teal-border: #99e6df;
  --coral: #FF6B6B;
  --coral-light: #FFE8E8;
  --coral-border: #FFB3B3;
  --coral-dark: #CC3333;
  --white: #ffffff;
  --grey-text: #555555;
  --grey-muted: #888888;
}

body { font-family: 'Inter', sans-serif; color: #1a1a1a; background: #fff; }

nav { background: var(--white); border-bottom: 2px solid var(--coral); padding: 0 2rem; display: flex; align-items: center; justify-content: space-between; height: 64px; position: sticky; top: 0; z-index: 100; }
.nav-logo { font-size: 22px; font-weight: 600; color: var(--teal-dark); }
.nav-logo span { color: var(--coral); }
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a { color: #555; font-size: 14px; text-decoration: none; transition: color 0.15s; }
.nav-links a:hover { color: var(--coral); }
.nav-cta { background: var(--coral); color: #fff; border: none; padding: 10px 20px; border-radius: 6px; font-size: 14px; font-weight: 500; cursor: pointer; font-family: inherit; }
.nav-cta:hover { background: #e05555; }

.hero { background: var(--teal-light); padding: 5rem 2rem; text-align: center; border-bottom: 1px solid var(--teal-mid); }
.hero-badge { display: inline-block; background: var(--coral-light); color: var(--coral-dark); font-size: 13px; padding: 6px 16px; border-radius: 20px; margin-bottom: 1.5rem; border: 1px solid var(--coral-border); }
.hero h1 { font-size: 48px; font-weight: 600; color: var(--teal-dark); line-height: 1.15; margin-bottom: 1.25rem; max-width: 640px; margin-left: auto; margin-right: auto; }
.hero h1 span { color: var(--coral); }
.hero p { color: var(--grey-text); font-size: 18px; max-width: 500px; margin: 0 auto 2.5rem; line-height: 1.7; }
.hero-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.btn-primary { background: var(--coral); color: #fff; border: none; padding: 14px 32px; border-radius: 8px; font-size: 16px; font-weight: 500; cursor: pointer; font-family: inherit; }
.btn-primary:hover { background: #e05555; }
.btn-outline { background: #fff; color: var(--teal-dark); border: 1.5px solid var(--teal-border); padding: 14px 32px; border-radius: 8px; font-size: 16px; cursor: pointer; font-family: inherit; }
.btn-outline:hover { border-color: var(--teal); }
.stat-row { display: flex; justify-content: center; gap: 3rem; margin-top: 3.5rem; flex-wrap: wrap; }
.stat-num { font-size: 30px; font-weight: 600; color: var(--coral); }
.stat-label { font-size: 13px; color: var(--grey-muted); margin-top: 4px; }

.trust-bar { background: var(--coral); padding: 1rem 2rem; display: flex; justify-content: center; gap: 3rem; flex-wrap: wrap; }
.trust-item { color: #fff; font-size: 13px; font-weight: 500; }

.section { padding: 5rem 2rem; background: #fff; }
.section-alt { background: var(--teal-light); }
.section-inner { max-width: 960px; margin: 0 auto; }
.section-label { font-size: 12px; color: var(--coral); font-weight: 600; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 0.5rem; }
.section-title { font-size: 28px; font-weight: 600; margin-bottom: 0.5rem; color: var(--teal-dark); }
.section-sub { color: #777; font-size: 15px; margin-bottom: 2.5rem; }

.products-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 16px; }
.product-card { background: #fff; border: 1.5px solid #e0f2f1; border-radius: 12px; padding: 1.5rem 1rem; text-align: center; cursor: pointer; transition: border-color 0.15s, transform 0.15s; }
.product-card:hover { border-color: var(--coral); transform: translateY(-3px); }
.product-icon { width: 54px; height: 54px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; font-size: 24px; }
.product-card h3 { font-size: 14px; font-weight: 500; margin-bottom: 4px; color: var(--teal-dark); }
.product-card p { font-size: 12px; color: #888; }

.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px; }
.step { padding: 1.5rem; border-radius: 12px; background: #fff; border: 1.5px solid #e0f2f1; }
.step-num { width: 32px; height: 32px; border-radius: 50%; background: var(--coral); color: #fff; font-size: 14px; font-weight: 600; display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; }
.step h3 { font-size: 15px; font-weight: 500; color: var(--teal-dark); margin-bottom: 6px; }
.step p { font-size: 13px; color: #777; line-height: 1.6; }

.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px; }
.why-card { padding: 1.5rem; border-radius: 12px; background: #fff; border: 1.5px solid var(--coral-border); }
.why-icon { font-size: 24px; margin-bottom: 1rem; }
.why-card h3 { font-size: 15px; font-weight: 500; color: var(--teal-dark); margin-bottom: 6px; }
.why-card p { font-size: 13px; color: #777; line-height: 1.6; }

.cta-section { background: var(--coral); padding: 5rem 2rem; text-align: center; }
.cta-section h2 { font-size: 30px; font-weight: 600; color: #fff; margin-bottom: 0.75rem; }
.cta-section p { color: rgba(255,255,255,0.85); margin-bottom: 2rem; font-size: 16px; }
.btn-white { background: #fff; color: var(--coral); border: none; padding: 16px 40px; border-radius: 8px; font-size: 16px; font-weight: 600; cursor: pointer; font-family: inherit; }
.btn-white:hover { opacity: 0.9; }

footer { background: var(--teal-dark); padding: 3rem 2rem 1.5rem; }
.footer-inner { max-width: 960px; margin: 0 auto; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 2rem; margin-bottom: 2rem; }
.footer-logo { font-size: 20px; font-weight: 600; color: #fff; margin-bottom: 0.75rem; }
.footer-logo span { color: var(--coral); }
.footer-brand p { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.7; max-width: 220px; }
.footer-col h4 { font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.9); margin-bottom: 1rem; }
.footer-col a { display: block; font-size: 13px; color: rgba(255,255,255,0.5); text-decoration: none; margin-bottom: 0.5rem; }
.footer-col a:hover { color: var(--coral); }
.footer-bottom { max-width: 960px; margin: 0 auto; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 1.5rem; font-size: 12px; color: rgba(255,255,255,0.3); text-align: center; }

@media (max-width: 640px) {
  .nav-links { display: none; }
  .hero h1 { font-size: 32px; }
  .trust-bar { gap: 1rem; }
  .stat-row { gap: 1.5rem; }
}

/* CUSTOM PRINTING PAGE */
.page-header { background: var(--teal-light); padding: 3.5rem 2rem; text-align: center; border-bottom: 1px solid var(--teal-mid); }
.page-header .section-label { margin-bottom: 0.5rem; }
.page-header h1 { font-size: 36px; font-weight: 600; color: var(--teal-dark); margin-bottom: 0.75rem; }
.page-header p { color: var(--grey-text); font-size: 16px; max-width: 480px; margin: 0 auto; line-height: 1.7; }

.products-grid-large { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.product-card-large { background: #fff; border: 1.5px solid #e0f2f1; border-radius: 14px; overflow: hidden; transition: border-color 0.15s, transform 0.15s; }
.product-card-large:hover { border-color: var(--coral); transform: translateY(-3px); }
.product-img-large { height: 300px; display: flex; align-items: center; justify-content: center; font-size: 56px; overflow: hidden; }.product-card-body { padding: 1.5rem; }
.product-card-body h3 { font-size: 18px; font-weight: 600; color: var(--teal-dark); margin-bottom: 0.5rem; }
.product-card-body p { font-size: 14px; color: #666; line-height: 1.6; margin-bottom: 1rem; }
.product-features { list-style: none; padding: 0; }
.product-features li { font-size: 13px; color: var(--teal); padding: 3px 0; }
.product-features li::before { content: "✓ "; color: var(--coral); font-weight: 600; }


/* ORDER FORM */
.form-wrapper { max-width: 720px; margin: 0 auto; }
.steps-indicator { display: flex; align-items: center; margin-bottom: 2.5rem; }
.step-pill { font-size: 13px; font-weight: 500; color: #aaa; padding: 6px 16px; border-radius: 20px; border: 1.5px solid #eee; white-space: nowrap; }
.step-pill.active { background: var(--coral-light); color: var(--coral-dark); border-color: var(--coral-border); }
.step-divider { flex: 1; height: 1.5px; background: #eee; margin: 0 8px; }

.order-form { display: flex; flex-direction: column; gap: 2rem; }
.form-section { background: #fff; border: 1.5px solid #e0f2f1; border-radius: 14px; padding: 2rem; }
.form-section-title { font-size: 18px; font-weight: 600; color: var(--teal-dark); margin-bottom: 1.5rem; padding-bottom: 0.75rem; border-bottom: 1.5px solid var(--teal-mid); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 1rem; }
.form-group label { font-size: 13px; font-weight: 500; color: var(--teal-dark); }
.form-group input, .form-group select, .form-group textarea { padding: 10px 14px; border: 1.5px solid #ddd; border-radius: 8px; font-size: 14px; font-family: inherit; color: #1a1a1a; transition: border-color 0.15s; background: #fff; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--teal); }
.form-group textarea { resize: vertical; }
.form-hint { font-size: 13px; color: #888; margin-bottom: 1rem; line-height: 1.6; }

.upload-box { border: 2px dashed var(--teal-border); border-radius: 12px; padding: 2.5rem; text-align: center; cursor: pointer; transition: border-color 0.15s; background: var(--teal-light); }
.upload-box:hover { border-color: var(--teal); }
.upload-icon { font-size: 32px; margin-bottom: 0.75rem; }
.upload-box p { font-size: 14px; color: #555; margin-bottom: 0.25rem; }
.upload-link { color: var(--teal); font-weight: 500; cursor: pointer; text-decoration: underline; }
.upload-hint { font-size: 12px; color: #aaa !important; }
.file-info { display: flex; align-items: center; gap: 8px; background: var(--teal-light); border: 1.5px solid var(--teal-border); border-radius: 8px; padding: 10px 14px; font-size: 13px; color: var(--teal-dark); margin-top: 0.75rem; }
.remove-file { margin-left: auto; color: var(--coral); cursor: pointer; font-weight: 500; }

.form-submit { text-align: center; padding: 1rem 0; }

@media (max-width: 640px) {
  .form-row { grid-template-columns: 1fr; }
  .steps-indicator { gap: 4px; }
  .step-pill { font-size: 11px; padding: 5px 10px; }
}

/* SCHOOL UNIFORMS PAGE */
.school-search-bar { background: var(--teal-light); padding: 1.5rem 2rem; border-bottom: 1px solid var(--teal-mid); }
.school-search-bar input { width: 100%; max-width: 480px; display: block; margin: 0 auto; padding: 12px 20px; border: 1.5px solid var(--teal-border); border-radius: 30px; font-size: 15px; font-family: inherit; background: #fff; color: #1a1a1a; }
.school-search-bar input:focus { outline: none; border-color: var(--teal); }

.schools-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; }
.school-card { background: #fff; border: 1.5px solid #e0f2f1; border-radius: 14px; padding: 1.5rem; display: flex; flex-direction: column; gap: 8px; text-decoration: none; color: inherit; transition: border-color 0.15s, transform 0.15s; position: relative; }
.school-card:hover { border-color: var(--coral); transform: translateY(-3px); }
.school-badge { display: inline-block; font-size: 11px; font-weight: 600; padding: 3px 10px; border-radius: 10px; width: fit-content; }
.school-initial { width: 52px; height: 52px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 18px; font-weight: 600; margin: 0.25rem 0; }
.school-card h3 { font-size: 16px; font-weight: 600; color: var(--teal-dark); margin: 0; }
.school-card p { font-size: 13px; color: #888; margin: 0; }
.school-link-label { font-size: 13px; color: var(--coral); font-weight: 500; margin-top: 0.5rem; }

.school-cta-banner { background: var(--teal-light); border-top: 1px solid var(--teal-mid); border-bottom: 1px solid var(--teal-mid); padding: 4rem 2rem; }
.school-cta-banner h2 { font-size: 26px; font-weight: 600; color: var(--teal-dark); margin-bottom: 0.75rem; }
.school-cta-banner p { color: #666; font-size: 15px; max-width: 480px; margin: 0 auto; line-height: 1.7; }

/* SCHOOL TEMPLATE PAGE */
.breadcrumb { background: #fff; border-bottom: 1px solid #eee; padding: 0.75rem 2rem; }
.breadcrumb a { font-size: 13px; color: var(--teal); text-decoration: none; }
.breadcrumb a:hover { color: var(--coral); }

.school-header { background: var(--teal-light); padding: 3rem 2rem; border-bottom: 1px solid var(--teal-mid); }
.school-header-inner { display: flex; align-items: flex-start; gap: 1.5rem; flex-wrap: wrap; }
.school-logo-circle { width: 72px; height: 72px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 24px; font-weight: 600; flex-shrink: 0; }
.school-header h1 { font-size: 30px; font-weight: 600; color: var(--teal-dark); margin-bottom: 0.25rem; }
.school-header p { font-size: 14px; color: #888; margin-bottom: 0.75rem; }
.school-header-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.school-tag { background: #fff; border: 1.5px solid var(--teal-border); border-radius: 20px; padding: 4px 12px; font-size: 12px; color: var(--teal-dark); }

.uniform-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.uniform-card { background: #fff; border: 1.5px solid #e0f2f1; border-radius: 14px; overflow: hidden; transition: border-color 0.15s, transform 0.15s; }
.uniform-card:hover { border-color: var(--coral); transform: translateY(-3px); }
.uniform-img { height: 400px; display: flex; align-items: center; justify-content: center; font-size: 56px; }
.uniform-body { padding: 1.25rem; }
.uniform-body h3 { font-size: 17px; font-weight: 600; color: var(--teal-dark); margin-bottom: 0.5rem; }
.uniform-body p { font-size: 13px; color: #666; line-height: 1.6; margin-bottom: 0.75rem; }
.uniform-details { display: flex; flex-direction: column; gap: 3px; margin-bottom: 0.5rem; }
.uniform-details span { font-size: 12px; color: #888; }
.uniform-details span::before { content: "• "; color: var(--coral); }
.uniform-price { font-size: 18px; font-weight: 600; color: var(--teal); }

.bulk-banner { background: var(--coral); padding: 3rem 2rem; }
.bulk-banner h2 { font-size: 22px; font-weight: 600; color: #fff; margin-bottom: 0.5rem; }
.bulk-banner p { color: rgba(255,255,255,0.85); font-size: 15px; }


/* CONTACT PAGE */
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.contact-form-col, .contact-info-col { display: flex; flex-direction: column; gap: 0; }

.contact-info-card { display: flex; align-items: flex-start; gap: 1rem; padding: 1.25rem; border: 1.5px solid #e0f2f1; border-radius: 12px; margin-bottom: 1rem; background: #fff; }
.contact-info-icon { font-size: 24px; flex-shrink: 0; }
.contact-info-label { font-size: 12px; color: #888; font-weight: 500; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 3px; }
.contact-info-value { font-size: 16px; font-weight: 600; color: var(--teal-dark); text-decoration: none; display: block; }
.contact-info-note { font-size: 12px; color: #aaa; margin-top: 3px; }

.faq-section { margin-top: 1.5rem; }
.faq-section h3 { font-size: 16px; font-weight: 600; color: var(--teal-dark); margin-bottom: 1rem; }
.faq-item { border: 1.5px solid #e0f2f1; border-radius: 10px; margin-bottom: 8px; overflow: hidden; }
.faq-q { padding: 14px 16px; font-size: 14px; font-weight: 500; color: var(--teal-dark); cursor: pointer; display: flex; justify-content: space-between; align-items: center; transition: background 0.15s; }
.faq-q:hover { background: var(--teal-light); }
.faq-q span { color: var(--coral); font-size: 18px; font-weight: 600; }
.faq-a { display: none; padding: 0 16px 14px; font-size: 13px; color: #666; line-height: 1.6; border-top: 1px solid #e0f2f1; padding-top: 12px; }

@media (max-width: 768px) {
  .contact-layout { grid-template-columns: 1fr; }
}


/* SIZE AND COLOUR ORDER SECTION */
.size-group-label { font-size: 11px; color: #888; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 6px; }
.chip-grid { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 0.5rem; }
.size-chip { padding: 8px 16px; border-radius: 8px; border: 1.5px solid #ddd; background: #fff; color: #1a1a1a; font-size: 13px; font-weight: 500; cursor: pointer; transition: all 0.15s; user-select: none; }
.size-chip:hover { border-color: #0D9488; color: #0D9488; }
.size-chip.selected { background: #E0F2F1; border-color: #0D9488; color: #134E4A; }

.apply-all-bar { display: flex; align-items: center; gap: 8px; background: #f8fffe; border: 1.5px solid #e0f2f1; border-radius: 8px; padding: 8px 12px; margin-bottom: 0.75rem; flex-wrap: wrap; }
.apply-all-label { font-size: 12px; color: #666; }
.apply-all-select { padding: 5px 10px; border-radius: 8px; border: 1.5px solid #ddd; background: #fff; color: #1a1a1a; font-size: 13px; font-family: inherit; cursor: pointer; }
.apply-all-select:focus { outline: none; border-color: #0D9488; }
.apply-all-btn { padding: 6px 14px; border-radius: 8px; border: 1.5px solid #0D9488; background: #E0F2F1; color: #134E4A; font-size: 12px; font-weight: 500; cursor: pointer; font-family: inherit; transition: all 0.15s; }
.apply-all-btn:hover { background: #0D9488; color: #fff; }
.success-flash { font-size: 12px; color: #0D9488; font-weight: 500; display: none; }

.combo-table { width: 100%; border-collapse: collapse; font-size: 13px; margin-top: 0.5rem; }
.combo-table th { text-align: left; font-size: 11px; font-weight: 500; color: #888; text-transform: uppercase; letter-spacing: 0.5px; padding: 0 8px 8px; border-bottom: 1px solid #eee; }
.combo-table td { padding: 8px; border-bottom: 1px solid #f0f0f0; vertical-align: middle; }
.combo-table tr:last-child td { border-bottom: none; }
.size-badge { display: inline-block; background: #E0F2F1; color: #134E4A; border-radius: 6px; padding: 3px 10px; font-size: 12px; font-weight: 500; }
.colour-select { padding: 6px 10px; border-radius: 8px; border: 1.5px solid #ddd; background: #fff; color: #1a1a1a; font-size: 13px; font-family: inherit; cursor: pointer; width: 100%; }
.colour-select:focus { outline: none; border-color: #0D9488; }
.qty-control { display: flex; align-items: center; gap: 6px; }
.qty-control-btn { width: 26px; height: 26px; border-radius: 50%; border: 1.5px solid #ddd; background: #fff; color: #1a1a1a; font-size: 16px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background 0.15s; }
.qty-control-btn:hover { background: #f0f0f0; }
.qty-control-num { font-size: 14px; font-weight: 500; min-width: 24px; text-align: center; }
.order-total-bar { background: #f8fffe; border-radius: 8px; padding: 0.75rem 1rem; display: flex; justify-content: space-between; align-items: center; margin-top: 0.75rem; border: 1.5px solid #e0f2f1; }
.empty-hint { text-align: center; padding: 1.5rem; color: #aaa; font-size: 13px; border: 1.5px dashed #ddd; border-radius: 8px; }

.status-select { padding: 4px 8px; border-radius: 12px; border: none; font-size: 11px; font-weight: 600; cursor: pointer; font-family: inherit; }
.status-select.status-New { background: #FFE8E8; color: #CC3333; }
.status-select.status-In-progress { background: #FFF8E1; color: #F57F17; }
.status-select.status-Completed { background: #E8F5E9; color: #2E7D32; }
.status-select.status-Sent { background: #E3F2FD; color: #1565C0; }

.tracking-input { padding: 5px 10px; border-radius: 6px; border: 1px solid #ddd; font-size: 12px; font-family: inherit; width: 140px; }
.tracking-input:focus { outline: none; border-color: #0D9488; }

/* ABOUT PAGE */
.about-story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-h2 { font-size: 26px; font-weight: 600; color: var(--teal-dark); margin-bottom: 1.5rem; }
.about-p { font-size: 15px; color: #666; line-height: 1.8; margin-bottom: 1rem; }
.about-story-image { display: flex; justify-content: center; }
.about-img-placeholder { width: 100%; max-width: 400px; aspect-ratio: 1; background: var(--teal-light); border: 2px dashed var(--teal-border); border-radius: 16px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.5rem; color: #888; font-size: 14px; }
.about-img-placeholder p:first-child { font-size: 48px; }
.about-photo { width: 100%; max-width: 400px; aspect-ratio: 1; object-fit: cover; object-position: right center; border-radius: 16px; border: 3px solid var(--teal-border); }

.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; }
.value-card { background: #fff; border: 1.5px solid var(--coral-border); border-radius: 14px; padding: 1.5rem; }
.value-icon { font-size: 32px; margin-bottom: 1rem; }
.value-card h3 { font-size: 16px; font-weight: 600; color: var(--teal-dark); margin-bottom: 0.5rem; }
.value-card p { font-size: 13px; color: #777; line-height: 1.7; }

.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; max-width: 600px; }
.team-card { background: #fff; border: 1.5px solid #e0f2f1; border-radius: 14px; padding: 2rem; text-align: center; }
.team-photo { width: 100px; height: 100px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.25rem; }
.team-card h3 { font-size: 20px; font-weight: 600; color: var(--teal-dark); margin-bottom: 4px; }
.team-role { font-size: 13px; color: var(--coral); font-weight: 500; margin-bottom: 0.75rem; }
.team-bio { font-size: 13px; color: #777; line-height: 1.7; }

@media (max-width: 768px) {
  .about-story-grid { grid-template-columns: 1fr; gap: 2rem; }
}
/* HOW IT WORKS PAGE */
.hiw-steps { max-width: 680px; margin: 0 auto; }
.hiw-step { display: flex; gap: 1.5rem; align-items: flex-start; margin-bottom: 2.5rem; }
.hiw-step-left { display: flex; flex-direction: column; align-items: center; flex-shrink: 0; }
.hiw-step-num { width: 44px; height: 44px; border-radius: 50%; background: var(--coral); color: #fff; font-size: 18px; font-weight: 600; display: flex; align-items: center; justify-content: center; }
.hiw-step-line { width: 2px; background: var(--coral-light); flex: 1; min-height: 40px; margin-top: 6px; }
.hiw-step-right { flex: 1; padding-bottom: 1rem; }
.hiw-step-right h3 { font-size: 18px; font-weight: 600; color: var(--teal-dark); margin-bottom: 0.5rem; }
.hiw-step-right p { font-size: 15px; color: #666; line-height: 1.7; }
.hiw-tip { display: inline-block; background: var(--teal-light); color: var(--teal); font-size: 12px; padding: 4px 12px; border-radius: 20px; margin-top: 0.75rem; font-weight: 500; }

.hiw-stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 16px; margin-top: 1.5rem; }
.hiw-stat { background: #fff; border: 1.5px solid var(--coral-border); border-radius: 12px; padding: 1.25rem; text-align: center; }
.hiw-stat-icon { font-size: 28px; margin-bottom: 0.5rem; }
.hiw-stat-num { font-size: 15px; font-weight: 600; color: var(--teal-dark); }
.hiw-stat-label { font-size: 12px; color: #888; margin-top: 4px; }

.hiw-faqs { margin-top: 1.5rem; }
.hiw-faq-item { border: 1.5px solid #e0f2f1; border-radius: 10px; margin-bottom: 10px; overflow: hidden; background: #fff; }
.hiw-faq-q { padding: 16px; font-size: 15px; font-weight: 500; color: var(--teal-dark); display: flex; justify-content: space-between; align-items: center; cursor: pointer; transition: background 0.15s; }
.hiw-faq-q:hover { background: var(--teal-light); }
.hiw-faq-icon { color: var(--coral); font-size: 20px; font-weight: 600; flex-shrink: 0; margin-left: 1rem; }
.hiw-faq-a { display: none; padding: 0 16px 16px; font-size: 14px; color: #666; line-height: 1.7; border-top: 1px solid #e0f2f1; padding-top: 12px; }

/* PRINT PLACEMENT TABLE */
.placement-divider { display: flex; align-items: center; gap: 1rem; margin: 1.5rem 0 1.25rem; }
.placement-divider-line { flex: 1; height: 1.5px; background: #e0f2f1; }
.placement-divider-label { font-size: 13px; font-weight: 500; color: #0D9488; white-space: nowrap; background: #E0F2F1; padding: 4px 14px; border-radius: 20px; }

.placement-table { width: 100%; border-collapse: collapse; font-size: 13px; min-width: 500px; }
.placement-table th { text-align: left; font-size: 11px; font-weight: 500; color: #0D9488; text-transform: uppercase; letter-spacing: 0.5px; padding: 0 10px 8px; border-bottom: 1.5px solid #e0f2f1; }
.placement-table td { padding: 10px; border-bottom: 1px solid #f0fdfa; vertical-align: middle; }
.placement-table tr:last-child td { border-bottom: none; }

.logo-badge-sm { display: inline-block; background: #E0F2F1; color: #134E4A; border-radius: 6px; padding: 4px 10px; font-size: 12px; font-weight: 500; white-space: nowrap; }
.logo-badge-lg { display: inline-block; background: #FFE8E8; color: #CC3333; border-radius: 6px; padding: 4px 10px; font-size: 12px; font-weight: 500; white-space: nowrap; }

.place-qty-ctrl { display: flex; align-items: center; gap: 6px; }
.place-qty-btn { width: 32px; height: 32px; border-radius: 8px; border: 2px solid #0D9488; background: #fff; color: #0D9488; font-size: 18px; cursor: pointer; display: flex; align-items: center; justify-content: center; font-weight: 500; transition: background 0.15s; font-family: inherit; line-height: 1; }
.place-qty-btn:hover { background: #E0F2F1; }
.place-qty-num { font-size: 14px; font-weight: 500; min-width: 20px; text-align: center; color: #134E4A; }

.place-sel { padding: 7px 10px; border-radius: 8px; border: 2px solid #0D9488; background: #fff; color: #134E4A; font-size: 12px; font-family: inherit; cursor: pointer; width: 100%; }
.place-sel:focus { outline: none; border-color: #134E4A; }

.place-price { font-size: 14px; font-weight: 500; color: #FF6B6B; }

/* PRICE LIST PAGE */
.pl-print-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1.5rem; }
.pl-print-card { border-radius: 12px; padding: 1.25rem; }
.pl-emb { background: #F0FDFA; border: 1.5px solid #e0f2f1; }
.pl-dtf { background: #FFF5F5; border: 1.5px solid #FFD6D6; }
.pl-print-title { margin-bottom: 1rem; }
.pl-badge { display: inline-block; font-size: 12px; padding: 3px 10px; border-radius: 10px; font-weight: 500; }
.pl-badge-emb { background: #E0F2F1; color: #0D9488; }
.pl-badge-dtf { background: #FFE8E8; color: #CC3333; }
.pl-print-row { display: flex; justify-content: space-between; align-items: center; padding: 8px 0; border-bottom: 1px solid rgba(0,0,0,0.05); font-size: 14px; color: #555; }
.pl-print-row:last-child { border-bottom: none; }
.pl-emb-price { font-weight: 500; color: #0D9488; }
.pl-dtf-price { font-weight: 500; color: #CC3333; }
.pl-note { background: var(--teal-light); border: 1.5px solid var(--teal-mid); border-radius: 10px; padding: 1rem 1.25rem; font-size: 13px; color: #555; line-height: 1.6; }

.pl-divider { display: flex; align-items: center; gap: 1rem; margin: 2rem 0 1.25rem; }
.pl-divider-line { flex: 1; height: 1px; background: #e0f2f1; }
.pl-divider-label { font-size: 12px; font-weight: 500; color: #0D9488; white-space: nowrap; background: #E0F2F1; padding: 3px 12px; border-radius: 20px; }

.pl-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.pl-table th { text-align: left; font-size: 11px; font-weight: 500; color: #0D9488; text-transform: uppercase; letter-spacing: 0.5px; padding: 0 12px 8px; border-bottom: 1.5px solid #e0f2f1; }
.pl-table td { padding: 11px 12px; border-bottom: 1px solid #f0fdfa; color: #333; vertical-align: middle; }
.pl-table tr:last-child td { border-bottom: none; }
.pl-table tr:hover td { background: #f8fffe; }
.pl-price { font-weight: 500; color: var(--coral); white-space: nowrap; }
.pl-tbc { font-size: 12px; color: #aaa; font-style: italic; }

@media (max-width: 640px) {
  .pl-print-grid { grid-template-columns: 1fr; }
}

/* ORDER TOTAL */
.order-total-section { margin-top: 1.5rem; }
.order-total-card { background: var(--teal-light); border: 1.5px solid var(--teal-border); border-radius: 12px; padding: 1.25rem 1.5rem; }
.order-total-row { display: flex; justify-content: space-between; align-items: center; font-size: 14px; color: #555; padding: 6px 0; }
.order-total-divider { height: 1.5px; background: var(--teal-border); margin: 0.75rem 0; }
.order-total-final { font-size: 16px; font-weight: 500; color: var(--teal-dark); }

/* LOGO PLACEMENT PAGE */
.lp-size-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-bottom: 1.5rem; }
.lp-size-card { background: #fff; border: 1.5px solid #e0f2f1; border-radius: 14px; padding: 1.5rem; }
.lp-badge-sm { display: inline-block; background: #E0F2F1; color: #0D9488; font-size: 12px; padding: 3px 10px; border-radius: 10px; font-weight: 500; margin-bottom: 0.75rem; }
.lp-badge-lg { display: inline-block; background: #FFE8E8; color: #CC3333; font-size: 12px; padding: 3px 10px; border-radius: 10px; font-weight: 500; margin-bottom: 0.75rem; }
.lp-size-card h3 { font-size: 17px; font-weight: 500; color: var(--teal-dark); margin-bottom: 0.5rem; }
.lp-size-card p { font-size: 14px; color: #666; line-height: 1.7; margin-bottom: 0.75rem; }
.lp-size-examples { display: flex; flex-direction: column; gap: 4px; margin-bottom: 0.75rem; }
.lp-size-examples span { font-size: 13px; color: #0D9488; }
.lp-price-tag { font-size: 12px; color: #888; background: var(--teal-light); padding: 6px 12px; border-radius: 8px; display: inline-block; }

.lp-tip { background: #FFF8E1; border: 1.5px solid #FFE082; border-radius: 12px; padding: 1.25rem; font-size: 14px; color: #666; line-height: 1.7; margin-bottom: 1.5rem; }
.lp-tip strong { color: #F57F17; }

.lp-method-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.lp-method-card { background: #fff; border: 1.5px solid #e0f2f1; border-radius: 14px; padding: 1.5rem; }
.lp-method-title { margin-bottom: 0.75rem; }
.lp-method-card p { font-size: 14px; color: #666; line-height: 1.7; margin-bottom: 0.75rem; }
.lp-method-best { font-size: 12px; color: #0D9488; background: var(--teal-light); padding: 6px 12px; border-radius: 8px; }

@media (max-width: 640px) {
  .lp-size-grid { grid-template-columns: 1fr; }
  .lp-method-grid { grid-template-columns: 1fr; }
}

/* PRODUCT CARD FOOTER PRICES */
.product-card-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 0.75rem; border-top: 0.5px solid #e0f2f1; margin-top: 0.75rem; gap: 1rem; flex-wrap: wrap; }
.product-card-price { display: flex; flex-direction: column; }
.product-price-from { font-size: 11px; color: #888; }
.product-price-value { font-size: 18px; font-weight: 500; color: var(--coral); }
.product-price-sub { font-size: 11px; color: #888; }

/* HOMEPAGE */
.hero { background: var(--teal-light); padding: 5rem 2rem; border-bottom: 1px solid var(--teal-border); }
.hero-inner { max-width: 680px; margin: 0 auto; text-align: center; }
.hero-title { font-size: 42px; font-weight: 600; color: var(--teal-dark); line-height: 1.2; margin-bottom: 1.25rem; }
.hero-highlight { color: var(--coral); }
.hero-sub { font-size: 17px; color: #555; line-height: 1.7; margin-bottom: 2rem; }
.hero-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.trust-bar { background: var(--coral); padding: 0.875rem 2rem; display: flex; gap: 2rem; justify-content: center; flex-wrap: wrap; }
.trust-item { font-size: 13px; font-weight: 500; color: #fff; white-space: nowrap; }

.service-card { background: #fff; border: 1.5px solid #e0f2f1; border-radius: 14px; padding: 1.5rem; display: flex; gap: 1rem; align-items: flex-start; transition: border-color 0.15s; }
.service-card:hover { border-color: var(--coral); }
.service-card-icon { width: 56px; height: 56px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 28px; flex-shrink: 0; }
.service-card-body h3 { font-size: 18px; font-weight: 600; color: var(--teal-dark); margin-bottom: 0.5rem; }
.service-card-body p { font-size: 14px; color: #666; line-height: 1.6; margin-bottom: 0.75rem; }
.service-card-link { font-size: 14px; color: var(--coral); font-weight: 500; }

.products-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px; margin-top: 2rem; }
.product-card { background: #fff; border: 1.5px solid #e0f2f1; border-radius: 14px; overflow: hidden; transition: border-color 0.15s; }
.product-card:hover { border-color: var(--coral); }
.product-img { height: 140px; display: flex; align-items: center; justify-content: center; font-size: 52px; overflow: hidden; }.product-body { padding: 1rem; }
.product-body h3 { font-size: 15px; font-weight: 600; color: var(--teal-dark); margin-bottom: 4px; }
.product-body p { font-size: 12px; color: #888; line-height: 1.5; margin-bottom: 0.75rem; }
.product-price-row { display: flex; align-items: center; justify-content: space-between; }
.product-from { font-size: 13px; font-weight: 500; color: var(--coral); }

.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 1.5rem; margin-top: 2rem; }
.step-card { text-align: center; padding: 1.5rem; background: #fff; border: 1.5px solid #e0f2f1; border-radius: 14px; }
.step-number { width: 40px; height: 40px; border-radius: 50%; background: var(--coral); color: #fff; font-size: 18px; font-weight: 600; display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; }
.step-card h3 { font-size: 15px; font-weight: 600; color: var(--teal-dark); margin-bottom: 0.5rem; }
.step-card p { font-size: 13px; color: #888; line-height: 1.6; }

.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.5rem; margin-top: 2rem; }
.why-card { background: #fff; border: 1.5px solid #e0f2f1; border-radius: 14px; padding: 1.5rem; }
.why-icon { font-size: 28px; margin-bottom: 0.75rem; }
.why-card h3 { font-size: 15px; font-weight: 600; color: var(--teal-dark); margin-bottom: 0.5rem; }
.why-card p { font-size: 13px; color: #888; line-height: 1.6; }

@media (max-width: 768px) {
  .hero-title { font-size: 28px; }
  .trust-bar { gap: 1rem; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
}
/* DASHBOARD */
.dash-stat { display: flex; flex-direction: column; align-items: center; background: #fff; border: 1.5px solid #e0f2f1; border-radius: 12px; padding: 0.75rem 1.25rem; min-width: 100px; text-align: center; }
.dash-stat-icon { font-size: 20px; margin-bottom: 4px; }
.dash-stat-num { font-size: 24px; font-weight: 600; color: var(--teal-dark); }
.dash-stat-label { font-size: 11px; color: #888; margin-top: 2px; }

.dash-tab { padding: 6px 16px; border-radius: 20px; border: 1.5px solid #e0f2f1; background: #fff; color: #666; font-size: 13px; font-weight: 500; cursor: pointer; font-family: inherit; transition: all 0.15s; }
.dash-tab:hover { border-color: var(--teal); color: var(--teal); }
.dash-tab.active { background: var(--teal); color: #fff; border-color: var(--teal); }

.dash-table { width: 100%; border-collapse: collapse; font-size: 13px; min-width: 900px; }
.dash-table th { text-align: left; font-size: 11px; font-weight: 500; color: #fff; background: var(--teal-dark); padding: 10px 12px; white-space: nowrap; }
.dash-table td { padding: 10px 12px; border-bottom: 1px solid #f0f0f0; vertical-align: middle; }
.dash-table tr:hover td { background: #f8fffe; }

.status-select { padding: 4px 8px; border-radius: 12px; border: none; font-size: 11px; font-weight: 600; cursor: pointer; font-family: inherit; }
.status-select.status-New { background: #FFE8E8; color: #CC3333; }
.status-select.status-In-progress { background: #FFF8E1; color: #F57F17; }
.status-select.status-Completed { background: #E8F5E9; color: #2E7D32; }
.status-select.status-Sent { background: #E3F2FD; color: #1565C0; }

.assign-select { padding: 4px 8px; border-radius: 6px; border: 1px solid #ddd; font-size: 12px; font-family: inherit; cursor: pointer; background: #fff; }
.assign-select:focus { outline: none; border-color: var(--teal); }

.tracking-input { padding: 5px 10px; border-radius: 6px; border: 1px solid #ddd; font-size: 12px; font-family: inherit; width: 130px; }
.tracking-input:focus { outline: none; border-color: var(--teal); }

.col-date { white-space: nowrap; }

/* WHATSAPP BUTTON */
.whatsapp-btn { position: fixed; bottom: 1.5rem; right: 1.5rem; width: 56px; height: 56px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 12px rgba(0,0,0,0.2); z-index: 998; text-decoration: none; transition: transform 0.2s; }
.whatsapp-btn:hover { transform: scale(1.1); }
.whatsapp-btn svg { width: 30px; height: 30px; fill: #fff; }
.whatsapp-tooltip { position: fixed; bottom: 2.25rem; right: 5rem; background: #134E4A; color: #fff; padding: 8px 14px; border-radius: 8px; font-size: 13px; font-weight: 500; white-space: nowrap; opacity: 0; pointer-events: none; transition: opacity 0.2s; z-index: 997; font-family: Inter, sans-serif; }
.whatsapp-btn:hover + .whatsapp-tooltip, .whatsapp-tooltip:hover { opacity: 1; }

/* ADD-ONS */
.addon-card { background: #fff; border: 1.5px solid #e0f2f1; border-radius: 12px; padding: 1.25rem; cursor: pointer; transition: border-color 0.2s, background 0.2s; user-select: none; }
.addon-card.selected { border-color: #0D9488; background: #F0FDFA; }
.addon-row { display: flex; align-items: center; gap: 1rem; }
.addon-icon { width: 48px; height: 48px; border-radius: 10px; background: #E0F2F1; display: flex; align-items: center; justify-content: center; font-size: 22px; flex-shrink: 0; }
.addon-body { flex: 1; }
.addon-name { font-size: 15px; font-weight: 500; color: #134E4A; margin-bottom: 2px; }
.addon-desc { font-size: 13px; color: #666; line-height: 1.5; }
.addon-price { font-size: 18px; font-weight: 500; color: var(--coral); white-space: nowrap; }
.addon-toggle { width: 24px; height: 24px; border-radius: 6px; border: 2px solid #0D9488; background: #fff; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: all 0.15s; font-size: 14px; font-weight: 600; color: #fff; }
.addon-card.selected .addon-toggle { background: #0D9488; }
.addon-card.selected .addon-toggle::after { content: '✓'; }
.addon-includes { display: none; margin-top: 0.75rem; padding-top: 0.75rem; border-top: 1px solid #e0f2f1; list-style: none; }
.addon-card.selected .addon-includes { display: block; }
.addon-includes li { font-size: 13px; color: #0D9488; padding: 3px 0; }
.addon-includes li::before { content: "✓ "; color: var(--coral); }

/* IMAGE CAROUSEL */
.carousel-wrap { position: relative; overflow: hidden; }
.carousel-arrow { position: absolute; top: 50%; transform: translateY(-50%); width: 28px; height: 28px; border-radius: 50%; background: rgba(255,255,255,0.9); border: 0.5px solid #e0e0e0; display: flex; align-items: center; justify-content: center; cursor: pointer; font-size: 16px; color: #134E4A; z-index: 2; transition: background 0.15s; }
.carousel-arrow:hover { background: #fff; }
.carousel-arrow.left { left: 6px; }
.carousel-arrow.right { right: 6px; }
.carousel-dots { position: absolute; bottom: 6px; left: 50%; transform: translateX(-50%); display: flex; gap: 4px; }
.carousel-dot { width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,0.5); cursor: pointer; transition: background 0.15s; border: none; padding: 0; }
.carousel-dot.active { background: #fff; }

.field-error {
  display: none;
  color: var(--coral);
  font-size: 12px;
  margin-top: 4px;
}

input.input-error,
select.input-error,
textarea.input-error {
  border-color: var(--coral);
}

.legal-section {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #f0f0f0;
}

.legal-section:last-child {
  border-bottom: none;
}

.legal-section h2 {
  font-size: 17px;
  font-weight: 600;
  color: var(--teal-dark);
  margin-bottom: 0.75rem;
}

.legal-section p, .legal-section li {
  font-size: 14px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 0.5rem;
}

.legal-section ul {
  padding-left: 1.25rem;
  margin-bottom: 0.75rem;
}