/* =====================================================
   Foto Mirković - Public Site CSS
   Inspired by fotograf-vencanja.rs design
   Font: Open Sans, colors: dark bg, #850000 accent
   ===================================================== */

*, *::before, *::after {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    font-family: 'Open Sans', Arial, sans-serif;
    font-weight: 300;
    color: #222;
    background: #111;
}

a {
    color: #850000;
    text-decoration: none;
}

a:hover {
    color: #b30000;
    text-decoration: underline;
}

/* =====================================================
   HEADER
   ===================================================== */

.site-header {
    background: #111;
    border-bottom: 1px solid #1e1e1e;
    padding: 16px 0;
    text-align: center;
}

.header-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo-img {
    max-height: 60px;
    width: auto;
}

/* =====================================================
   NAVIGATION
   ===================================================== */

.site-nav {
    background: #1a1a1a;
    border-bottom: 2px solid #850000;
}

.nav-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

.site-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
}

.site-menu li a {
    display: block;
    color: #ccc;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 16px 24px;
    text-decoration: none;
    transition: color 0.2s, background 0.2s;
}

.site-menu li a:hover,
.site-menu li a.active {
    color: #fff;
    background: #850000;
    text-decoration: none;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: #ccc;
    font-size: 24px;
    padding: 14px 0;
    cursor: pointer;
}

/* =====================================================
   HERO
   ===================================================== */

.hero {
    position: relative;
    min-height: 90vh;
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    background: rgba(0, 0, 0, 0.55);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 40px 20px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 300;
    color: #fff;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 16px;
    text-shadow: 0 2px 12px rgba(0,0,0,0.7);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #ddd;
    letter-spacing: 2px;
    margin-bottom: 40px;
    font-weight: 300;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Smaller hero for inner pages */
.page-hero {
    position: relative;
    min-height: 280px;
    background: url('https://fotograf-vencanja.rs/templates/template_home/images/page.jpeg') center/cover no-repeat;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.page-hero-sm {
    min-height: 200px;
}

/* =====================================================
   BUTTONS
   ===================================================== */

.btn-hero {
    display: inline-block;
    padding: 14px 32px;
    font-size: 14px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 600;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.25s;
    text-decoration: none;
}

.btn-hero-primary {
    background: #850000;
    color: #fff;
    border: 2px solid #850000;
}

.btn-hero-primary:hover {
    background: #b30000;
    border-color: #b30000;
    color: #fff;
    text-decoration: none;
}

.btn-hero-outline {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-hero-outline:hover {
    background: rgba(255,255,255,0.1);
    color: #fff;
    text-decoration: none;
}

/* =====================================================
   SECTIONS
   ===================================================== */

.services-section {
    background: #fff;
    padding: 80px 0;
}

.section-title {
    font-size: 1.8rem;
    font-weight: 300;
    color: #222;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.section-divider {
    width: 50px;
    height: 3px;
    background: #850000;
    margin: 0 auto 30px;
}

.contact-section .section-divider,
.contact-teaser-section .section-divider {
    margin: 0 0 30px;
}

.service-card {
    background: #f8f8f8;
    border-bottom: 3px solid #850000;
    padding: 36px 28px;
    height: 100%;
    transition: box-shadow 0.2s;
}

.service-card:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.service-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 12px;
    color: #111;
}

.service-link {
    display: inline-block;
    margin-top: 16px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #850000;
    text-transform: uppercase;
}

.service-link:hover {
    color: #b30000;
}

/* =====================================================
   CTA SECTION
   ===================================================== */

.cta-section {
    position: relative;
    background: url('https://fotograf-vencanja.rs/templates/template_home/images/page.jpeg') center/cover fixed no-repeat;
    padding: 80px 20px;
    text-align: center;
}

.cta-overlay {
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    background: rgba(0,0,0,0.68);
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: 2rem;
    font-weight: 300;
    color: #fff;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.cta-content p {
    color: #ccc;
    font-size: 1rem;
    margin-bottom: 32px;
    letter-spacing: 1px;
}

/* =====================================================
   CONTACT TEASER
   ===================================================== */

.contact-teaser-section {
    background: #111;
    padding: 80px 0;
    color: #ccc;
}

.contact-teaser-section .section-title {
    color: #fff;
}

.contact-teaser-section p {
    color: #aaa;
    line-height: 1.8;
}

.contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    line-height: 2.2;
}

.contact-list li {
    color: #bbb;
}

.contact-list a {
    color: #ccc;
}

.contact-list a:hover {
    color: #fff;
}

/* =====================================================
   CONTACT PAGE
   ===================================================== */

.contact-section {
    background: #fff;
    padding: 80px 0;
}

.contact-form .form-control {
    border-radius: 2px;
    border: 1px solid #ccc;
    font-size: 14px;
}

.contact-form .form-control:focus {
    border-color: #850000;
    box-shadow: 0 0 0 2px rgba(133,0,0,0.15);
}

/* =====================================================
   NARUCIVANJE PAGE (override login page to use layout)
   ===================================================== */

.narucivanje-section {
    background: #fff;
    padding: 60px 0;
}

/* =====================================================
   FOOTER
   ===================================================== */

.site-footer {
    background: #0d0d0d;
    border-top: 2px solid #850000;
    color: #666;
    font-size: 13px;
    text-align: center;
    padding: 40px 20px;
}

.footer-inner {
    max-width: 700px;
    margin: 0 auto;
}

.site-footer p {
    margin: 6px 0;
    line-height: 1.8;
}

.site-footer a {
    color: #999;
}

.site-footer a:hover {
    color: #fff;
}

.footer-copy {
    color: #444;
    font-size: 12px;
    margin-top: 16px !important;
}

/* =====================================================
   SITE CONTENT
   ===================================================== */

.site-content {
    min-height: 60vh;
}

/* =====================================================
   ORDER WIZARD
   ===================================================== */

.order-wizard-wrap {
    background: #f4f4f4;
    min-height: 80vh;
}

/* Step indicator bar */
.wizard-steps-bar {
    background: #1a1a1a;
    border-bottom: 2px solid #850000;
    padding: 0;
}

.wizard-steps {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 0;
}

.wizard-step {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 28px;
    color: #666;
    font-size: 13px;
    letter-spacing: 0.5px;
    position: relative;
    cursor: default;
}

.wizard-step:not(:last-child)::after {
    content: '\2192';
    position: absolute;
    right: -4px;
    color: #444;
    font-size: 16px;
}

.step-num {
    display: inline-flex;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #444;
    color: #aaa;
    font-size: 13px;
    font-weight: 700;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.2s, color 0.2s;
}

.wizard-step.active .step-num {
    background: #850000;
    color: #fff;
}

.wizard-step.active .step-label {
    color: #fff;
    font-weight: 600;
}

.wizard-step.completed .step-num {
    background: #2d7a2d;
    color: #fff;
}

.wizard-step.completed .step-label {
    color: #aaa;
}

/* Sticky cart bar */
.wizard-cart-bar {
    background: #850000;
    color: #fff;
    padding: 10px 0;
    font-size: 14px;
    position: sticky;
    top: 0;
    z-index: 100;
}

.cart-bar-title {
    color: #ffd0d0;
}

.cart-bar-expires {
    color: #ffb0b0;
    font-size: 0.88em;
    opacity: 0.9;
}

/* Summary button in sticky bar */
.cart-bar-inner { position: relative; }

.cart-bar-summary-btn {
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 6px;
    color: #fff;
    cursor: pointer;
    font-size: 0.9em;
    padding: 5px 14px;
    transition: background 0.2s;
}
.cart-bar-summary-btn:hover,
.cart-bar-summary-btn:focus {
    background: rgba(255,255,255,0.22);
    outline: none;
}
.cart-bar-summary-btn strong { font-weight: 700; }
.cart-bar-preview-hint {
    font-size: 0.78em;
    opacity: 0.7;
    margin-left: 4px;
}

/* Cart Drawer (side panel) */
.cart-drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 1040;
    display: none;
}
.cart-drawer-overlay.open { display: block; }

.cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 360px;
    max-width: 95vw;
    background: #fff;
    z-index: 1050;
    display: flex;
    flex-direction: column;
    box-shadow: -4px 0 28px rgba(0,0,0,0.18);
    transform: translateX(100%);
    transition: transform 0.28s cubic-bezier(.4,0,.2,1);
    overflow: hidden;
}
.cart-drawer.open { transform: translateX(0); }

.cart-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px 12px;
    border-bottom: 1px solid #eee;
    flex-shrink: 0;
}
.cart-drawer-title {
    margin: 0;
    font-size: 1rem;
    font-weight: 700;
}
.cart-drawer-close {
    background: none;
    border: none;
    font-size: 1.6rem;
    line-height: 1;
    cursor: pointer;
    color: #999;
    padding: 0;
    transition: color 0.15s;
}
.cart-drawer-close:hover { color: #111; }

/* Body — no scroll, fits content */
.cart-drawer-body {
    flex: 1;
    padding: 12px 16px 6px;
    overflow-x: hidden;
    overflow-y: hidden;
}

.cart-drawer-section { margin-bottom: 12px; }
.cart-drawer-section h6 {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #aaa;
    margin-bottom: 8px;
}

/* Items as photo cards grid */
.cart-drawer-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.cart-drawer-list li {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #f8f8f8;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 6px 6px 8px;
    width: 112px;
    min-width: 0;
    overflow: hidden;
    font-size: 0.84rem;
}
.cart-drawer-thumb {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 5px;
    border: 1px solid #ddd;
    display: block;
}
.cart-drawer-item-info { display: none; }
.cart-drawer-item-meta { display: none; }
.cart-drawer-item-name {
    font-size: 0.72rem;
    font-weight: 600;
    text-align: center;
    margin-top: 5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
}
/* X button — top-right corner */
.cart-drawer-list .btn-remove-cart {
    position: absolute;
    top: 3px;
    right: 3px;
    background: rgba(180,0,0,0.82);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 11px;
    line-height: 20px;
    text-align: center;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s;
}
.cart-drawer-list .btn-remove-cart:hover { background: #b40000; }

/* Cart / gallery photo modal */
.cart-photo-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1100;
    background: rgba(0,0,0,0.92);
    align-items: center;
    justify-content: center;
}
.cart-photo-modal.open {
    display: flex;
}
.cart-photo-modal-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 92vw;
    max-height: 92vh;
}
.cart-photo-modal img {
    max-width: 90vw;
    max-height: 82vh;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 4px 40px rgba(0,0,0,0.6);
    display: block;
}
.cart-photo-modal-caption {
    color: rgba(255,255,255,0.75);
    font-size: 0.9rem;
    margin-top: 10px;
    text-align: center;
}
.cart-photo-modal-close {
    position: absolute;
    top: 16px;
    right: 20px;
    background: rgba(255,255,255,0.12);
    border: none;
    color: #fff;
    font-size: 2rem;
    line-height: 1;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s;
}
.cart-photo-modal-close:hover { background: rgba(255,255,255,0.25); }

/* Thumb cursor hint */
.cart-drawer-thumb { cursor: zoom-in; }

.cart-drawer-empty {
    text-align: center;
    color: #ccc;
    padding: 24px 0;
    font-size: 0.9rem;
}

/* Footer */
.cart-drawer-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 16px 14px;
    border-top: 1px solid #eee;
    flex-shrink: 0;
}
.cart-drawer-footer-total { font-size: 0.95rem; color: #333; }
.cart-drawer-footer-total strong { color: #c0392b; font-size: 1.05rem; }

.cart-bar-summary strong { font-weight: 700; }

/* Cenovnik toggle */
.cenovnik-section {
    background: #fff;
    padding: 16px 0;
    border-bottom: 1px solid #e0e0e0;
}

.cenovnik-toggle {
    cursor: pointer;
    color: #850000;
    font-size: 14px;
    font-weight: 600;
    margin: 0;
    user-select: none;
}

.cenovnik-toggle:hover {
    color: #b30000;
}

/* Wizard panels */
.wizard-panel {
    display: none;
}

.wizard-panel.active {
    display: block;
}

/* Panel header */
.wizard-panel-header {
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid #850000;
}

.wizard-panel-header h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #111;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.wizard-panel-desc {
    color: #555;
    font-size: 14px;
    margin-bottom: 8px;
}

.wizard-limit-info {
    font-size: 13px;
    color: #555;
    padding: 8px 12px;
    background: #f8f8f8;
    border-left: 3px solid #850000;
    display: inline-block;
}

/* Photo grid */
.photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
    margin-bottom: 24px;
}

.photo-card {
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 1px 6px rgba(0,0,0,0.1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.2s;
}

.photo-card:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.photo-card.in-cart {
    border: 2px solid #2d7a2d;
}

.photo-card-img-wrap {
    position: relative;
    overflow: hidden;
    background: #111;
}

.photo-card-img-wrap img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
    transition: opacity 0.2s;
}

.photo-card-img-wrap:hover img {
    opacity: 0.85;
}

.photo-card-added-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    background: #2d7a2d;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 20px;
}

.photo-card-footer {
    padding: 10px 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.photo-card-name {
    font-size: 12px;
    color: #555;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.photo-card-actions {
    display: flex;
    gap: 6px;
    align-items: center;
}

.qty-select {
    flex: 1;
    padding: 5px 8px;
    font-size: 13px;
    border: 1px solid #ccc;
    border-radius: 3px;
    background: #f9f9f9;
}

.btn-add-to-cart {
    flex-shrink: 0;
    background: #850000;
    color: #fff;
    border: none;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 3px;
    cursor: pointer;
    transition: background 0.2s;
    white-space: nowrap;
}

.btn-add-to-cart:hover {
    background: #b30000;
}

.btn-add-to-cart.added {
    background: #2d7a2d;
}

.btn-add-to-cart.added:hover {
    background: #1e5c1e;
}

/* =====================================================
   EXTRAS (Step 4 - Dodatne fotografije)
   ===================================================== */

#panel-4 .photo-grid {
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}

.extra-photo-card {
    background: #fff;
    border: 1px solid #e0d5c5;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 1px 4px rgba(0,0,0,.06);
    display: flex;
    flex-direction: column;
}

.extra-photo-card .photo-card-footer {
    background: #faf7f2;
}

.extra-photo-card .extra-card-actions {
    padding: 8px 10px 10px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.extra-card-actions .extra-option-select {
    font-size: 12px;
    padding: 4px 28px 4px 6px;
    border: 1px solid #ccc;
    border-radius: 3px;
    width: 100%;
    min-width: 0;
    max-width: 100%;
    box-sizing: border-box;
    -webkit-appearance: auto;
    -moz-appearance: auto;
    appearance: auto;
}

.extra-options-info {
    font-size: 11px;
    color: #888;
    margin-top: 2px;
    margin-bottom: 2px;
}

.btn-add-to-extras {
    display: block;
    width: 100%;
    padding: 6px 0;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    background: #c8a96e;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    transition: background .2s;
    text-align: center;
}

.btn-add-to-extras:hover {
    background: #a8893e;
}

.extra-option-badge {
    display: inline-block;
    background: #fff3e0;
    color: #e65100;
    font-size: 11px;
    padding: 1px 7px;
    border-radius: 3px;
    margin-right: 3px;
    font-weight: 600;
}

/* Cart preview (per step) */
.wizard-cart-preview {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    padding: 16px 20px;
    margin-bottom: 24px;
}

.wizard-cart-preview h6 {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #850000;
    margin-bottom: 10px;
}

.cart-preview-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cart-preview-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 13px;
    color: #333;
}

.cart-preview-list li:last-child {
    border-bottom: none;
}

.cart-preview-list .empty-msg {
    color: #aaa;
    font-style: italic;
    display: block;
}

.btn-remove-cart {
    background: none;
    border: 1px solid #ccc;
    color: #850000;
    font-size: 11px;
    padding: 2px 8px;
    border-radius: 3px;
    cursor: pointer;
    transition: background 0.15s;
    flex-shrink: 0;
}

.btn-remove-cart:hover {
    background: #fce8e8;
    border-color: #850000;
}

/* Wizard nav buttons */
.wizard-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0 8px;
    border-top: 1px solid #e0e0e0;
    margin-top: 8px;
}

.btn-wizard-back {
    background: #fff;
    border: 1px solid #ccc;
    color: #555;
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 3px;
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s;
}

.btn-wizard-back:hover {
    border-color: #850000;
    color: #850000;
}

.btn-wizard-next {
    background: #850000;
    border: none;
    color: #fff;
    padding: 12px 32px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
    border-radius: 3px;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-wizard-next:hover {
    background: #b30000;
}

.btn-wizard-submit {
    background: #850000;
    border: none;
    color: #fff;
    padding: 12px 32px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.5px;
    border-radius: 3px;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-wizard-submit:hover {
    background: #b30000;
}

/* =====================================================
   FLOW SELECTOR (panel-0)
   ===================================================== */

.flow-selector {
    display: none;
}

.flow-selector.active {
    display: block;
}

.flow-card {
    background: #fff;
    border: 2px solid #e0d5c5;
    border-radius: 8px;
    padding: 28px 24px 20px;
    text-align: center;
    cursor: pointer;
    transition: border-color .2s, box-shadow .2s, transform .15s;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.flow-card:hover {
    border-color: #c8a96e;
    box-shadow: 0 4px 20px rgba(200,169,110,.25);
    transform: translateY(-3px);
}

.flow-card--full {
    border-color: #c8a96e;
}

.flow-card-badge {
    display: inline-block;
    background: #f5f0e8;
    color: #6d4c41;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 3px 12px;
    border-radius: 20px;
    margin-bottom: 14px;
}

.flow-card--extras .flow-card-badge {
    background: #fff3e0;
    color: #e65100;
}

.flow-card-title {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.flow-card-price {
    font-size: 26px;
    font-weight: 800;
    color: #850000;
    margin-bottom: 10px;
    line-height: 1;
}

.flow-card-price small {
    font-size: 14px;
    font-weight: 400;
    color: #666;
}

.flow-card-desc {
    font-size: 13px;
    color: #555;
    margin-bottom: 10px;
}

.flow-card-options {
    margin-top: 8px;
    margin-bottom: 12px;
}

.flow-card-options-label {
    font-size: 11px;
    color: #888;
}

.flow-card-cta {
    margin-top: auto;
    padding-top: 16px;
    font-size: 13px;
    font-weight: 700;
    color: #c8a96e;
    letter-spacing: 0.3px;
}

.flow-card:hover .flow-card-cta {
    color: #a8893e;
}

/* =====================================================
   WIZARD STEP — SKIPPED STATE
   ===================================================== */

.wizard-step.skipped .step-num {
    background: #e0e0e0;
    color: #aaa;
}

.wizard-step.skipped .step-label {
    color: #bbb;
    text-decoration: line-through;
}

/* Step 5 — form section */
.order-form-section {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    padding: 24px 28px;
    margin-top: 24px;
}

.order-form-title {
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #850000;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

/* Step 4 order summary */
.order-summary-box {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    padding: 20px 24px;
    margin-bottom: 24px;
}

.order-summary-box h5 {
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #850000;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 1px solid #eee;
}

.summary-category {
    margin-bottom: 12px;
}

.summary-category strong {
    display: block;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #555;
    margin-bottom: 4px;
}

.summary-category ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.summary-category ul li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    padding: 5px 0;
    border-bottom: 1px solid #f5f5f5;
    color: #333;
}

/* Price breakdown table */
.price-breakdown {
    border-top: 1px solid #eee;
    padding-top: 12px;
}

.price-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.price-table td {
    padding: 6px 4px;
    color: #333;
}

.price-table .text-right {
    text-align: right;
}

.price-total-row td {
    border-top: 2px solid #850000;
    padding-top: 10px;
    font-size: 16px;
    color: #111;
}

/* Loader */
.loader {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: #fff;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader.hidden {
    display: none;
}

/* =====================================================
   RESPONSIVE
   ===================================================== */

@media (max-width: 768px) {
    .wizard-steps {
        gap: 0;
    }

    .wizard-step {
        padding: 12px 10px;
        font-size: 11px;
        gap: 6px;
    }

    .step-label {
        display: none;
    }

    .wizard-step.active .step-label {
        display: inline;
    }

    .wizard-step:not(:last-child)::after {
        right: -2px;
        font-size: 12px;
    }

    .photo-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 10px;
    }

    .photo-card-img-wrap img {
        height: 140px;
    }

    .photo-card-actions {
        flex-direction: column;
    }

    .btn-add-to-cart {
        width: 100%;
    }

    .wizard-cart-bar .d-flex {
        flex-direction: column;
        gap: 4px;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .site-menu {
        display: none;
        flex-direction: column;
        background: #1a1a1a;
    }

    .site-menu.open {
        display: flex;
    }

    .site-menu li a {
        padding: 14px 20px;
        border-top: 1px solid #222;
    }

    .nav-toggle {
        display: block;
    }

    .hero {
        background-attachment: scroll;
        min-height: 70vh;
    }

    .cta-section {
        background-attachment: scroll;
    }

    .page-hero {
        background-attachment: scroll;
    }
}
