/* ═══════════════════════════════════════════════════
   MARKZAD — INNER PAGES STYLESHEET
   All subpages: Services, Single Service, About,
   Contact, Shop, Product, Blog, Article
═══════════════════════════════════════════════════ */

/* ── PAGE HERO (inner pages) ── */
.page-hero {
    position: relative;
    padding: 134px 0 18px;
    background: var(--primary);
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../imgs/pattern-color.png') center/contain;
    opacity: 0.5;
    background-size: cover;
}
.page-hero-inner { position: relative; z-index: 2; }
.page-hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(201,168,76,0.18);
    border: 1px solid rgba(201,168,76,0.4);
    color: var(--accent);
    font-size: 13px;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 99px;
    margin-bottom: 18px;
}
.page-hero h1 {
    font-size: clamp(28px, 5vw, 52px);
    font-weight: 900;
    color: #fff;
    line-height: 1.25;
    margin-bottom: 16px;
}
.page-hero h1 .text-gold { color: var(--accent); }
.page-hero p {
    font-size: 16px;
    color: rgba(255,255,255,0.72);
    max-width: 600px;
    line-height: 1.8;
}
.page-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 20px 0 0;
    font-size: 13px;
}
.page-breadcrumb li { color: rgba(255,255,255,0.5); }
.page-breadcrumb li a { color: var(--accent); text-decoration: none; }
.page-breadcrumb li.sep { color: rgba(255,255,255,0.25); }

/* ── INNER PAGE BODY PADDING ── */
.inner-page { padding-top: 120px; }

/* ── SERVICES ALL PAGE ── */
.services-all-section { padding: 80px 0; background: var(--bg-light); }
.services-all-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.svc-all-card {
    background: #fff;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    color: inherit;
    cursor: pointer;
    text-decoration: none;
}
.svc-all-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}
.svc-all-card-img {
    position: relative;
    height: 220px;
    overflow: hidden;
}
.svc-all-card-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}
.svc-all-card:hover .svc-all-card-img img { transform: scale(1.06); }
.svc-all-card-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to bottom, transparent 40%, rgba(0,34,73,0.7));
}
.svc-badge {
    position: absolute;
    top: 14px; right: 14px;
    background: var(--accent);
    color: var(--primary);
    font-size: 11px;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 99px;
}
.svc-all-card-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
    background: url('layout/imgs/pattern-white.jpg') center/180px, #fff;
}
.svc-all-icon {
    width: 52px; height: 52px;
    border-radius: var(--radius-sm);
    background: var(--accent-pale);
    border: 1.5px solid rgba(201,168,76,0.3);
    display: flex; align-items: center; justify-content: center;
    color: var(--accent);
    font-size: 24px;
    margin-bottom: 14px;
}
.svc-all-card-body h3 {
    font-size: 17px; font-weight: 800;
    color: var(--primary);
    margin-bottom: 8px;
}
.svc-all-card-body p {
    font-size: 14px; color: var(--text-muted);
    line-height: 1.7; flex: 1; margin-bottom: 18px;
}
.svc-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 99px;
    background: var(--primary);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.25s;
    align-self: flex-start;
}
.svc-all-btn:hover {
    background: var(--accent);
    color: var(--primary);
    transform: translateX(-4px);
}

@media (max-width: 991px) { .services-all-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 575px) { .services-all-grid { grid-template-columns: 1fr; } }

/* ── SINGLE SERVICE PAGE ── */
.service-detail-section { padding: 80px 0; background: var(--bg-light); }
.service-detail-img {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}
.service-detail-img img { width: 100%; height: 420px; object-fit: cover; }
.service-gallery-swiper { width: 100%; background: #fff; }
.service-gallery-swiper .swiper-slide a { display: block; cursor: zoom-in; }
.service-gallery-swiper .swiper-button-next,
.service-gallery-swiper .swiper-button-prev {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.9);
    color: var(--primary);
    --swiper-navigation-size: 16px;
    box-shadow: var(--shadow-sm);
}
.service-gallery-swiper .swiper-button-next:hover,
.service-gallery-swiper .swiper-button-prev:hover {
    background: var(--accent);
    color: var(--primary);
}
.service-gallery-swiper .swiper-pagination-bullet-active { background: var(--accent); }
.service-detail-content h2 {
    font-size: clamp(22px, 3vw, 32px);
    font-weight: 900; color: var(--primary); margin-bottom: 16px;
}
.service-detail-content p { font-size: 15px; color: var(--text-muted); line-height: 1.85; margin-bottom: 14px; }
.service-subtitle {
    font-size: 17px;
    font-weight: 800;
    color: var(--primary);
    margin: 22px 0 10px;
}
.service-features-list { list-style: none; padding: 0; margin: 20px 0; }
.service-features-list li {
    display: flex; align-items: flex-start; gap: 10px;
    padding: 10px 0; border-bottom: 1px solid var(--border-light);
    font-size: 14px; color: var(--text-main);
}
.service-features-list li i { color: var(--accent); font-size: 16px; margin-top: 1px; flex-shrink: 0; }
.service-info-chip {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: var(--accent-pale);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(201,168,76,0.3);
}
.service-info-chip i { color: var(--accent); font-size: 18px; }
.service-info-chip strong {
    display: block;
    font-size: 13px;
    color: var(--primary);
}
.service-info-chip span {
    display: block;
    font-size: 12px;
    color: var(--text-muted);
}
.service-cta-hero {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 14px 32px; border-radius: 99px;
    background: var(--accent); color: var(--primary);
    font-size: 15px; font-weight: 800;
    text-decoration: none;
    box-shadow: 0 8px 30px var(--accent-glow);
    transition: all 0.28s;
}
.service-cta-hero:hover { background: var(--primary); color: var(--accent); transform: translateY(-3px); }

/* Pricing cards */
.pricing-section { padding: 80px 0; background: var(--bg-services); }
.pricing-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.pricing-card {
    background: #fff; border-radius: var(--radius-md);
    padding: 36px 28px; text-align: center;
    box-shadow: var(--shadow-sm);
    position: relative; overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 2px solid transparent;
}
.pricing-card.featured {
    border-color: var(--accent);
    box-shadow: var(--shadow-md);
    transform: translateY(-8px);
}
.pricing-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.pricing-card.featured:hover { transform: translateY(-14px); }
.pricing-featured-badge {
    position: absolute; top: 0; right: 24px;
    background: var(--accent); color: var(--primary);
    font-size: 11px; font-weight: 800;
    padding: 4px 16px; border-radius: 0 0 10px 10px;
}
.pricing-icon {
    width: 64px; height: 64px; border-radius: 50%;
    background: var(--accent-pale); border: 2px solid rgba(201,168,76,0.3);
    display: flex; align-items: center; justify-content: center;
    color: var(--accent); font-size: 28px;
    margin: 0 auto 16px;
}
.pricing-name { font-size: 14px; font-weight: 700; color: var(--text-muted); margin-bottom: 8px; }
.pricing-price { font-size: 38px; font-weight: 900; color: var(--primary); line-height: 1; }
.pricing-price span { font-size: 14px; font-weight: 500; color: var(--text-muted); }
.pricing-divider { height: 1px; background: var(--border-light); margin: 20px 0; }
.pricing-features { list-style: none; padding: 0; text-align: right; }
.pricing-features li {
    display: flex; align-items: center; gap: 8px;
    font-size: 13.5px; padding: 7px 0;
    color: var(--text-main); border-bottom: 1px solid rgba(0,0,0,0.04);
}
.pricing-features li i { color: var(--accent); flex-shrink: 0; }
.pricing-features li.disabled { color: var(--text-muted); text-decoration: line-through; }
.pricing-features li.disabled i { color: #ccc; }
.btn-pricing {
    display: block; width: 100%;
    padding: 13px; border-radius: 99px;
    background: var(--primary); color: #fff;
    font-size: 14px; font-weight: 800;
    text-decoration: none; margin-top: 24px;
    transition: all 0.25s; text-align: center;
}
.btn-pricing:hover { background: var(--accent); color: var(--primary); transform: translateY(-2px); }
.pricing-card.featured .btn-pricing { background: var(--accent); color: var(--primary); }
.pricing-card.featured .btn-pricing:hover { background: var(--primary); color: var(--accent); }

@media (max-width: 767px) { .pricing-grid { grid-template-columns: 1fr; } .pricing-card.featured { transform: none; } }

/* Order form section */
.order-form-section { padding: 80px 0; background: var(--bg-light); }
.order-form-wrap {
    background: #fff; border-radius: var(--radius-lg);
    padding: 48px; box-shadow: var(--shadow-md);
    max-width: 720px; margin: 0 auto;
}
.order-form-title { text-align: center; margin-bottom: 36px; }
.order-form-title h2 { font-size: 26px; font-weight: 900; color: var(--primary); }
.order-form-title p { color: var(--text-muted); font-size: 14px; margin-top: 8px; }
.order-form-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
}
.order-field { display: flex; flex-direction: column; gap: 6px; }
.order-field.full { grid-column: 1/-1; }
.order-field label { font-size: 13px; font-weight: 700; color: var(--primary); }
.order-field input, .order-field select, .order-field textarea {
    padding: 12px 16px;
    border: 1.5px solid var(--border-light);
    border-radius: var(--radius-sm);
    font-family: var(--font); font-size: 14px;
    color: var(--text-main);
    background: var(--bg-light);
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
}
.order-field input:focus, .order-field select:focus, .order-field textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-glow);
}
.order-field textarea { resize: vertical; min-height: 100px; }
.btn-order-submit {
    width: 100%; padding: 16px; border: none;
    border-radius: 99px; background: var(--accent);
    color: var(--primary); font-size: 16px; font-weight: 900;
    font-family: var(--font); cursor: pointer;
    transition: all 0.28s;
    box-shadow: 0 8px 30px var(--accent-glow);
}
.btn-order-submit:hover { background: var(--primary); color: var(--accent); transform: translateY(-3px); }
@media (max-width: 575px) { .order-form-grid { grid-template-columns: 1fr; } .order-form-wrap { padding: 24px; } }

/* ── ABOUT PAGE ── */
.about-story-section { padding: 80px 0; background: var(--bg-light); }
.about-story-img { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.about-story-img img { width: 100%; height: 460px; object-fit: cover; }
.about-story-content .section-tag { display: inline-block; margin-bottom: 12px; }
.about-story-content h2 { font-size: clamp(22px, 3vw, 34px); font-weight: 900; color: var(--primary); margin-bottom: 20px; }
.about-story-content p { font-size: 15px; color: var(--text-muted); line-height: 1.9; margin-bottom: 14px; }
.about-stats-row {
    display: flex; gap: 24px; margin-top: 28px; flex-wrap: wrap;
}
.about-stat {
    flex: 1; min-width: 100px; text-align: center;
    padding: 20px 16px; border-radius: var(--radius-md);
    background: var(--accent-pale); border: 1.5px solid rgba(201,168,76,0.25);
}
.about-stat .num { font-size: 32px; font-weight: 900; color: var(--primary); line-height: 1; }
.about-stat .lbl { font-size: 12px; color: var(--text-muted); margin-top: 4px; }

.values-section { padding: 80px 0; background: var(--bg-services); }
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.value-card {
    background: #fff; border-radius: var(--radius-md);
    padding: 32px 24px; text-align: center;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s, box-shadow 0.3s;
}
.value-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.value-icon {
    width: 64px; height: 64px; border-radius: 50%;
    background: var(--accent-pale); border: 2px solid rgba(201,168,76,0.3);
    display: flex; align-items: center; justify-content: center;
    color: var(--accent); font-size: 26px; margin: 0 auto 16px;
}
.value-card h4 { font-size: 15px; font-weight: 800; color: var(--primary); margin-bottom: 8px; }
.value-card p { font-size: 13px; color: var(--text-muted); line-height: 1.7; }
@media (max-width: 991px) { .values-grid { grid-template-columns: repeat(1, 1fr); } }
@media (max-width: 575px) { .values-grid { grid-template-columns: 1fr; } }

.certs-section { padding: 60px 0; background: var(--bg-light); }
.certs-grid { display: flex; flex-wrap: wrap; gap: 20px; justify-content: center; }
.cert-badge {
    display: flex; align-items: center; gap: 12px;
    padding: 16px 24px; border-radius: var(--radius-md);
    background: #fff; box-shadow: var(--shadow-sm);
    border: 1.5px solid rgba(201,168,76,0.2);
    transition: transform 0.25s;
}
.cert-badge:hover { transform: translateY(-4px); }
.cert-badge i { font-size: 28px; color: var(--accent); }
.cert-badge span { font-size: 13px; font-weight: 700; color: var(--primary); }

/* ── CONTACT PAGE ── */
.contact-section { padding: 80px 0; background: var(--bg-light); }
.contact-info-card {
    background: var(--primary); border-radius: var(--radius-lg);
    padding: 40px 36px; height: 100%;
    background-image: url('layout/imgs/pattern-color.png');
    background-attachment: fixed; background-size: contain;
    background-blend-mode: soft-light;
}
.contact-info-card h3 { font-size: 22px; font-weight: 900; color: #fff; margin-bottom: 24px; }
.contact-info-item {
    display: flex; align-items: flex-start; gap: 14px;
    padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.1);
}
.contact-info-item:last-of-type { border-bottom: none; }
.cii-icon {
    width: 44px; height: 44px; border-radius: 50%;
    background: rgba(201,168,76,0.18); border: 1.5px solid rgba(201,168,76,0.35);
    display: flex; align-items: center; justify-content: center;
    color: var(--accent); font-size: 18px; flex-shrink: 0;
}
.cii-text strong { display: block; font-size: 12px; color: rgba(255,255,255,0.55); font-weight: 700; margin-bottom: 2px; }
.cii-text a, .cii-text span { font-size: 15px; color: #fff; text-decoration: none; font-weight: 600; }
.contact-socials { display: flex; gap: 10px; margin-top: 24px; }
.contact-socials a {
    width: 40px; height: 40px; border-radius: 50%;
    background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.18);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.7); font-size: 16px;
    text-decoration: none; transition: all 0.22s;
}
.contact-socials a:hover { background: var(--accent); color: var(--primary); transform: translateY(-3px); }
.wa-contact-btn {
    display: flex; align-items: center; gap: 10px; justify-content: center;
    padding: 14px; border-radius: var(--radius-md);
    background: #25d366; color: #fff;
    font-size: 15px; font-weight: 800; text-decoration: none;
    margin-top: 20px; transition: all 0.25s;
}
.wa-contact-btn:hover { background: #1ebe5d; transform: translateY(-2px); }

.contact-form-wrap {
    background: #fff; border-radius: var(--radius-lg);
    padding: 40px; box-shadow: var(--shadow-sm); height: 100%;
}
.contact-form-wrap h3 { font-size: 22px; font-weight: 900; color: var(--primary); margin-bottom: 24px; }
.contact-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.contact-field label { font-size: 13px; font-weight: 700; color: var(--primary); }
.contact-field input, .contact-field textarea {
    padding: 12px 16px;
    border: 1.5px solid var(--border-light);
    border-radius: var(--radius-sm);
    font-family: var(--font); font-size: 14px; color: var(--text-main);
    background: var(--bg-light); outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.contact-field input:focus, .contact-field textarea:focus {
    border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-glow);
}
.contact-field textarea { min-height: 120px; resize: vertical; }
.btn-contact-send {
    width: 100%; padding: 14px; border: none;
    border-radius: 99px; background: var(--primary);
    color: #fff; font-size: 15px; font-weight: 800;
    font-family: var(--font); cursor: pointer; transition: all 0.25s;
}
.btn-contact-send:hover { background: var(--accent); color: var(--primary); transform: translateY(-2px); }
.map-section { padding: 0 0 80px; }
.map-wrap { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.map-wrap iframe { display: block; }

/* ── SHOP PAGE ── */
.shop-section { padding: 80px 0; background: var(--bg-light); }
.shop-filter-bar {
    display: flex; flex-wrap: wrap; gap: 10px;
    margin-bottom: 40px;
}
.filter-btn {
    padding: 9px 22px; border-radius: 99px;
    background: #fff; border: 1.5px solid var(--border-light);
    font-family: var(--font); font-size: 13.5px; font-weight: 700;
    color: var(--text-muted); cursor: pointer;
    transition: all 0.22s;
}
.filter-btn:hover, .filter-btn.active {
    background: var(--primary); color: #fff; border-color: var(--primary);
    box-shadow: var(--shadow-sm);
}
.products-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.product-card {
    background: #fff; border-radius: var(--radius-md);
    overflow: hidden; box-shadow: var(--shadow-sm);
    transition: transform 0.3s, box-shadow 0.3s;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.product-card-img {
    position: relative; height: 220px; overflow: hidden;
    background: var(--accent-pale);
}
.product-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.product-card:hover .product-card-img img { transform: scale(1.08); }
.product-card-badge {
    position: absolute; top: 12px; right: 12px;
    background: #e02020; color: #fff;
    font-size: 11px; font-weight: 800;
    padding: 3px 10px; border-radius: 99px;
}
.product-card-badge.new { background: var(--accent); color: var(--primary); }
.product-card-body { padding: 18px; }
.product-card-body h4 { font-size: 14px; font-weight: 800; color: var(--primary); margin-bottom: 6px; line-height: 1.4; }
.product-card-body .price { font-size: 18px; font-weight: 900; color: var(--accent); margin-bottom: 14px; }
.product-card-body .price del { font-size: 13px; color: var(--text-muted); margin-right: 6px; font-weight: 500; }
.btn-add-cart {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    width: 100%; padding: 10px; border-radius: 99px;
    background: var(--primary); color: #fff;
    font-size: 13px; font-weight: 800; font-family: var(--font);
    border: none; cursor: pointer; transition: all 0.25s;
    text-decoration: none;
}
.btn-add-cart:hover { background: var(--accent); color: var(--primary); }
@media (max-width: 991px) { .products-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 400px) { .products-grid { grid-template-columns: 1fr; } }

/* ── SINGLE PRODUCT PAGE ── */
.product-detail-section { padding: 80px 0; background: var(--bg-light); }
.product-gallery-main {
    border-radius: var(--radius-lg); overflow: hidden;
    box-shadow: var(--shadow-md); margin-bottom: 12px;
}
.product-gallery-main img { width: 100%; height: 420px; object-fit: cover; }
.product-thumbs { display: flex; gap: 10px; }
.product-thumb {
    width: 80px; height: 80px; border-radius: var(--radius-sm);
    overflow: hidden; cursor: pointer; border: 2px solid transparent;
    transition: border-color 0.2s; flex-shrink: 0;
}
.product-thumb.active { border-color: var(--accent); }
.product-thumb img { width: 100%; height: 100%; object-fit: cover; }
.product-info h1 { font-size: clamp(20px, 3vw, 30px); font-weight: 900; color: var(--primary); margin-bottom: 8px; }
.product-desc { font-size: 14px; color: var(--text-muted); line-height: 1.8; margin-bottom: 16px; }
.product-availability {
    display: inline-flex; align-items: center; gap: 6px;
    background: rgba(40,200,80,0.1); color: #1a8a35;
    border: 1px solid rgba(40,200,80,0.3);
    font-size: 12px; font-weight: 700;
    padding: 4px 14px; border-radius: 99px; margin-bottom: 16px;
}
.product-price { font-size: 36px; font-weight: 900; color: var(--accent); margin-bottom: 20px; }
.product-price del { font-size: 16px; color: var(--text-muted); font-weight: 500; margin-right: 8px; }
.qty-wrap { display: flex; align-items: center; gap: 0; margin-bottom: 24px; }
.qty-label { font-size: 14px; font-weight: 700; color: var(--primary); margin-left: 16px; }
.qty-btn {
    width: 40px; height: 40px; border-radius: var(--radius-sm);
    border: 1.5px solid var(--border-light);
    background: #fff; font-size: 18px; font-weight: 700;
    cursor: pointer; color: var(--primary); transition: all 0.2s;
    display: flex; align-items: center; justify-content: center;
}
.qty-btn:hover { background: var(--primary); color: #fff; border-color: var(--primary); }
.qty-input {
    width: 60px; text-align: center;
    border: 1.5px solid var(--border-light); border-right: none; border-left: none;
    height: 40px; font-family: var(--font); font-size: 16px; font-weight: 700;
    color: var(--primary); outline: none; background: var(--bg-light);
}
.product-actions { display: flex; gap: 14px; }
.btn-buy-now {
    flex: 1; padding: 14px; border-radius: 99px;
    background: var(--accent); color: var(--primary);
    font-size: 15px; font-weight: 800; font-family: var(--font);
    border: none; cursor: pointer;
    box-shadow: 0 8px 30px var(--accent-glow); transition: all 0.28s;
    text-decoration: none; display: flex; align-items: center; justify-content: center; gap: 8px;
}
.btn-buy-now:hover { background: var(--primary); color: var(--accent); transform: translateY(-3px); }
.btn-add-cart-lg {
    flex: 1; padding: 14px; border-radius: 99px;
    background: var(--primary); color: #fff;
    font-size: 15px; font-weight: 800; font-family: var(--font);
    border: none; cursor: pointer; transition: all 0.28s;
    text-decoration: none; display: flex; align-items: center; justify-content: center; gap: 8px;
}
.btn-add-cart-lg:hover { background: var(--accent); color: var(--primary); transform: translateY(-3px); }

.product-tabs-section { padding: 60px 0; background: var(--bg-services); }
.product-tabs { display: flex; gap: 0; border-bottom: 2px solid var(--border-light); margin-bottom: 32px; }
.product-tab {
    padding: 12px 28px; font-family: var(--font); font-size: 14px; font-weight: 700;
    color: var(--text-muted); cursor: pointer; border-bottom: 3px solid transparent; margin-bottom: -2px;
    transition: all 0.2s; background: none; border-top: none; border-left: none; border-right: none;
}
.product-tab.active { color: var(--primary); border-bottom-color: var(--accent); }
.product-tab-panel { display: none; }
.product-tab-panel.active { display: block; }
.product-tab-panel p { font-size: 15px; color: var(--text-muted); line-height: 1.85; }
.review-item { padding: 20px; background: #fff; border-radius: var(--radius-md); margin-bottom: 16px; box-shadow: var(--shadow-sm); }
.review-stars { color: var(--accent); font-size: 14px; margin-bottom: 6px; }
.review-text { font-size: 14px; color: var(--text-muted); line-height: 1.7; }
.review-meta { font-size: 12px; color: var(--text-muted); margin-top: 8px; }

/* ── BLOG PAGE ── */
.blog-section { padding: 80px 0; background: var(--bg-light); }
.blog-filter { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 40px; }
.blog-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; margin-bottom: 48px; }
.blog-card {
    background: #fff; border-radius: var(--radius-md);
    overflow: hidden; box-shadow: var(--shadow-sm);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex; flex-direction: column;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}
.blog-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-md); }
.blog-card-img { height: 200px; overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.blog-card:hover .blog-card-img img { transform: scale(1.07); }
.blog-card-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.blog-card-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; flex-wrap: wrap; }
.blog-cat {
    background: var(--accent-pale); color: var(--accent);
    font-size: 11px; font-weight: 700;
    padding: 3px 10px; border-radius: 99px;
    border: 1px solid rgba(201,168,76,0.3);
}
.blog-date { font-size: 12px; color: var(--text-muted); display: flex; align-items: center; gap: 4px; }
.blog-card-body h3 { font-size: 16px; font-weight: 800; color: var(--primary); margin-bottom: 10px; line-height: 1.4; }
.blog-card-body p { font-size: 13.5px; color: var(--text-muted); line-height: 1.7; flex: 1; margin-bottom: 16px; }
.blog-read-more {
    display: inline-flex; align-items: center; gap: 6px;
    color: var(--accent); font-size: 13px; font-weight: 700;
    text-decoration: none; transition: gap 0.2s;
    align-self: flex-start;
}
.blog-read-more:hover { gap: 10px; }
.pagination-wrap { display: flex; justify-content: center; gap: 8px; }
.page-btn {
    width: 40px; height: 40px; border-radius: var(--radius-sm);
    border: 1.5px solid var(--border-light); background: #fff;
    font-family: var(--font); font-size: 14px; font-weight: 700;
    color: var(--text-muted); cursor: pointer; transition: all 0.22s;
    display: flex; align-items: center; justify-content: center;
    text-decoration: none;
}
.page-btn:hover, .page-btn.active { background: var(--primary); color: #fff; border-color: var(--primary); }
@media (max-width: 767px) { .blog-grid { grid-template-columns: 1fr; } }
@media (max-width: 991px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }

/* ── SINGLE ARTICLE PAGE ── */
.article-section { padding: 80px 0; background: var(--bg-light); }
.article-wrap { max-width: 780px; margin: 0 auto; }
.article-meta { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-bottom: 28px; }
.article-cat { background: var(--accent); color: var(--primary); font-size: 12px; font-weight: 800; padding: 4px 14px; border-radius: 99px; }
.article-date, .article-reading { font-size: 13px; color: var(--text-muted); display: flex; align-items: center; gap: 5px; }
.article-featured-img { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); margin-bottom: 36px; }
.article-featured-img img { width: 100%; height: 420px; object-fit: cover; }
.article-title { font-size: clamp(24px, 4vw, 40px); font-weight: 900; color: var(--primary); line-height: 1.3; margin-bottom: 20px; }
.article-body { font-size: 16px; line-height: 2; color: var(--text-main); }
.article-body h2 { font-size: 22px; font-weight: 900; color: var(--primary); margin: 32px 0 14px; }
.article-body h3 { font-size: 18px; font-weight: 800; color: var(--primary); margin: 24px 0 10px; }
.article-body p { margin-bottom: 18px; }
.article-body ul { padding-right: 20px; margin-bottom: 18px; }
.article-body ul li { margin-bottom: 8px; color: var(--text-muted); }
.article-body blockquote {
    border-right: 4px solid var(--accent); padding: 16px 24px;
    background: var(--accent-pale); border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin: 24px 0; font-style: italic; color: var(--text-main);
}
.article-share { display: flex; align-items: center; gap: 14px; margin-top: 40px; padding-top: 28px; border-top: 1px solid var(--border-light); flex-wrap: wrap; }
.article-share span { font-weight: 700; color: var(--primary); }
.share-btn {
    width: 40px; height: 40px; border-radius: 50%;
    border: 1.5px solid var(--border-light); background: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 16px; color: var(--text-muted); text-decoration: none;
    transition: all 0.22s; cursor: pointer;
}
.share-btn.fb:hover { background: #1877f2; color: #fff; border-color: #1877f2; }
.share-btn.tw:hover { background: #1da1f2; color: #fff; border-color: #1da1f2; }
.share-btn.wa:hover { background: #25d366; color: #fff; border-color: #25d366; }
.share-btn.li:hover { background: #0a66c2; color: #fff; border-color: #0a66c2; }

.author-section { background: var(--accent-pale); border-radius: var(--radius-lg); padding: 28px; margin-top: 40px; display: flex; gap: 20px; align-items: center; }
.author-avatar { width: 80px; height: 80px; border-radius: 50%; overflow: hidden; flex-shrink: 0; border: 3px solid var(--accent); }
.author-avatar img { width: 100%; height: 100%; object-fit: cover; }
.author-info h4 { font-size: 16px; font-weight: 800; color: var(--primary); }
.author-info span { font-size: 12px; color: var(--accent); font-weight: 700; }
.author-info p { font-size: 13.5px; color: var(--text-muted); line-height: 1.7; margin-top: 6px; }

.comments-section { padding: 60px 0; background: var(--bg-services); }
.comment-item { background: #fff; border-radius: var(--radius-md); padding: 24px; margin-bottom: 20px; box-shadow: var(--shadow-sm); }
.comment-header { display: flex; align-items: center; gap: 14px; margin-bottom: 12px; }
.comment-avatar { width: 46px; height: 46px; border-radius: 50%; overflow: hidden; flex-shrink: 0; background: var(--accent-pale); display: flex; align-items: center; justify-content: center; color: var(--accent); font-size: 18px; }
.comment-meta strong { display: block; font-size: 14px; font-weight: 800; color: var(--primary); }
.comment-meta span { font-size: 12px; color: var(--text-muted); }
.comment-text { font-size: 14px; color: var(--text-muted); line-height: 1.75; }
.comment-form-wrap { background: #fff; border-radius: var(--radius-lg); padding: 36px; margin-top: 36px; box-shadow: var(--shadow-sm); }
.comment-form-wrap h3 { font-size: 20px; font-weight: 900; color: var(--primary); margin-bottom: 24px; }

/* ── SECTION HEADING (shared) ── */
.section-tag {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--accent-pale); border: 1px solid rgba(201,168,76,0.35);
    color: var(--accent); font-size: 12px; font-weight: 800;
    padding: 5px 15px; border-radius: 99px; margin-bottom: 12px;
}
.section-title { font-size: clamp(22px, 3.5vw, 36px); font-weight: 900; color: var(--primary); margin-bottom: 12px; }
.section-desc { font-size: 15px; color: var(--text-muted); max-width: 580px; margin: 0 auto; line-height: 1.8; }

/* ── SIDEBAR ── */
.sidebar-widget { background: #fff; border-radius: var(--radius-md); padding: 24px; box-shadow: var(--shadow-sm); margin-bottom: 24px; }
.sidebar-widget h4 { font-size: 16px; font-weight: 800; color: var(--primary); margin-bottom: 16px; padding-bottom: 12px; border-bottom: 2px solid var(--accent-pale); }
.sidebar-links li a { display: flex; align-items: center; gap: 8px; padding: 9px 0; font-size: 14px; color: var(--text-muted); text-decoration: none; border-bottom: 1px solid var(--border-light); transition: color 0.2s; }
.sidebar-links li:last-child a { border-bottom: none; }
.sidebar-links li a:hover { color: var(--accent); }
.sidebar-links li a i { color: var(--accent); font-size: 11px; }
.sidebar-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.sidebar-tag { padding: 5px 14px; border-radius: 99px; border: 1.5px solid var(--border-light); font-size: 12px; font-weight: 700; color: var(--text-muted); text-decoration: none; transition: all 0.2s; }
.sidebar-tag:hover { border-color: var(--accent); color: var(--accent); }

/* ═══════════════════════════════════════════════
   EXTRAS — Cart, Gallery, Pulse, Related, Certs
═══════════════════════════════════════════════ */

/* ── 1. Cert download badge ── */
a.cert-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s, box-shadow 0.2s;
}
a.cert-badge:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(201,168,76,0.25) !important;
    color: var(--accent);
}
a.cert-badge .cert-dl-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px; height: 22px;
    background: rgba(201,168,76,0.18);
    border-radius: 50%;
    font-size: 11px;
    color: var(--accent);
    margin-right: 4px;
    transition: background 0.2s;
}
a.cert-badge:hover .cert-dl-icon {
    background: var(--accent);
    color: var(--primary);
}

/* ── 2. Availability pulse ── */
.product-availability {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 99px;
    background: rgba(34,197,94,0.1);
    color: #16a34a;
    border: 1px solid rgba(34,197,94,0.3);
    margin-bottom: 16px;
}
.product-availability .pulse-dot {
    width: 9px; height: 9px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 0 0 rgba(34,197,94,0.6);
    animation: pulse-avail 1.8s ease-in-out infinite;
    flex-shrink: 0;
}
@keyframes pulse-avail {
    0%   { box-shadow: 0 0 0 0 rgba(34,197,94,0.6); }
    50%  { box-shadow: 0 0 0 6px rgba(34,197,94,0); }
    100% { box-shadow: 0 0 0 0 rgba(34,197,94,0); }
}
.product-availability.out-of-stock {
    background: rgba(239,68,68,0.1);
    color: #dc2626;
    border-color: rgba(239,68,68,0.3);
}
.product-availability.out-of-stock .pulse-dot {
    background: #ef4444;
    animation: pulse-avail-red 1.8s ease-in-out infinite;
}
@keyframes pulse-avail-red {
    0%   { box-shadow: 0 0 0 0 rgba(239,68,68,0.6); }
    50%  { box-shadow: 0 0 0 6px rgba(239,68,68,0); }
    100% { box-shadow: 0 0 0 0 rgba(239,68,68,0); }
}

/* ── 3. Qty readonly input ── */
.qty-input[readonly] {
    cursor: default;
    background: var(--bg-light, #f7f5f0) !important;
    pointer-events: none;
    user-select: none;
}

/* ── 4. Product Gallery Swiper ── */
.product-gallery-swiper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: #f7f5f0;
    position: relative;
}
.product-gallery-swiper .swiper-slide img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    cursor: zoom-in;
    display: block;
}
.product-gallery-swiper .swiper-button-next,
.product-gallery-swiper .swiper-button-prev {
    background: rgba(255,255,255,0.92);
    width: 38px; height: 38px;
    border-radius: 50%;
    box-shadow: 0 2px 12px rgba(0,0,0,0.15);
    --swiper-navigation-size: 16px;
    color: var(--primary);
}
.product-gallery-swiper .swiper-button-next:hover,
.product-gallery-swiper .swiper-button-prev:hover {
    background: var(--accent);
    color: var(--primary);
}
.product-gallery-swiper .swiper-pagination-bullet-active {
    background: var(--accent);
}
.product-gallery-thumbs {
    margin-top: 12px;
}
.product-gallery-thumbs .swiper-slide {
    width: 72px; height: 72px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.2s;
    opacity: 0.65;
}
.product-gallery-thumbs .swiper-slide-thumb-active {
    border-color: var(--accent);
    opacity: 1;
}
.product-gallery-thumbs .swiper-slide img {
    width: 100%; height: 100%;
    object-fit: cover;
}

/* ── 5. Lightbox overlay ── */
#mz-lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.92);
    z-index: 99999;
    align-items: center;
    justify-content: center;
    cursor: zoom-out;
}
#mz-lightbox.active { display: flex; }
#mz-lightbox img {
    max-width: 90vw;
    max-height: 90vh;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    cursor: default;
    animation: lb-in 0.22s ease;
}
@keyframes lb-in {
    from { opacity:0; transform:scale(0.92); }
    to   { opacity:1; transform:scale(1); }
}
#mz-lightbox-close {
    position: absolute;
    top: 20px; left: 20px;
    width: 40px; height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    border: none;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}
#mz-lightbox-close:hover { background: var(--accent); color: var(--primary); }

/* ── 6. Cart floating panel ── */
.cart-panel-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: transparent;
    z-index: 3000;
}
.cart-panel-overlay.open { display: block; }
.cart-panel {
    position: fixed;
    top: 0;
    left: 0;
    width: 340px;
    max-width: 95vw;
    height: 100vh;
    background: #fff;
    box-shadow: -4px 0 40px rgba(0,0,0,0.18);
    z-index: 3001;
    display: flex;
    flex-direction: column;
    transform: translateX(-100%);
    transition: transform 0.32s cubic-bezier(0.4,0,0.2,1);
}
.cart-panel.open { transform: translateX(0); }
.cart-panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    border-bottom: 1px solid var(--border-light, #e8e2d8);
    background: var(--primary);
    color: #fff;
}
.cart-panel-header h4 {
    margin: 0;
    font-size: 16px;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 8px;
}
.cart-panel-close {
    background: rgba(255,255,255,0.12);
    border: none;
    color: #fff;
    width: 34px; height: 34px;
    border-radius: 50%;
    font-size: 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}
.cart-panel-close:hover { background: var(--accent); color: var(--primary); }
.cart-panel-body {
    flex: 1;
    overflow-y: auto;
    padding: 16px 20px;
}
.cart-empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 200px;
    color: #aaa;
    gap: 10px;
    font-size: 14px;
    text-align: center;
}
.cart-empty-state i { font-size: 48px; opacity: 0.3; }
.cart-item-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-light, #e8e2d8);
}
.cart-item-img {
    width: 60px; height: 60px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
    background: #f0ece4;
}
.cart-item-details { flex: 1; min-width: 0; }
.cart-item-name {
    font-size: 13px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.4;
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.cart-item-price {
    font-size: 14px;
    font-weight: 800;
    color: var(--accent);
}
.cart-item-qty {
    font-size: 12px;
    color: #999;
    margin-top: 2px;
}
.cart-item-remove {
    background: none;
    border: none;
    color: #ccc;
    font-size: 14px;
    cursor: pointer;
    padding: 2px;
    transition: color 0.2s;
    flex-shrink: 0;
}
.cart-item-remove:hover { color: #ef4444; }
.cart-panel-footer {
    padding: 16px 20px;
    border-top: 1px solid var(--border-light, #e8e2d8);
    background: #fafaf9;
}
.cart-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
    font-size: 15px;
    font-weight: 800;
    color: var(--primary);
}
.cart-total-price { color: var(--accent); font-size: 17px; }
.cart-checkout-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 13px 20px;
    border-radius: 99px;
    background: var(--accent);
    color: var(--primary);
    font-size: 14px;
    font-weight: 800;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s;
}
.cart-checkout-btn:hover {
    background: var(--primary);
    color: var(--accent);
    box-shadow: 0 4px 20px rgba(0,0,0,0.18);
}
.cart-view-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 10px 20px;
    border-radius: 99px;
    background: transparent;
    color: var(--primary);
    font-size: 13px;
    font-weight: 700;
    border: 1px solid var(--border-light, #e8e2d8);
    cursor: pointer;
    text-decoration: none;
    margin-top: 8px;
    transition: all 0.2s;
}
.cart-view-btn:hover {
    border-color: var(--accent);
    color: var(--accent);
}

/* Cart dot badge on nav */
.cart-count-badge {
    position: absolute;
    top: -4px;
    left: -4px;
    width: 18px; height: 18px;
    border-radius: 50%;
    background: var(--accent);
    color: var(--primary);
    font-size: 10px;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    display: none;
}
.cart-count-badge.visible { display: flex; }
.nav-cart-btn { position: relative; }

/* ── 7. Add-to-cart success toast ── */
#cart-toast {
    position: fixed;
    bottom: 90px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: var(--primary);
    color: #fff;
    padding: 12px 24px;
    border-radius: 99px;
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.25);
    z-index: 99998;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s, transform 0.3s;
    white-space: nowrap;
}
#cart-toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}
#cart-toast i { color: var(--accent); font-size: 16px; }

/* ── 8. Related content section ── */
.related-section {
    padding: 80px 0;
    background: var(--bg-light, #f7f5f0);
}
.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 32px;
}
.related-card {
    background: #fff;
    border-radius: var(--radius-lg, 16px);
    overflow: hidden;
    box-shadow: 0 2px 18px rgba(0,0,0,0.06);
    transition: transform 0.25s, box-shadow 0.25s;
    text-decoration: none;
    display: flex;
    flex-direction: column;
}
.related-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 36px rgba(0,0,0,0.12);
}
.related-card-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}
.related-card-body {
    padding: 18px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.related-card-tag {
    font-size: 11px;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}
.related-card-title {
    font-size: 15px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.5;
    margin-bottom: 8px;
    flex: 1;
}
.related-card-meta {
    font-size: 12px;
    color: #999;
    display: flex;
    align-items: center;
    gap: 6px;
}
.related-card-price {
    font-size: 16px;
    font-weight: 900;
    color: var(--accent);
    margin-top: 10px;
}

/* ═══════════════════════════════════════════════════
   NEW PAGES — Order Service, Profile, My Orders,
   Cart, Checkout, User Dropdown
═══════════════════════════════════════════════════ */

/* ── NAV USER DROPDOWN ── */
.nav-user-wrap { position: relative; }
.nav-user-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(201,168,76,0.12);
  border: 1.5px solid rgba(201,168,76,0.35);
  color: var(--accent);
  font-family: var(--font-body);
  font-size: 14px; font-weight: 700;
  padding: 8px 16px; border-radius: 99px;
  cursor: pointer; transition: all 0.25s;
}
.nav-user-btn:hover { background: var(--accent); color: var(--primary); }
.nav-user-btn .nav-user-caret { font-size: 11px; transition: transform 0.25s; }
.nav-user-wrap.open .nav-user-caret { transform: rotate(-180deg); }
.nav-user-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  min-width: 190px;
  background: #fff;
  border-radius: var(--radius-sm);
  box-shadow: 0 12px 40px rgba(0,34,73,0.16);
  border: 1px solid var(--border-light);
  padding: 8px 0;
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: all 0.22s;
  z-index: 9999;
}
.nav-user-wrap.open .nav-user-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-user-dropdown a {
  display: flex; align-items: center; gap: 10px;
  padding: 11px 18px;
  font-size: 14px; font-weight: 600; color: var(--text-main);
  text-decoration: none; transition: background 0.18s, color 0.18s;
}
.nav-user-dropdown a:hover { background: var(--accent-pale); color: var(--accent); }
.nav-user-dropdown a i { font-size: 15px; color: var(--accent); }
.nav-user-dropdown .user-dropdown-divider { height: 1px; background: var(--border-light); margin: 6px 0; }
.nav-user-dropdown .logout-link { color: #dc3545 !important; }
.nav-user-dropdown .logout-link i { color: #dc3545 !important; }

/* ── ORDER SERVICE PAGE ── */
.order-service-page { padding: 70px 0 90px; background: var(--bg-light); }
.order-service-card {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}
.order-service-header {
  padding: 32px 36px;
  background: var(--primary);
  background-image: url('layout/imgs/pattern-color.png');
  background-size: contain;
  background-blend-mode: soft-light;
  border-bottom: 3px solid var(--accent);
}
.order-service-header h2 { color: #fff; font-size: 24px; font-weight: 900; margin: 0 0 6px; }
.order-service-header p { color: rgba(255,255,255,0.7); font-size: 14px; margin: 0; }
.order-service-body { padding: 36px; }
.order-step {
  display: flex; align-items: flex-start; gap: 16px;
  margin-bottom: 32px; padding-bottom: 32px;
  border-bottom: 1px solid var(--border-light);
}
.order-step:last-child { border-bottom: none; margin-bottom: 0; }
.order-step-num {
  min-width: 44px; height: 44px; border-radius: 50%;
  background: var(--accent); color: var(--primary);
  font-size: 18px; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.order-step-content { flex: 1; }
.order-step-content h4 { font-size: 16px; font-weight: 800; color: var(--primary); margin-bottom: 14px; }

/* Place type cards */
.place-type-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
}
.place-type-card {
  border: 2px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 16px 14px; text-align: center;
  cursor: pointer; transition: all 0.22s;
  background: var(--bg-light);
}
.place-type-card:hover { border-color: var(--accent); background: var(--accent-pale); }
.place-type-card.selected {
  border-color: var(--accent); background: var(--accent-pale);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.2);
}
.place-type-card i { font-size: 28px; color: var(--accent); margin-bottom: 8px; display: block; }
.place-type-card span { font-size: 13px; font-weight: 700; color: var(--primary); display: block; }
.place-type-card .pt-area { font-size: 11px; color: var(--text-muted); margin-top: 4px; }

/* Price display */
.price-display-box {
  background: var(--primary);
  border-radius: var(--radius-sm);
  padding: 22px 28px;
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 20px; flex-wrap: wrap; gap: 12px;
}
.price-display-box .price-label { color: rgba(255,255,255,0.72); font-size: 14px; }
.price-display-box .price-amount {
  color: var(--accent); font-size: 30px; font-weight: 900;
}
.price-display-box .price-amount span { font-size: 16px; }

/* Payment options */
.payment-options-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.pay-option-card {
  border: 2px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 18px;
  cursor: pointer; transition: all 0.22s;
}
.pay-option-card:hover { border-color: var(--accent); }
.pay-option-card.selected { border-color: var(--accent); background: var(--accent-pale); }
.pay-option-card .pay-opt-top {
  display: flex; align-items: center; gap: 10px; margin-bottom: 6px;
}
.pay-option-card .pay-opt-radio {
  width: 20px; height: 20px; border-radius: 50%;
  border: 2px solid var(--border-light);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s; flex-shrink: 0;
}
.pay-option-card.selected .pay-opt-radio {
  border-color: var(--accent); background: var(--accent);
}
.pay-option-card.selected .pay-opt-radio::after {
  content: ''; width: 8px; height: 8px;
  border-radius: 50%; background: var(--primary);
}
.pay-option-card .pay-opt-name { font-size: 15px; font-weight: 800; color: var(--primary); }
.pay-option-card .pay-opt-desc { font-size: 12px; color: var(--text-muted); margin-right: 30px; }
.pay-option-card .pay-opt-amount { font-size: 20px; font-weight: 900; color: var(--accent); margin-top: 8px; }
.pay-option-card .pay-opt-amount span { font-size: 13px; }

/* Bank details card */
.bank-details-card {
  background: var(--bg-light);
  border: 1.5px solid rgba(201,168,76,0.3);
  border-radius: var(--radius-sm);
  padding: 20px 24px;
  margin-top: 18px;
}
.bank-details-header {
  display: flex; align-items: center; gap: 14px; margin-bottom: 16px;
}
.bank-logo-circle {
  width: 52px; height: 52px; border-radius: 50%;
  background: #fff; border: 2px solid var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 900; color: var(--primary);
  text-align: center; line-height: 1.2;
  flex-shrink: 0;
  overflow: hidden;
}
.bank-logo-circle img { width: 100%; height: 100%; object-fit: contain; border-radius: 50%; }
.bank-name-wrap h5 { font-size: 15px; font-weight: 800; color: var(--primary); margin: 0 0 3px; }
.bank-name-wrap span { font-size: 12px; color: var(--text-muted); }
.bank-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 0; border-bottom: 1px solid var(--border-light);
  flex-wrap: wrap; gap: 8px;
}
.bank-row:last-child { border-bottom: none; }
.bank-row-label { font-size: 13px; color: var(--text-muted); font-weight: 600; }
.bank-row-value {
  font-size: 14px; font-weight: 800; color: var(--primary);
  font-family: monospace; direction: ltr; text-align: left;
}
.btn-copy-iban {
  background: none; border: 1.5px solid var(--accent);
  color: var(--accent); font-size: 12px; font-weight: 700;
  padding: 4px 12px; border-radius: 99px;
  cursor: pointer; transition: all 0.2s;
  font-family: var(--font-body);
}
.btn-copy-iban:hover { background: var(--accent); color: var(--primary); }

/* Proof upload */
.proof-upload-area {
  border: 2px dashed rgba(201,168,76,0.4);
  border-radius: var(--radius-sm);
  padding: 32px;
  text-align: center;
  background: var(--accent-pale);
  cursor: pointer; transition: all 0.25s;
  position: relative;
}
.proof-upload-area:hover { border-color: var(--accent); }
.proof-upload-area i { font-size: 36px; color: var(--accent); margin-bottom: 10px; display: block; }
.proof-upload-area p { font-size: 14px; color: var(--text-muted); margin: 0; }
.proof-upload-area input[type=file] {
  position: absolute; inset: 0; opacity: 0; cursor: pointer;
}
.proof-preview {
  display: none; align-items: center; gap: 12px;
  background: #fff; border: 1.5px solid rgba(201,168,76,0.4);
  border-radius: var(--radius-sm); padding: 12px 16px; margin-top: 12px;
}
.proof-preview.show { display: flex; }
.proof-preview img { width: 52px; height: 52px; border-radius: 8px; object-fit: cover; }
.proof-preview span { font-size: 13px; color: var(--primary); font-weight: 600; flex: 1; }

/* Order form fields */
.order-service-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.order-service-fields.full-row { grid-template-columns: 1fr; }
.osf-field label { display: block; font-size: 13px; font-weight: 700; color: var(--primary); margin-bottom: 7px; }
.osf-field input, .osf-field textarea, .osf-field select {
  width: 100%; padding: 12px 16px;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-sm);
  background: #fff;
  font-family: var(--font-body); font-size: 14px; color: var(--text-main);
  transition: border-color 0.2s;
  outline: none;
}
.osf-field input:focus, .osf-field textarea:focus, .osf-field select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
}
.osf-field textarea { resize: vertical; min-height: 100px; }
.btn-submit-order {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 40px; border-radius: 99px;
  background: var(--accent); color: var(--primary);
  font-family: var(--font-body); font-size: 16px; font-weight: 900;
  border: none; cursor: pointer;
  box-shadow: 0 8px 30px var(--accent-glow);
  transition: all 0.28s;
}
.btn-submit-order:hover { background: var(--primary); color: var(--accent); transform: translateY(-3px); }

/* Order success */
.order-success-box {
  text-align: center; padding: 48px 24px;
  display: none;
}
.order-success-box.show { display: block; }
.order-success-icon {
  width: 80px; height: 80px; border-radius: 50%;
  background: rgba(25,135,84,0.1); border: 3px solid #198754;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-size: 36px; color: #198754;
}

@media (max-width: 767px) {
  .place-type-grid { grid-template-columns: repeat(2,1fr); }
  .payment-options-grid { grid-template-columns: 1fr; }
  .order-service-fields { grid-template-columns: 1fr; }
  .order-service-body { padding: 20px; }
  .order-service-header { padding: 22px 20px; }
}
@media (max-width: 480px) {
  .place-type-grid { grid-template-columns: repeat(2,1fr); }
}

/* ── PROFILE PAGE ── */
.profile-page { padding: 70px 0 90px; background: var(--bg-light); }
.profile-sidebar {
  background: #fff; border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm); overflow: hidden;
}
.profile-sidebar-header {
  background: var(--primary);
  background-image: url('layout/imgs/pattern-color.png');
  background-size: contain; background-blend-mode: soft-light;
  padding: 32px 24px; text-align: center;
}
.profile-avatar {
  width: 80px; height: 80px; border-radius: 50%;
  background: var(--accent); color: var(--primary);
  font-size: 32px; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
  border: 3px solid rgba(255,255,255,0.3);
}
.profile-sidebar-name { color: #fff; font-size: 17px; font-weight: 800; margin-bottom: 4px; }
.profile-sidebar-email { color: rgba(255,255,255,0.6); font-size: 13px; }
.profile-nav { padding: 12px 0; }
.profile-nav-item {
  display: flex; align-items: center; gap: 12px;
  padding: 13px 22px; font-size: 14px; font-weight: 700;
  color: var(--text-main); text-decoration: none;
  transition: all 0.2s; border-right: 3px solid transparent;
}
.profile-nav-item:hover { background: var(--accent-pale); color: var(--accent); }
.profile-nav-item.active { background: var(--accent-pale); color: var(--accent); border-right-color: var(--accent); }
.profile-nav-item i { font-size: 16px; }
.profile-nav-divider { height: 1px; background: var(--border-light); margin: 8px 16px; }
.profile-nav-item.logout { color: #dc3545; }
.profile-nav-item.logout:hover { background: rgba(220,53,69,0.06); color: #dc3545; border-right-color: #dc3545; }

.profile-content-card {
  background: #fff; border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm); padding: 32px;
}
.profile-section-title {
  font-size: 20px; font-weight: 900; color: var(--primary);
  margin-bottom: 24px; padding-bottom: 16px;
  border-bottom: 2px solid var(--border-light);
  display: flex; align-items: center; gap: 10px;
}
.profile-section-title i { color: var(--accent); }
.profile-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.profile-field label { display: block; font-size: 13px; font-weight: 700; color: var(--primary); margin-bottom: 7px; }
.profile-field input, .profile-field select, .profile-field textarea {
  width: 100%; padding: 12px 16px;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-sm);
  background: var(--bg-light);
  font-family: var(--font-body); font-size: 14px; color: var(--text-main);
  transition: border-color 0.2s; outline: none;
}
.profile-field input:focus, .profile-field select:focus {
  border-color: var(--accent); background: #fff;
  box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
}
.profile-field.full { grid-column: 1 / -1; }
.btn-save-profile {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 32px; border-radius: 99px;
  background: var(--accent); color: var(--primary);
  font-family: var(--font-body); font-size: 15px; font-weight: 800;
  border: none; cursor: pointer;
  box-shadow: 0 6px 24px var(--accent-glow);
  transition: all 0.25s;
}
.btn-save-profile:hover { background: var(--primary); color: var(--accent); }
.btn-logout-profile {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 32px; border-radius: 99px;
  background: rgba(220,53,69,0.08); color: #dc3545;
  font-family: var(--font-body); font-size: 15px; font-weight: 800;
  border: 1.5px solid rgba(220,53,69,0.2); cursor: pointer;
  transition: all 0.25s;
}
.btn-logout-profile:hover { background: #dc3545; color: #fff; }

@media (max-width: 767px) {
  .profile-form-grid { grid-template-columns: 1fr; }
  .profile-content-card { padding: 20px; }
}

/* ── MY ORDERS PAGE ── */
.my-orders-page { padding: 70px 0 90px; background: var(--bg-light); }
.orders-filter-bar {
  display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 28px;
}
.order-filter-btn {
  padding: 8px 20px; border-radius: 99px;
  border: 1.5px solid var(--border-light);
  background: #fff; color: var(--text-muted);
  font-family: var(--font-body); font-size: 13px; font-weight: 700;
  cursor: pointer; transition: all 0.22s;
}
.order-filter-btn:hover { border-color: var(--accent); color: var(--accent); }
.order-filter-btn.active { background: var(--accent); border-color: var(--accent); color: var(--primary); }

.order-card {
  background: #fff; border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm); margin-bottom: 20px;
  overflow: hidden; transition: box-shadow 0.25s;
  border: 1px solid var(--border-light);
}
.order-card:hover { box-shadow: var(--shadow-md); }
.order-card-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 24px; border-bottom: 1px solid var(--border-light);
  background: var(--bg-light); flex-wrap: wrap; gap: 10px;
}
.order-id { font-size: 13px; color: var(--text-muted); }
.order-id strong { color: var(--primary); font-size: 15px; }
.order-status-badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 14px; border-radius: 99px;
  font-size: 12px; font-weight: 800;
}
.status-pending { background: rgba(255,193,7,0.12); color: #c17a00; border: 1px solid rgba(255,193,7,0.3); }
.status-confirmed { background: rgba(13,110,253,0.1); color: #0d6efd; border: 1px solid rgba(13,110,253,0.25); }
.status-inprogress { background: rgba(102,16,242,0.1); color: #6610f2; border: 1px solid rgba(102,16,242,0.25); }
.status-completed { background: rgba(25,135,84,0.1); color: #198754; border: 1px solid rgba(25,135,84,0.25); }
.status-cancelled { background: rgba(220,53,69,0.08); color: #dc3545; border: 1px solid rgba(220,53,69,0.2); }

.order-card-body { padding: 20px 24px; }
.order-meta-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; margin-bottom: 16px; }
.order-meta-item { }
.order-meta-label { font-size: 11px; color: var(--text-muted); font-weight: 600; margin-bottom: 3px; }
.order-meta-value { font-size: 14px; color: var(--primary); font-weight: 800; }

.order-progress-bar { height: 6px; background: var(--border-light); border-radius: 99px; overflow: hidden; margin-bottom: 8px; }
.order-progress-fill { height: 100%; background: var(--accent); border-radius: 99px; transition: width 0.5s; }
.order-progress-labels { display: flex; justify-content: space-between; }
.order-progress-labels span { font-size: 10px; color: var(--text-muted); }

.order-card-footer {
  padding: 14px 24px;
  border-top: 1px solid var(--border-light);
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
}
.btn-order-action {
  display: inline-flex; align-items: center; gap:7px;
  padding: 9px 20px; border-radius: 99px;
  font-family: var(--font-body); font-size: 13px; font-weight: 700;
  cursor: pointer; transition: all 0.22s; text-decoration: none;
  border: none;
}
.btn-order-primary {
  background: var(--accent); color: var(--primary);
  box-shadow: 0 4px 16px var(--accent-glow);
}
.btn-order-primary:hover { background: var(--primary); color: var(--accent); }
.btn-order-outline {
  background: transparent; color: var(--primary);
  border: 1.5px solid var(--border-light) !important;
}
.btn-order-outline:hover { border-color: var(--accent) !important; color: var(--accent); }
.btn-order-review {
  background: rgba(25,135,84,0.1); color: #198754;
  border: 1.5px solid rgba(25,135,84,0.25) !important;
}
.btn-order-review:hover { background: #198754; color: #fff; }

@media (max-width: 767px) {
  .order-meta-grid { grid-template-columns: repeat(2,1fr); }
  .order-card-header, .order-card-body, .order-card-footer { padding: 14px 16px; }
}

/* ── REVIEW MODAL ── */
.review-modal-overlay {
  position: fixed; inset: 0; background: rgba(0,34,73,0.55);
  z-index: 9990; display: flex; align-items: center; justify-content: center;
  padding: 20px;
  opacity: 0; visibility: hidden; transition: all 0.25s;
}
.review-modal-overlay.open { opacity: 1; visibility: visible; }
.review-modal {
  background: #fff; border-radius: var(--radius-lg);
  padding: 36px; width: 100%; max-width: 480px;
  box-shadow: 0 24px 80px rgba(0,34,73,0.22);
  transform: translateY(20px); transition: transform 0.3s;
}
.review-modal-overlay.open .review-modal { transform: translateY(0); }
.review-modal-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 24px;
}
.review-modal-title { font-size: 20px; font-weight: 900; color: var(--primary); }
.btn-review-close {
  background: none; border: none; font-size: 20px;
  color: var(--text-muted); cursor: pointer;
  width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
}
.btn-review-close:hover { background: var(--accent-pale); color: var(--accent); }
.stars-row { display: flex; gap: 8px; justify-content: center; margin-bottom: 24px; }
.star-btn {
  background: none; border: none; cursor: pointer;
  font-size: 32px; color: #ddd; transition: color 0.15s;
  padding: 4px;
}
.star-btn.active, .star-btn:hover { color: var(--accent); }
.review-textarea {
  width: 100%; padding: 14px 16px;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: 14px; color: var(--text-main);
  resize: vertical; min-height: 110px; outline: none;
  transition: border-color 0.2s;
}
.review-textarea:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(201,168,76,0.12); }
.btn-submit-review {
  width: 100%; padding: 14px;
  background: var(--accent); color: var(--primary);
  border: none; border-radius: 99px;
  font-family: var(--font-body); font-size: 16px; font-weight: 900;
  cursor: pointer; margin-top: 18px;
  box-shadow: 0 8px 30px var(--accent-glow); transition: all 0.25s;
}
.btn-submit-review:hover { background: var(--primary); color: var(--accent); }

/* ── CART PAGE ── */
.cart-page { padding: 70px 0 90px; background: var(--bg-light); }
.cart-table-wrap {
  background: #fff; border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm); overflow: hidden;
}
.cart-table {
  width: 100%; border-collapse: collapse;
}
.cart-table th {
  background: var(--primary); color: rgba(255,255,255,0.8);
  font-size: 13px; font-weight: 700;
  padding: 14px 20px; text-align: right;
}
.cart-table td { padding: 16px 20px; border-bottom: 1px solid var(--border-light); vertical-align: middle; }
.cart-table tr:last-child td { border-bottom: none; }
.cart-prod-cell { display: flex; align-items: center; gap: 14px; }
.cart-prod-img { width: 60px; height: 60px; border-radius: 10px; object-fit: cover; flex-shrink: 0; }
.cart-prod-name { font-size: 14px; font-weight: 700; color: var(--primary); }
.cart-qty-control {
  display: inline-flex; align-items: center; gap: 8px;
}
.cart-qty-btn {
  width: 30px; height: 30px; border-radius: 50%;
  border: 1.5px solid var(--border-light);
  background: var(--bg-light); color: var(--primary);
  cursor: pointer; font-size: 16px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
}
.cart-qty-btn:hover { border-color: var(--accent); background: var(--accent); color: var(--primary); }
.cart-qty-num { font-size: 15px; font-weight: 800; color: var(--primary); min-width: 28px; text-align: center; }
.cart-price-cell { font-size: 15px; font-weight: 800; color: var(--primary); }
.btn-cart-remove {
  background: none; border: 1.5px solid rgba(220,53,69,0.3);
  color: #dc3545; padding: 8px 12px; border-radius: 8px;
  cursor: pointer; transition: all 0.2s;
}
.btn-cart-remove:hover { background: #dc3545; color: #fff; }
.cart-summary-card {
  background: #fff; border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm); padding: 28px;
  position: sticky; top: 100px;
}
.cart-summary-title { font-size: 18px; font-weight: 900; color: var(--primary); margin-bottom: 20px; }
.cart-summary-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 11px 0; border-bottom: 1px solid var(--border-light);
  font-size: 14px;
}
.cart-summary-row:last-of-type { border-bottom: none; }
.cart-summary-row.total { font-size: 18px; font-weight: 900; color: var(--primary); padding-top: 16px; }
.cart-summary-row.total .amount { color: var(--accent); }
.btn-checkout {
  display: block; width: 100%; padding: 15px;
  background: var(--accent); color: var(--primary); border: none;
  border-radius: 99px; font-family: var(--font-body);
  font-size: 16px; font-weight: 900;
  text-align: center; text-decoration: none;
  margin-top: 20px; cursor: pointer;
  box-shadow: 0 8px 30px var(--accent-glow); transition: all 0.28s;
}
.btn-checkout:hover { background: var(--primary); color: var(--accent); transform: translateY(-3px); }
.cart-empty-page {
  text-align: center; padding: 80px 20px;
  background: #fff; border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}
.cart-empty-page i { font-size: 64px; color: var(--accent); opacity: 0.4; margin-bottom: 20px; display: block; }
.cart-empty-page h3 { font-size: 22px; color: var(--primary); margin-bottom: 10px; }
.cart-empty-page p { color: var(--text-muted); }

@media (max-width: 767px) {
  .cart-table th:nth-child(3),
  .cart-table td:nth-child(3) { display: none; }
}

/* ── CHECKOUT PAGE ── */
.checkout-page { padding: 70px 0 90px; background: var(--bg-light); }
.checkout-card {
  background: #fff; border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm); padding: 30px;
  margin-bottom: 24px;
}
.checkout-section-title {
  font-size: 17px; font-weight: 900; color: var(--primary);
  margin-bottom: 20px; padding-bottom: 14px;
  border-bottom: 2px solid var(--border-light);
  display: flex; align-items: center; gap: 10px;
}
.checkout-section-title i { color: var(--accent); }
.checkout-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.checkout-field label { display: block; font-size: 13px; font-weight: 700; color: var(--primary); margin-bottom: 7px; }
.checkout-field input, .checkout-field select, .checkout-field textarea {
  width: 100%; padding: 12px 16px;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-sm); background: var(--bg-light);
  font-family: var(--font-body); font-size: 14px; color: var(--text-main);
  transition: border-color 0.2s; outline: none;
}
.checkout-field input:focus, .checkout-field select:focus {
  border-color: var(--accent); background: #fff;
  box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
}
.checkout-field.full { grid-column: 1 / -1; }
.payment-method-opts { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.pay-method-card {
  border: 2px solid var(--border-light); border-radius: var(--radius-sm);
  padding: 16px; cursor: pointer; transition: all 0.22s;
  display: flex; align-items: center; gap: 12px;
}
.pay-method-card:hover { border-color: var(--accent); }
.pay-method-card.selected { border-color: var(--accent); background: var(--accent-pale); }
.pay-method-card i { font-size: 24px; color: var(--accent); }
.pay-method-card .pm-info { flex: 1; }
.pay-method-card .pm-name { font-size: 14px; font-weight: 800; color: var(--primary); }
.pay-method-card .pm-desc { font-size: 12px; color: var(--text-muted); }
.pay-method-radio {
  width: 18px; height: 18px; border-radius: 50%;
  border: 2px solid var(--border-light); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; transition: all 0.2s;
}
.pay-method-card.selected .pay-method-radio { border-color: var(--accent); background: var(--accent); }
.pay-method-card.selected .pay-method-radio::after {
  content: ''; width: 7px; height: 7px;
  border-radius: 50%; background: var(--primary);
}
.checkout-summary-card {
  background: var(--primary);
  background-image: url('layout/imgs/pattern-color.png');
  background-size: contain; background-blend-mode: soft-light;
  border-radius: var(--radius-md); padding: 28px;
  position: sticky; top: 100px;
}
.checkout-summary-title { color: #fff; font-size: 18px; font-weight: 900; margin-bottom: 20px; }
.checkout-order-item {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.1);
}
.checkout-order-item img { width: 46px; height: 46px; border-radius: 8px; object-fit: cover; flex-shrink: 0; }
.checkout-order-item .item-name { font-size: 13px; color: rgba(255,255,255,0.8); flex: 1; }
.checkout-order-item .item-price { font-size: 14px; font-weight: 800; color: var(--accent); }
.checkout-total-row {
  display: flex; justify-content: space-between;
  padding: 10px 0; font-size: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.checkout-total-row span { color: rgba(255,255,255,0.65); }
.checkout-total-row .val { color: #fff; font-weight: 800; }
.checkout-total-row.grand { font-size: 18px; font-weight: 900; padding-top: 16px; border-bottom: none; }
.checkout-total-row.grand span { color: rgba(255,255,255,0.8); }
.checkout-total-row.grand .val { color: var(--accent); }
.btn-place-order {
  display: block; width: 100%; padding: 16px;
  background: var(--accent); color: var(--primary); border: none;
  border-radius: 99px; font-family: var(--font-body);
  font-size: 16px; font-weight: 900; text-align: center;
  margin-top: 22px; cursor: pointer;
  box-shadow: 0 8px 30px var(--accent-glow); transition: all 0.28s;
}
.btn-place-order:hover { background: #fff; color: var(--primary); }
.secure-badges {
  display: flex; align-items: center; justify-content: center; gap: 16px;
  margin-top: 16px; flex-wrap: wrap;
}
.secure-badge {
  display: flex; align-items: center; gap: 6px;
  font-size: 11px; color: rgba(255,255,255,0.5);
}
.secure-badge i { color: rgba(201,168,76,0.6); }
/* Payment method details panel */
.payment-detail-panel {
  background: var(--bg-light); border-radius: var(--radius-sm);
  border: 1.5px solid rgba(201,168,76,0.3); padding: 20px;
  margin-top: 14px; display: none;
}
.payment-detail-panel.show { display: block; }
@media (max-width: 767px) {
  .checkout-form-grid { grid-template-columns: 1fr; }
  .payment-method-opts { grid-template-columns: 1fr; }
}

/* Nav user avatar circle */
.nav-user-avatar {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--primary); color: var(--accent);
  font-size: 13px; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; border: 1.5px solid var(--accent);
}

/* ═══════════════════════════════════════════════════
   PATCH v3 — Service Ratings, Reviews, Similar,
   Shop category links, Order form clean
═══════════════════════════════════════════════════ */

/* ── SERVICE RATING SUMMARY ── */
.service-rating-section { padding: 60px 0 0; background: var(--bg-light); }
.service-rating-box {
  background: #fff; border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm); padding: 32px;
  display: flex; align-items: center; gap: 40px;
  flex-wrap: wrap;
}
.rating-big-score {
  text-align: center; flex-shrink: 0;
  padding-left: 40px; border-left: 2px solid var(--border-light);
}
.rating-big-num {
  font-size: 64px; font-weight: 900; color: var(--primary);
  line-height: 1;
}
.rating-big-stars { display: flex; gap: 4px; justify-content: center; margin: 6px 0; }
.rating-big-stars i { font-size: 20px; color: var(--accent); }
.rating-big-stars i.empty { color: #ddd; }
.rating-big-count { font-size: 13px; color: var(--text-muted); }
.rating-bars { flex: 1; min-width: 200px; }
.rating-bar-row {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 8px; font-size: 13px;
}
.rating-bar-label { color: var(--text-muted); width: 28px; text-align: center; flex-shrink: 0; }
.rating-bar-track {
  flex: 1; height: 8px; background: var(--border-light);
  border-radius: 99px; overflow: hidden;
}
.rating-bar-fill { height: 100%; background: var(--accent); border-radius: 99px; }
.rating-bar-pct { color: var(--text-muted); width: 34px; text-align: left; flex-shrink: 0; font-size: 12px; }

/* ── CUSTOMER REVIEWS ── */
.service-reviews-section { padding: 50px 0 70px; background: var(--bg-light); }
.reviews-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.review-card {
  background: #fff; border-radius: var(--radius-md);
  padding: 24px; box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
}
.review-card-header { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.reviewer-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--accent); color: var(--primary);
  font-size: 16px; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.reviewer-info { flex: 1; }
.reviewer-name { font-size: 14px; font-weight: 800; color: var(--primary); }
.reviewer-date { font-size: 12px; color: var(--text-muted); margin-top: 2px; }
.review-stars { display: flex; gap: 3px; margin-bottom: 10px; }
.review-stars i { font-size: 14px; color: var(--accent); }
.review-text { font-size: 14px; color: var(--text-muted); line-height: 1.7; margin: 0; }
.review-verified {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 11px; color: #198754; font-weight: 700; margin-top: 10px;
}
@media (max-width: 767px) { .reviews-grid { grid-template-columns: 1fr; } }

/* ── SIMILAR SERVICES ── */
.similar-services-section { padding: 70px 0; background: #fff; }

/* ── SHOP CATEGORY NAV LINKS ── */
.shop-cat-nav {
  display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 32px;
}
.shop-cat-link {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 20px; border-radius: 99px;
  border: 1.5px solid var(--border-light);
  background: #fff; color: var(--text-muted);
  font-family: var(--font-body); font-size: 13px; font-weight: 700;
  text-decoration: none; transition: all 0.22s;
}
.shop-cat-link:hover { border-color: var(--accent); color: var(--accent); }
.shop-cat-link.active { background: var(--accent); border-color: var(--accent); color: var(--primary); }
.shop-cat-link i { font-size: 14px; }

/* ── ORDER FORM — clean place type rows (no icons) ── */
.place-type-list { display: flex; flex-direction: column; gap: 10px; }
.place-type-row {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 18px; border: 1.5px solid var(--border-light);
  border-radius: var(--radius-sm); cursor: pointer;
  background: var(--bg-light); transition: all 0.2s;
}
.place-type-row:hover { border-color: var(--accent); background: var(--accent-pale); }
.place-type-row.selected { border-color: var(--accent); background: var(--accent-pale); box-shadow: 0 0 0 3px rgba(201,168,76,0.15); }
.pt-radio {
  width: 20px; height: 20px; border-radius: 50%;
  border: 2px solid var(--border-light); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; transition: all 0.2s;
}
.place-type-row.selected .pt-radio { border-color: var(--accent); background: var(--accent); }
.place-type-row.selected .pt-radio::after {
  content: ''; width: 8px; height: 8px;
  border-radius: 50%; background: var(--primary);
}
.pt-text { flex: 1; }
.pt-name { font-size: 14px; font-weight: 800; color: var(--primary); }
.pt-desc { font-size: 12px; color: var(--text-muted); margin-top: 2px; }
.pt-price-tag {
  font-size: 15px; font-weight: 900; color: var(--accent);
  flex-shrink: 0;
}
.pt-price-tag span { font-size: 11px; font-weight: 600; }

/* ── SIMPLE FILE INPUT ── */
.simple-file-field { margin-top: 0; }
.simple-file-label {
  display: block; font-size: 13px; font-weight: 700;
  color: var(--primary); margin-bottom: 8px;
}
.simple-file-input {
  display: block; width: 100%;
  padding: 10px 14px;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-sm); background: var(--bg-light);
  font-family: var(--font-body); font-size: 13px; color: var(--text-main);
  cursor: pointer; transition: border-color 0.2s;
}
.simple-file-input:focus { outline: none; border-color: var(--accent); }
.simple-file-hint { font-size: 12px; color: var(--text-muted); margin-top: 5px; }

/* ── PROFILE — active navbar shown (logged-in demo) ── */
.nav-user-menu-visible { display: block !important; }
