/*=========================================
  ENHANCED HOME PAGE STYLES
=========================================*/

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 18vh;
    display: flex;
    align-items: center;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: #2c3e50;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-title-small {
    font-size: 2.2rem;
    font-weight: 700;
    color: #2c3e50;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.hero-subtitle-small {
    font-size: 1rem;
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.hero-features {
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
    color: #495057;
}

.feature-item i {
    margin-right: 0.75rem;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image-container {
    position: relative;
    max-width: 100%;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: auto;
    max-width: 500px;
    border-radius: 15px;
}

/* Stats Section */
.stats-section {
    background: white;
    border-top: 1px solid #e9ecef;
    border-bottom: 1px solid #e9ecef;
}

.stat-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    border: 1px solid #e9ecef;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #f74902 0%, #e63e00 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.stat-icon-darkblue {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.stat-icon i,
.stat-icon-darkblue i {
    font-size: 1.5rem;
    color: white;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: #6c757d;
    font-weight: 500;
}

/* Section Titles */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #6c757d;
    margin-bottom: 2rem;
}

/* Recently Added Products */
.recent-products {
    background: #f8f9fa;
}

.product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.product-image-container {
    position: relative;
    padding: 1rem;
    background: #f8f9fa;
    text-align: center;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image {
    width: 100%;
    height: 140px;
    object-fit: contain;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image {
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    background: #28a745;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
}

.product-badge-teal {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    background: #3498db;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
}

.product-info {
    padding: 1rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    line-height: 1.3;
    min-height: 2.6rem;
}

.product-title a {
    color: inherit;
    text-decoration: none;
}

.product-title a:hover {
    color: #f74902;
}

.product-price {
    font-size: 0.85rem;
    color: #3498db;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

/* Why Choose Section */
.why-choose-section {
    background: white;
}

.feature-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid #e9ecef;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #f74902 0%, #e63e00 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.feature-icon-darkblue {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.feature-icon i,
.feature-icon-darkblue i {
    font-size: 1.75rem;
    color: white;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.feature-description {
    color: #6c757d;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/*=========================================
  END ENHANCED HOME PAGE STYLES
=========================================*/

/*=========================================
  HOME PAGE REDESIGN (scoped to .home-page)
=========================================*/

.home-page {
    --hp-orange: #F74902;
    --hp-navy: #2c3e50;
    --hp-muted: #6c757d;
    --hp-surface: #f4f6f8;
    --hp-line: rgba(44, 62, 80, 0.08);
}

.home-page .hp-hero {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(ellipse 80% 60% at 100% 0%, rgba(247, 73, 2, 0.08), transparent 55%),
        radial-gradient(ellipse 70% 50% at 0% 100%, rgba(44, 62, 80, 0.06), transparent 50%),
        linear-gradient(165deg, #f8f9fa 0%, #eef1f4 100%);
    padding: 1.75rem 0 2rem;
}

.home-page .hp-hero::after {
    content: "";
    position: absolute;
    inset: auto -20% -40% auto;
    width: 55vmax;
    height: 55vmax;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(247, 73, 2, 0.05), transparent 70%);
    pointer-events: none;
}

.home-page .hp-title {
    font-size: clamp(1.65rem, 5.5vw, 2.85rem);
    font-weight: 700;
    color: var(--hp-navy);
    line-height: 1.15;
    margin-bottom: 0.85rem;
    opacity: 0;
    animation: hpFadeUp 0.55s ease 0.08s forwards;
}

.home-page .hp-title span {
    color: var(--hp-navy);
}

.home-page .hp-subtitle {
    font-size: clamp(1.05rem, 3vw, 1.3rem);
    color: #46545f;
    line-height: 1.6;
    margin-bottom: 1.4rem;
    max-width: 34rem;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    animation: hpFadeUp 0.55s ease 0.16s forwards;
}


.home-page .hp-points {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: hpFadeUp 0.55s ease 0.24s forwards;
}

.home-page .hp-point {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-size: 0.95rem;
    color: #495057;
    justify-content: center;
}

.home-page .hp-point i {
    color: var(--hp-navy);
    font-size: 1.05rem;
    flex-shrink: 0;
}

.home-page .hp-cta {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding-inline: 1.25rem;
    opacity: 0;
    animation: hpFadeUp 0.55s ease 0.32s forwards;
}

.home-page .hp-cta .btn {
    width: 100%;
    padding: 0.7rem 1.25rem;
    font-weight: 600;
    border-radius: 0.5rem;
}

.home-page .hp-visual {
    text-align: center;
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: hpFadeIn 0.7s ease 0.1s forwards;
}

.home-page .hp-visual img {
    width: 100%;
    max-width: 420px;
    height: auto;
    border-radius: 1rem;
    filter: drop-shadow(0 18px 28px rgba(44, 62, 80, 0.12));
    animation: hpFloat 5.5s ease-in-out infinite;
}

.home-page .hp-trust {
    background: #fff;
    border-block: 1px solid var(--hp-line);
    padding: 1rem 0;
}

.home-page .hp-trust-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.home-page .hp-trust-item {
    text-align: center;
    padding: 0.85rem 0.5rem;
    border-radius: 0.75rem;
    background: var(--hp-surface);
}

.home-page .hp-trust-item i {
    display: block;
    font-size: 1.15rem;
    color: var(--hp-navy);
    margin-bottom: 0.35rem;
}

.home-page .hp-trust-num {
    font-size: 1.45rem;
    font-weight: 700;
    color: var(--hp-navy);
    line-height: 1.2;
}

.home-page .hp-trust-label {
    font-size: 0.8rem;
    color: var(--hp-muted);
    font-weight: 500;
}

.home-page .hp-section {
    padding: 2.25rem 0;
}

.home-page .hp-section-head {
    text-align: center;
    margin-bottom: 1.5rem;
}

.home-page .hp-section-head h2 {
    font-size: clamp(1.45rem, 4.5vw, 2.15rem);
    font-weight: 700;
    color: var(--hp-navy);
    margin-bottom: 0.4rem;
}

.home-page .hp-section-head p {
    font-size: 0.95rem;
    color: var(--hp-muted);
    margin: 0 auto;
    max-width: 28rem;
}

.home-page .hp-products {
    background: var(--hp-surface);
}

.home-page .hp-product {
    background: #fff;
    border-radius: 0.85rem;
    overflow: hidden;
    /* iOS Safari: force clipping of absolutely-positioned children (the New badge) */
    isolation: isolate;
    border: 1px solid var(--hp-line);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.home-page .hp-product:active {
    transform: scale(0.98);
}

.home-page .hp-product-media {
    position: relative;
    background: #fff;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem;
    /* Keep the media box from growing wider than the card (iOS Safari) */
    max-width: 100%;
    overflow: hidden;
}

.home-page .hp-product-media img {
    width: 100%;
    height: 100%;
    /* Allow the flex-item image to shrink below its intrinsic width (iOS Safari) */
    min-width: 0;
    max-width: 100%;
    object-fit: contain;
}

.home-page .hp-product-badge {
    position: absolute;
    top: 0.65rem;
    right: 0.65rem;
    background: var(--hp-orange);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 0.2rem 0.5rem;
    border-radius: 0.35rem;
}

.home-page .hp-product-body {
    padding: 0.75rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    gap: 0.35rem;
}

.home-page .hp-product-title {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--hp-navy);
    line-height: 1.35;
    margin: 0;
    min-height: 2.2em;
}

.home-page .hp-product-title a {
    color: inherit;
}

.home-page .hp-product-title a:hover {
    color: var(--hp-orange);
}

.home-page .hp-product-price {
    font-size: 0.8rem;
    font-weight: 600;
    color: #3498db;
    margin-top: auto;
}

.home-page .hp-product-cta {
    display: none;
}

.home-page .hp-section-cta {
    text-align: center;
    margin-top: 1.5rem;
}

.home-page .hp-section-cta .btn {
    width: 100%;
    max-width: 280px;
    font-weight: 600;
}

.home-page .hp-reasons {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.home-page .hp-reason {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1rem;
    align-items: start;
    padding: 1.35rem 1.25rem;
    border-radius: 0.85rem;
    border: 1px solid var(--hp-line);
    background: #fff;
}

.home-page .hp-reason-icon {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 0.65rem;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    flex-shrink: 0;
}

.home-page .hp-reason h3 {
    font-size: 1.05rem;
    font-weight: 600;
    margin: 0 0 0.25rem;
    color: var(--hp-navy);
}

.home-page .hp-reason p {
    font-size: 0.9rem;
    color: var(--hp-muted);
    line-height: 1.5;
    margin: 0;
}

@keyframes hpFadeUp {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes hpFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes hpFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@media (prefers-reduced-motion: reduce) {
    .home-page .hp-title,
    .home-page .hp-subtitle,
    .home-page .hp-points,
    .home-page .hp-cta,
    .home-page .hp-visual,
    .home-page .hp-visual img {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
}

@media (min-width: 576px) {
    .home-page .hp-cta {
        flex-direction: row;
        justify-content: center;
        padding-inline: 0;
    }

    .home-page .hp-cta .btn {
        width: auto;
        min-width: 10.5rem;
    }

    .home-page .hp-product-cta {
        display: block;
        margin-top: 0.5rem;
    }
}

@media (min-width: 768px) {
    .home-page .hp-hero {
        padding: 3rem 0 3.25rem;
    }

    .home-page .hp-visual {
        margin-bottom: 0;
    }

    .home-page .hp-point {
        justify-content: flex-start;
    }

    .home-page .hp-cta {
        justify-content: flex-start;
    }

    .home-page .hp-trust {
        padding: 1.35rem 0;
    }

    .home-page .hp-trust-grid {
        max-width: 640px;
        margin: 0 auto;
        gap: 1.25rem;
    }

    .home-page .hp-trust-item {
        padding: 1.15rem 1rem;
        background: transparent;
    }

    .home-page .hp-trust-num {
        font-size: 1.85rem;
    }

    .home-page .hp-trust-label {
        font-size: 0.95rem;
    }

    .home-page .hp-section {
        padding: 3.25rem 0;
    }

    .home-page .hp-section-head {
        margin-bottom: 2rem;
    }

    .home-page .hp-product:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 28px rgba(44, 62, 80, 0.1);
    }

    .home-page .hp-reasons {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1.25rem;
    }

    .home-page .hp-reason {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 1.5rem 1.25rem;
        height: 100%;
    }

    .home-page .hp-reason-icon {
        margin: 0 auto 0.35rem;
    }
}

@media (min-width: 992px) {
    .home-page .hp-visual img {
        max-width: 500px;
    }

    .home-page .hp-subtitle {
        margin-left: 0;
        margin-right: auto;
    }
}

/*=========================================
  END HOME PAGE REDESIGN
=========================================*/

/* Button icon spacing */
.btn i {
    margin-right: 0.5rem !important;
}

/*=========================================
  FAQ & TERMS PAGES (minimal)
=========================================*/

.legal-page {
    --lp-navy: #2c3e50;
    --lp-orange: #F74902;
    --lp-muted: #6c757d;
    --lp-line: rgba(44, 62, 80, 0.12);
}

.legal-hero {
    padding: 2.25rem 0 1.5rem;
}

.legal-hero-title {
    font-size: clamp(1.5rem, 4.5vw, 2.1rem);
    font-weight: 700;
    color: var(--lp-navy);
    line-height: 1.2;
    margin-bottom: 0.4rem;
}

.legal-hero-subtitle {
    font-size: clamp(0.92rem, 2.5vw, 1.05rem);
    color: var(--lp-muted);
    line-height: 1.55;
    margin: 0 auto;
    max-width: 34rem;
}

.legal-body {
    padding: 0.5rem 0 3rem;
}

.legal-footnote {
    margin: 2.25rem 0 0;
    text-align: center;
    font-size: 0.92rem;
    color: var(--lp-muted);
}

.legal-footnote a {
    color: var(--lp-navy);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.legal-footnote a:hover {
    color: var(--lp-orange);
}

/* FAQ accordion — flush, hairline dividers */
.faq-list.accordion-flush .accordion-item {
    border-bottom: 1px solid var(--lp-line);
    background: transparent;
}

.faq-list .accordion-button {
    padding: 1rem 0.25rem;
    background: transparent;
    color: var(--lp-navy);
    font-weight: 600;
    font-size: 0.98rem;
    line-height: 1.45;
    box-shadow: none !important;
}

.faq-list .accordion-button:not(.collapsed) {
    background: transparent;
    color: var(--lp-navy);
}

.faq-list .accordion-button:focus-visible {
    outline: 2px solid var(--lp-orange);
    outline-offset: -2px;
}

.faq-answer.accordion-body {
    padding: 0 0.25rem 1.15rem;
    color: #495057;
    font-size: 0.94rem;
    line-height: 1.65;
}

.faq-answer p {
    margin-bottom: 0.7rem;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer a {
    color: var(--lp-navy);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.faq-answer a:hover {
    color: var(--lp-orange);
}

.faq-answer ul,
.faq-answer ol {
    padding-left: 1.2rem;
    margin-bottom: 0.7rem;
}

/* Terms — plain numbered list, hairline dividers */
.terms-list {
    list-style: decimal;
    margin: 0;
    padding-left: 1.4rem;
}

.terms-item {
    padding: 0.85rem 0 0.85rem 0.35rem;
    border-bottom: 1px solid var(--lp-line);
    color: #495057;
    font-size: 0.94rem;
    line-height: 1.65;
}

.terms-item:last-child {
    border-bottom: none;
}

.terms-item::marker {
    color: var(--lp-navy);
    font-weight: 600;
}

.terms-item p {
    margin-bottom: 0.6rem;
}

.terms-item p:last-child {
    margin-bottom: 0;
}

.terms-item a {
    color: var(--lp-navy);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.terms-item a:hover {
    color: var(--lp-orange);
}

.terms-item ul,
.terms-item ol {
    padding-left: 1.2rem;
    margin-bottom: 0.6rem;
}

.border-left-darkblue {
    border-left: 4px solid #2c3e50 !important;
}

@media (min-width: 768px) {
    .legal-hero {
        padding: 3rem 0 1.75rem;
    }

    .faq-list .accordion-button {
        font-size: 1.02rem;
    }

    .faq-answer.accordion-body,
    .terms-item {
        font-size: 1rem;
    }
}

/*=========================================
  END FAQ & TERMS PAGES
=========================================*/

/* Contact page styling (minimal) */
.contact-details {
    margin: 0;
}

.contact-row {
    display: grid;
    grid-template-columns: 5.5rem 1fr;
    gap: 0.75rem 1rem;
    padding: 0.9rem 0;
    border-bottom: 1px solid rgba(44, 62, 80, 0.12);
}

.contact-row:first-child {
    padding-top: 0;
}

.contact-row:last-child {
    border-bottom: none;
}

.contact-row dt {
    margin: 0;
    font-size: 0.85rem;
    font-weight: 600;
    color: #2c3e50;
    letter-spacing: 0.02em;
}

.contact-row dd {
    margin: 0;
    color: #495057;
    font-size: 0.95rem;
    line-height: 1.55;
}

.contact-row a {
    color: #2c3e50;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.contact-row a:hover {
    color: #F74902;
}

.contact-row address {
    font-style: normal;
}

.contact-landmark {
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: #6c757d;
}

.contact-map {
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    border: 1px solid rgba(44, 62, 80, 0.12);
    border-radius: 0.5rem;
    background: #f4f6f8;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.contact-holidays {
    margin-top: 1.5rem;
    padding: 1rem 1.15rem;
    background: #f4f6f8;
    border-radius: 0.5rem;
}

.contact-section-title {
    display: flex;
    align-items: center;
    font-size: 0.95rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0 0 0.5rem;
}

.holiday-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.holiday-list li {
    display: flex;
    gap: 0.75rem;
    padding: 0.45rem 0;
    font-size: 0.92rem;
    line-height: 1.5;
    border-bottom: 1px solid rgba(44, 62, 80, 0.08);
}

.holiday-list li:last-child {
    border-bottom: none;
}

.holiday-date {
    color: #2c3e50;
    font-weight: 600;
    flex-shrink: 0;
    min-width: 6rem;
}

.holiday-reason {
    color: #6c757d;
}

@media (min-width: 768px) {
    .contact-row {
        grid-template-columns: 6.5rem 1fr;
        padding: 1rem 0;
    }

    .contact-row dd {
        font-size: 1rem;
    }
}

/* Careers page styling (minimal) */
.careers-intro {
    font-size: 1rem;
    color: #495057;
    line-height: 1.65;
    margin-bottom: 2rem;
}

.careers-intro a {
    color: #2c3e50;
    text-decoration: underline;
    text-underline-offset: 2px;
    font-weight: 600;
}

.careers-intro a:hover {
    color: #F74902;
}

.careers-section-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 1.25rem;
}

.job-listing {
    background: #fafbfc;
    border: 1px solid rgba(44, 62, 80, 0.1);
    border-radius: 0.75rem;
    padding: 1.5rem 1.35rem;
    margin-bottom: 1.5rem;
}

.job-listing:last-of-type {
    margin-bottom: 0;
}

.job-title {
    font-size: 1.15rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0 0 0.25rem;
}

.job-meta {
    font-size: 0.9rem;
    color: #6c757d;
    margin: 0 0 0.85rem;
}

.job-listing p {
    font-size: 0.95rem;
    color: #495057;
    line-height: 1.65;
    margin-bottom: 0.85rem;
}

.job-list-label {
    font-size: 0.85rem !important;
    font-weight: 600 !important;
    color: #2c3e50 !important;
    margin: 0.5rem 0 0.35rem !important;
}

.job-listing ul {
    margin: 0 0 0.5rem;
    padding-left: 1.2rem;
    color: #495057;
    font-size: 0.95rem;
    line-height: 1.6;
}

.job-listing li {
    margin-bottom: 0.25rem;
}

/* Form styling */
.form-control {
    border-radius: 8px;
    padding: 0.75rem 1rem;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: #2c3e50;
    box-shadow: 0 0 0 0.2rem rgba(44, 62, 80, 0.25);
}

.input-group-text {
    border-radius: 8px 0 0 8px;
}

.form-control:first-child {
    border-radius: 0 8px 8px 0;
}

.form-label {
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.card {
    border-radius: 15px;
    overflow: hidden;
}

.btn {
    border-radius: 8px;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-darkblue:focus {
    box-shadow: 0 0 0 0.2rem rgba(44, 62, 80, 0.25);
}

.btn-outline-tapprs:focus {
    box-shadow: 0 0 0 0.2rem rgba(247, 73, 2, 0.25);
}

.row-full{
    height: 100vh;
}

/*Text styling*/
.text-tapprs{color: #f74902;}
.text-outline-darkblue{
    color: #2c3e50 !important;
    font-weight: 600 !important;
}
.text-darkblue{
    color: #2c3e50 !important;
}
.text-green{color: #46b992;}
.text-yellow{color: #fff6bb;}
.text-khaki{color: #D3D1B9;}
.text-grey{color: #bdc3c7;}
.text-brown{color: #847269;}

.display-5 {
    font-size: 2rem;
    font-weight: 300;
    line-height: 1.2;
}

/*Button styling*/
.btn-grey {background-color: #bdc3c7; color: black;}
.btn-khaki {background-color: #D3D1B9; color: black;}
.btn-tapprs {
    background-color: #F74902; 
    color: white;
    border: 2px solid #F74902;
    font-weight: 600;
    transition: all 0.3s ease;
}
.btn-outline-darkblue {
    background-color: transparent;
    border: 2px solid #2c3e50;
    color: #2c3e50;
    font-weight: 600;
    transition: all 0.3s ease;
}
.btn-outline-darkblue:hover {
    background-color: #2c3e50;
    border-color: #2c3e50;
    color: white;
}
.btn-tapprs:hover{
    background-color: #e63e00;
    border-color: #e63e00;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(247, 73, 2, 0.3);
}
.btn-outline-tapprs {
    background-color: transparent;
    color: #F74902;
    border: 2px solid #F74902;
    font-weight: 600;
    transition: all 0.3s ease;
}
.btn-outline-tapprs:hover {
    background-color: #F74902;
    border-color: #F74902;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(247, 73, 2, 0.3);
}
.btn-brown {background-color: #847269; color: white;}
.btn-cta {
    background-color: #f07341; /* pastel orange */
    color: white;
    font-weight: 600;
    border: none;
    border-radius: 0.5rem;
    transition: background-color 0.2s ease-in-out;
}

.btn-cta:hover {
    background-color: #dd5c29;
    color: white;
}

/* Button Sizes */
.btn-lg {
    padding: 0.75rem 2rem;
    font-size: 1.1rem;
    border-radius: 8px;
}

.btn-sm {
    padding: 0.375rem 1rem;
    font-size: 0.9rem;
    border-radius: 6px;
}


/*Backgrounds*/
.bg-yellow{background-color: #fff6bb;}
.bg-green{background-color: #46b992;}
.bg-khaki{background-color: #D3D1B9;}
.bg-darkblue{background-color: #2c3e50;}
.bg-darkgrey{background-color: #515a63;}
.bg-grey{background-color: #bdc3c7;}
.bg-lightgrey{background-color: #F2F2F2;}
.bg-tapprs{background-color: #f74902;}
.bg-brown{background-color: #847269;}
.bg-torquoise{background-color: #51989d;}


/*Links*/
.link-grey a{color: #bdc3c7;}
.link-white a{color: #FFF;}
.link-tapprs a{color: #f74902;}
.link-black a{color: #000;}

/*Table lists*/
.list_cancelled_row {background: url('/files/images/icons/strike.png') 0 50% repeat-x;}


.highlight a {color: #000; text-decoration:underline;} 
.highlight a:hover{color: #f74902;}

.borderless td, .borderless th {border: none;}

/*Cart checkout steps*/
.checkout_step { float:left; background-color: #d3d1b9;color:#fff;padding:2px 7px;   margin:8px 0px 0 0;
   -webkit-border-radius: 20px;-moz-border-radius: 20px;border-radius: 20px;
}
.checkout_step_current { float:left; background-color: #ff4000; color:#fff;padding:2px 7px;   margin:8px 0px 0 0;
   -webkit-border-radius: 20px;   -moz-border-radius: 20px;   border-radius: 20px;
}
.checkout_step_text {color:#d3d1b9;float:left;font-size:11px;line-height:19px;width:140px;border-bottom:2px solid #d3d1b9;margin:0;}
.checkout_step_text_current {color:#ff4000;float:left;font-size:11px;line-height:19px;width:140px;border-bottom:2px solid #d3d1b9;margin:0;}
.checkout_step_text_last {color:#d3d1b9;float:left; font-size:11px; line-height:20px; margin: 0;}
.checkout_step_text_last_current {float:left; font-size:11px; line-height:20px; margin: 0;}

.box-shadow-bar{box-shadow: 0 1px 8px 0 rgba(0,0,0,.1);}
.card{box-shadow: 0 1px 8px 0 rgba(0,0,0,.1);}

/* Flatpickr calendar - brand colors */
.flatpickr-day.selected,
.flatpickr-day.selected:hover {
    background: #F74902;
    border-color: #F74902;
}
.flatpickr-day.today {
    border-color: #F74902;
}
.flatpickr-day.today:hover {
    background: #F74902;
    border-color: #F74902;
    color: #fff;
}

/* Order page disclaimers */
.order-item-disclaimer {
    margin-top: 1.25rem;
}
.order-item-disclaimer + .order-item-disclaimer {
    margin-top: 0.75rem;
}

/* Checkout action buttons */
.checkout-actions {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
}
.checkout-actions .btn {
    margin: 0;
}
@media (min-width: 768px) {
    .checkout-actions {
        align-items: flex-end;
    }
    .checkout-actions .btn {
        min-width: 13rem;
        text-align: center;
    }
}


/* --- Enhanced Header Styling --- */
.navbar {
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar-logo {
    transition: transform 0.3s ease;
}

.navbar-logo:hover {
    transform: scale(1.05);
}

.navbar-nav .nav-link {
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
    border-radius: 6px;
    margin: 0 0.25rem;
}

.navbar-nav .nav-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.navbar-nav .nav-item.active .nav-link {
    background-color: rgba(247, 73, 2, 0.2);
    color: #F74902 !important;
}

.navbar-nav .nav-link i {
    font-size: 1rem;
}


/* --- Product Menu --- */
.product-menu {
    font-size: 0.94rem;
}

/* Toggler: hide the "☰" text fallback that overlaps Bootstrap's hamburger icon.
   Explicit width/height needed because the icon is sized in em and font-size is 0. */
.product-menu .navbar-toggler-icon {
    font-size: 0;
    line-height: 0;
    color: transparent;
    width: 1.5rem;
    height: 1.5rem;
}

.product-menu .navbar-toggler {
    border: 1px solid rgba(44, 62, 80, 0.15);
    border-radius: 6px;
    padding: 0.35rem 0.6rem;
    line-height: 1;
}

.product-menu .navbar-toggler:focus {
    box-shadow: 0 0 0 0.15rem rgba(44, 62, 80, 0.15);
}

/* Breathing room for the expanded menu on mobile */
@media (max-width: 991.98px) {
    .product-menu .navbar-collapse {
        padding-top: 0.5rem;
    }

    .product-menu .navbar-nav .nav-link {
        padding: 0.5rem 0.25rem;
    }
}

.product-menu .navbar-nav .nav-link {
    color: #555;
    font-weight: 500;
    transition: all 0.2s ease-in-out;
}

.product-menu .navbar-nav .nav-link:hover {
    color: #f74902 !important;
    background-color: #f9f9f9;
    border-radius: 4px;
}


/* --- Product Menu Dropdown --- */
.product-menu .dropdown-menu .dropdown-item {
    color: #555;
    font-size: 0.9rem;
}

.product-menu .dropdown-menu .dropdown-item:hover {
    color: #000;
    background-color: #e9ecef;
}


/* --- Product Menu Search --- */
.product-menu-search .form-control {
    border-color: #ccc;
    color: #555;
    background-color: #fafafa;
    font-size: 0.9rem;
    border-radius: 6px;
    transition: border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.product-menu-search .form-control:focus {
    border-color: #999;
    background-color: #fff;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.1);
}

/* Neutralize the chunky global .btn styling inside the menu search */
.product-menu-search .btn {
    font-size: 0.875rem;
    font-weight: 500;
    padding: 0.25rem 0.85rem;
    border-radius: 6px;
    border-width: 1px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}

.product-menu-search .btn:hover {
    transform: none;
    box-shadow: none;
    background-color: #2c3e50;
    border-color: #2c3e50;
    color: #fff;
}

.product-menu-search .btn i {
    margin-right: 0.35rem !important;
    font-size: 0.85rem;
}

/* Keep input and button on one tidy line at desktop widths */
@media (min-width: 992px) {
    .product-menu-search .form-control {
        width: 12rem;
    }
}


/* --- Product Listing --- */
.product-link {
    color: #5a8eb1;
    text-decoration: none;
    transition: color 0.2s ease-in-out;
}

.product-link:hover {
    color: #3a6d8c;
    text-decoration: underline;
}

.rate-text {
    font-size: 0.7rem;
    color: #777 !important;
    margin-top: 2px;
}

/* --- Product Category Headings --- */
.category-heading {
    font-size: 1rem;
    font-weight: 600;
    color: #555;
    margin-bottom: 0;
    padding-left: 0.75rem;
}


/* --- Sidebar Styling --- */
.sidebar-section .card-header {
    background-color: #f8f9fa;
    border-bottom: 1px solid #ddd;
    padding: 0.5rem 0.75rem;
}

.sidebar-section .card-header h5 {
    font-size: 1rem;
    font-weight: 600;
    color: #555;
    margin-bottom: 0;
    padding-left: 0.75rem;
}

.sidebar-section .card-body,
.sidebar-section .list-unstyled li {
    font-size: 0.85rem;
    color: #555;
}

.sidebar-section .list-unstyled li a {
    color: #555;
    text-decoration: none;
}

.sidebar-section .list-unstyled li a:hover {
    color: #3399cc;
    text-decoration: underline;
}

/* --- Legacy fallback hover style --- */
.card .list-unstyled a.text-muted:hover {
    color: #3a6d8c !important;
    text-decoration: underline;
}


/* --- Enhanced Footer Styling --- */
.footer-link {
    display: block;
    font-size: 0.95rem;
    color: #949ba3;
    text-decoration: none;
    padding: 0.25rem 0;
    transition: all 0.3s ease;
    border-radius: 4px;
    padding-left: 0.5rem;
}

.footer-link:hover {
    color: #F74902;
    background-color: rgba(247, 73, 2, 0.1);
    padding-left: 1rem;
    transform: translateX(5px);
}

footer {
    background: #2c3e50;
    color: white;
}

footer h6 {
    color: #F74902;
    font-weight: 600;
    margin-bottom: 1rem;
}

.nav-tabs .nav-link {
    color: #5a8eb1;
    padding: 0.5rem 1rem;
    font-weight: 500;
    border: none;
    border-bottom: 2px solid transparent;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.nav-tabs .nav-link:hover {
    color: #3a6d8c;
    background-color: #f8f9fa;
    border-color: #cde4f0;
}

.nav-tabs .nav-link.active {
    color: #3a6d8c;
    font-weight: 600;
    border-bottom: 3px solid #3a6d8c;
    background-color: #ffffff;
}

/*=========================================
  RESPONSIVE DESIGN
=========================================*/

/* Mobile Styles */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-cta .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .hero-section {
        min-height: auto;
        padding: 3rem 0;
    }
    
    .stat-card {
        padding: 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .product-image-container {
        height: 160px;
    }
    
    .product-image {
        height: 120px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-card {
        padding: 1rem;
    }
    
    .feature-card {
        padding: 1rem;
    }
    
    .feature-title {
        font-size: 1.3rem;
    }
    
    .hero-cta .btn {
        font-size: 1rem;
        padding: 0.6rem 1.5rem;
    }
}

/* Ensure 2 products per row on mobile */
@media (max-width: 576px) {
    .recent-products .col-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

/* Hero section mobile centering */
@media (max-width: 768px) {
    .hero-title-small {
        text-align: center !important;
    }
    
    .hero-subtitle-small {
        text-align: center !important;
    }
    
    .hero-features {
        text-align: center !important;
    }
    
    .hero-features .feature-item {
        justify-content: center !important;
    }
    
    .hero-cta {
        justify-content: center !important;
    }
}

/*=========================================
  END RESPONSIVE DESIGN
=========================================*/

.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

/* Invoice Page Styling (aligned with dock tax invoice) */
.invoice-doc {
    width: min(860px, 100%);
    margin: 1.5rem auto 2.5rem;
    padding: 2.25rem 2.5rem;
    border: 0.5px solid #e8ecf0;
    border-radius: 0.8rem;
    background: #fff;
    box-shadow: none;
    color: #475569;
    font-size: 0.82rem;
    font-weight: 400;
    line-height: 1.45;
}

.invoice-print-bar {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 1.25rem;
}

.invoice-print-bar button {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    min-height: 2.25rem;
    padding: 0.4rem 0.9rem;
    border: 0.5px solid #d0d5dd;
    border-radius: 0.45rem;
    color: #667085;
    background: #fff;
    font-size: 0.78rem;
    font-weight: 500;
    cursor: pointer;
}

.invoice-print-bar button:hover {
    border-color: #98a2b3;
    background: #f8fafc;
}

.invoice-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 2rem;
    padding-bottom: 1rem;
    border-bottom: 0.5px solid #d0d5dd;
}

.invoice-brand {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.invoice-title h1 {
    margin: 0;
    color: #64748b;
    font-size: 1.15rem;
    font-weight: 500;
    letter-spacing: -0.01em;
}

.invoice-title p {
    margin: 0.15rem 0 0;
    color: #94a3b8;
    font-size: 0.78rem;
    font-weight: 400;
}

.invoice-company {
    text-align: right;
    color: #94a3b8;
    font-size: 0.75rem;
    font-weight: 400;
}

.invoice-company strong {
    display: block;
    margin-bottom: 0.25rem;
    color: #64748b;
    font-size: 0.82rem;
    font-weight: 500;
}

.invoice-company p {
    margin: 0;
}

.invoice-meta {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 0.8rem 1.5rem;
    margin: 1.25rem 0 1.5rem;
}

.invoice-meta-wide {
    grid-column: 1 / -1;
}

.invoice-meta dt {
    margin: 0;
    color: #94a3b8;
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.invoice-meta dd {
    margin: 0.15rem 0 0;
    color: #64748b;
    font-size: 0.82rem;
    font-weight: 400;
    overflow-wrap: anywhere;
}

.invoice-table {
    width: 100%;
    border-collapse: collapse;
}

.invoice-table th,
.invoice-table td {
    padding: 0.45rem 0.55rem;
    border-bottom: 0;
    color: #64748b;
    text-align: left;
    vertical-align: top;
    font-weight: 400;
}

.invoice-table thead th {
    border-bottom: 0.5px solid #d0d5dd;
    color: #94a3b8;
    font-size: 0.62rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.invoice-num {
    text-align: right !important;
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
}

.invoice-taxrate {
    color: #94a3b8;
    font-size: 0.68rem;
    font-weight: 400;
}

.invoice-total-label {
    text-align: right !important;
    color: #94a3b8;
    font-weight: 400;
}

.invoice-table tfoot td {
    border-bottom: 0;
    padding-top: 0.4rem;
    padding-bottom: 0.4rem;
}

.invoice-table tfoot tr:first-child td {
    border-top: 0.5px solid #d0d5dd;
}

.invoice-grand-total td {
    color: #64748b;
    font-size: 0.9rem;
    font-weight: 500;
}

.invoice-doc .invoice-footer,
footer.invoice-footer {
    margin-top: 1.75rem;
    padding-top: 0.85rem;
    border-top: 0.5px solid #eef1f4;
    background: transparent;
    color: #94a3b8;
    font-size: 0.7rem;
    font-weight: 400;
    text-align: center;
}

.invoice-doc .invoice-footer p,
footer.invoice-footer p {
    margin: 0 0 0.25rem;
    color: inherit;
}

@media (max-width: 767.98px) {
    .invoice-doc {
        margin: 0.75rem auto 1.5rem;
        padding: 1.25rem 1rem;
    }

    .invoice-header {
        flex-direction: column;
        gap: 1rem;
    }

    .invoice-company {
        text-align: left;
    }
}

@media print {
    .invoice-doc {
        width: 100%;
        margin: 0;
        padding: 0;
        border: 0;
        border-radius: 0;
        box-shadow: none;
        color: #666 !important;
        font-weight: 300;
    }

    .invoice-print-bar {
        display: none !important;
    }

    .invoice-header,
    .invoice-table thead th {
        border-bottom-color: #ccc !important;
        border-bottom-width: 0.4px !important;
    }

    .invoice-table tfoot tr:first-child td,
    .invoice-footer {
        border-top-color: #ccc !important;
        border-top-width: 0.4px !important;
    }

    .invoice-table th,
    .invoice-table td {
        border-bottom: 0 !important;
        color: #666 !important;
        font-weight: 300;
    }

    .invoice-table thead th {
        border-bottom-color: #ccc !important;
        border-bottom-width: 0.4px !important;
        border-bottom-style: solid !important;
    }

    .invoice-table tfoot td {
        border-bottom-width: 0 !important;
    }

    .invoice-title h1,
    .invoice-company strong,
    .invoice-meta dd,
    .invoice-grand-total td {
        color: #555 !important;
        font-weight: 400 !important;
    }

    .invoice-title p,
    .invoice-company,
    .invoice-meta dt,
    .invoice-taxrate,
    .invoice-total-label,
    .invoice-table thead th {
        color: #888 !important;
        font-weight: 300 !important;
    }

    .invoice-doc .invoice-footer,
    footer.invoice-footer {
        background: transparent !important;
        color: #888 !important;
        font-weight: 300 !important;
    }
}

/* Account Status Badges - Text Color Only */
.bg-success-subtle {
    background-color: transparent !important;
    color: #28a745 !important;
}

.text-danger {
    color: #dc3545 !important;
}

.bg-warning {
    background-color: transparent !important;
    color: #ffc107 !important;
}

.bg-info {
    background-color: transparent !important;
    color: #3498db !important;
}

.bg-secondary {
    background-color: transparent !important;
    color: #6c757d !important;
}

.bg-danger {
    background-color: transparent !important;
    color: #dc3545 !important;
}

/*=========================================
  CALENDAR & DATE PICKER IMPROVEMENTS
=========================================*/

/* Enhanced calendar card styling */
#mydatepicker .card {
    border: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}

#mydatepicker .card:hover {
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* Date input focus states */
#mydatepicker input[type="text"]:focus {
    border-color: #F74902;
    box-shadow: 0 0 0 0.2rem rgba(247, 73, 2, 0.25);
}

/* Pricing display styling */
#mydatepicker .filled_from_ajax {
    font-weight: 600;
    color: #2c3e50;
}

#mydatepicker .filled_from_ajax[id="display_sub_total"] {
    color: #F74902 !important;
    font-size: 1.1em;
}

/* Button grid spacing */
.d-grid.gap-2 > * + * {
    margin-top: 0.5rem;
}

.d-grid.gap-3 > * + * {
    margin-top: 1rem;
}

/* Mobile spacing improvements */
@media (max-width: 768px) {
    .d-grid.gap-3 > * + * {
        margin-top: 1rem !important;
    }
    
    #mydatepicker {
        margin-top: 2rem !important;
    }
    
    /* Account page button spacing */
    .d-grid.gap-3 .btn {
        padding: 0.75rem 1rem;
    }
    
    /* Product page button spacing */
    #mydatepicker .d-grid.gap-2 > * + * {
        margin-top: 0.5rem !important;
    }
    
    /* Thank you page button spacing */
    .d-flex.gap-3.flex-wrap > .btn {
        margin-bottom: 0.5rem !important;
    }
    
    /* Button spacing for small screens */
    .d-flex.gap-2.flex-wrap > .btn,
    .d-flex.gap-3.flex-wrap > .btn {
        margin-bottom: 0.5rem !important;
    }
}

/*=========================================
  REGISTRATION LIVE SELFIE
=========================================*/

.selfie-capture {
    max-width: 28rem;
}

.selfie-capture__frame {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border: 1px solid #ced4da;
    border-radius: 0.5rem;
    background: #f4f6f8;
}

.selfie-capture__frame video,
.selfie-capture__frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.selfie-capture__frame video {
    transform: scaleX(-1);
}

.selfie-capture__placeholder {
    display: flex;
    height: 100%;
    padding: 1.5rem;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 0.5rem;
    color: #6c757d;
    text-align: center;
}

.selfie-capture__placeholder .bi {
    font-size: 2rem;
    color: #2c3e50;
}

/*=========================================
  REGISTRATION PINCODE COVERAGE
=========================================*/

.pincode-coverage__summary {
    cursor: pointer;
    color: #2c3e50;
    font-size: 0.875rem;
    font-weight: 500;
    user-select: none;
}

.pincode-coverage__summary:hover {
    color: #F74902;
}

.pincode-coverage__panel {
    margin-top: 0.5rem;
    padding: 0.75rem;
    border: 1px solid #dee2e6;
    border-radius: 0.5rem;
    background: #f8f9fa;
}

.pincode-coverage__list {
    max-height: 14rem;
    overflow-y: auto;
}

.pincode-coverage__choice {
    display: flex;
    width: 100%;
    gap: 0.5rem;
    padding: 0.4rem 0.5rem;
    border: 0;
    border-radius: 0.25rem;
    background: transparent;
    color: inherit;
    text-align: left;
    align-items: baseline;
}

.pincode-coverage__choice:hover {
    background: #fff;
}

.pincode-coverage__choice strong {
    flex: 0 0 4.5rem;
    color: #2c3e50;
}

.pincode-coverage__choice span {
    color: #6c757d;
    font-size: 0.85rem;
}

/*=========================================
  REGISTRATION FORM LABELS
=========================================*/

.register-section {
    margin-bottom: 1.75rem;
    padding-bottom: 0.25rem;
}

.register-section:last-of-type {
    margin-bottom: 0.5rem;
}

.register-section__header {
    margin-bottom: 1rem;
    padding-bottom: 0.65rem;
    border-bottom: 1px solid #e4e8ed;
}

.register-section__step {
    margin: 0 0 0.15rem;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #8a94a0;
}

.register-section__title {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 600;
    color: #2c3e50;
    line-height: 1.3;
}

.register-section__note {
    margin: 0.35rem 0 0;
    font-size: 0.8rem;
    color: #8a94a0;
    line-height: 1.4;
}

.register-form .form-group:has(.register-form__label) {
    margin-bottom: 0.95rem;
    padding-bottom: 0.95rem;
    border-bottom: 1px solid #f1f3f5;
}

.register-form .register-section .form-group:has(.register-form__label):last-of-type {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: 0;
}

.register-form__label {
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    color: #2c3e50 !important;
    line-height: 1.35;
}

.register-form__optional {
    font-weight: 400;
    color: #8a94a0;
}

.register-form__field--optional .register-form__label {
    font-weight: 500;
    color: #5b6773 !important;
}

.register-form__field--optional .form-control {
    background-color: #fafbfc;
    border-style: dashed;
}

.register-form .form-text,
.register-form .small.text-muted,
.register-form #pincode_help,
.register-form #photo_help,
.register-form #id_proof_help,
.register-form #address_proof_help {
    display: block;
    margin-top: 0.35rem;
    font-size: 0.78rem;
    line-height: 1.45;
    color: #8a94a0 !important;
}

.register-form .form-control-file {
    display: block;
    width: 100%;
}

.register-form .form-control,
.register-form .custom-select {
    border-color: #d7dde5;
}

.register-form .form-control:focus,
.register-form .custom-select:focus {
    border-color: #2c3e50;
    border-style: solid;
    box-shadow: 0 0 0 0.15rem rgba(44, 62, 80, 0.12);
}

@media (max-width: 767.98px) {
    .register-section {
        margin-bottom: 1.5rem;
    }

    .register-form .form-group:has(.register-form__label) {
        margin-bottom: 0.85rem;
        padding-bottom: 0.85rem;
    }

    .register-form__label {
        margin-bottom: 0.35rem;
        text-align: left !important;
    }
}

/* Feedback create form */
.feedback-form .form-label {
    font-size: 0.875rem;
    margin-bottom: 0.35rem;
}

.feedback-form .form-control {
    font-size: 0.9375rem;
}

.feedback-form textarea.form-control {
    min-height: 4.5rem;
}

.feedback-form .rating-option {
    flex: 1 1 0;
    min-width: 0;
}

.feedback-form .rating-option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.feedback-form .rating-option label {
    display: block;
    margin: 0;
    padding: 0.4rem 0.25rem;
    text-align: center;
    font-size: 0.8rem;
    font-weight: 500;
    color: #2c3e50;
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    cursor: pointer;
    user-select: none;
    line-height: 1.2;
}

.feedback-form .rating-option input:checked + label {
    color: #fff;
    background: #F74902;
    border-color: #F74902;
}

.feedback-form .rating-option input:focus-visible + label {
    outline: 2px solid #F74902;
    outline-offset: 2px;
}

.feedback-form .nps-scale {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0.35rem;
}

.feedback-form .nps-scale .rating-option label {
    padding: 0.55rem 0.2rem;
    font-size: 0.9rem;
    font-weight: 600;
}

.feedback-form .quality-scale {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.35rem;
}

@media (min-width: 576px) {
    .feedback-form .nps-scale {
        grid-template-columns: repeat(10, 1fr);
    }

    .feedback-form .quality-scale {
        grid-template-columns: repeat(4, 1fr);
    }

    .feedback-form .rating-option label {
        font-size: 0.85rem;
        padding: 0.45rem 0.35rem;
    }
}

/* Feedback result pages (thank-you, thank-you-request, follow-up) */
.feedback-result__icon {
    width: 48px;
    height: 48px;
    margin-bottom: 0.75rem;
}

.feedback-result__icon i {
    font-size: 1.25rem;
}

.feedback-result__title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    line-height: 1.35;
}

.feedback-result__subtitle {
    font-size: 0.9375rem;
    font-weight: 600;
    margin-bottom: 0.35rem;
    line-height: 1.35;
}

.feedback-result__text {
    font-size: 0.875rem;
    line-height: 1.45;
    margin-bottom: 0;
}

.feedback-result__points {
    text-align: left;
    margin: 0;
    padding: 0.75rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.feedback-result__points li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.8125rem;
    line-height: 1.4;
    color: #515a63;
}

.feedback-result__points li + li {
    margin-top: 0.65rem;
    padding-top: 0.65rem;
    border-top: 1px solid #e9ecef;
}

.feedback-result__points i {
    flex-shrink: 0;
    margin-top: 0.1rem;
    color: #2c3e50;
    font-size: 0.95rem;
}

.feedback-result__cta-block {
    padding: 0.85rem;
    background: #f8f9fa;
    border-radius: 8px;
    text-align: center;
}

.feedback-result__share-btns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
}

.feedback-result__share-btns .btn {
    padding: 0.45rem 0.5rem;
}

.feedback-result__actions {
    display: grid;
    gap: 0.5rem;
}

.feedback-result__signoff {
    font-size: 0.8125rem;
    line-height: 1.45;
}

@media (min-width: 576px) {
    .feedback-result__icon {
        width: 56px;
        height: 56px;
    }

    .feedback-result__icon i {
        font-size: 1.4rem;
    }

    .feedback-result__title {
        font-size: 1.25rem;
    }

    .feedback-result__actions {
        grid-template-columns: 1fr 1fr;
    }
}

/* Account page */
.account-page .account-card__body {
    padding: 1rem;
}

.account-page .account-profile {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
}

.account-page .account-profile__photo img {
    width: 120px;
    height: 140px;
    object-fit: cover;
}

.account-page .account-profile__details {
    width: 100%;
}

.account-page .account-detail {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    text-align: left;
    margin-bottom: 0.75rem;
}

.account-page .account-detail i {
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.account-page .account-detail__value {
    word-break: break-word;
}

.account-page .account-proof-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem 1.25rem;
    margin-top: 0.25rem;
}

.account-page .account-announce-icon {
    width: 35px;
    height: 35px;
    flex-shrink: 0;
}

.account-page .account-announce-icon i {
    font-size: 0.9rem;
}

.account-page .account-list__item {
    border: 1px solid #e9ecef;
    border-radius: 0.5rem;
    padding: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
}

.account-page .account-list__item--refund {
    background: #f8d7da;
    border-color: #f1aeb5;
}

.account-page .account-list__badge {
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
}

.account-page .account-table {
    font-size: 0.875rem;
}

.account-page .account-table tbody tr {
    line-height: 1.2;
}

.account-page .account-empty-icon {
    width: 60px;
    height: 60px;
}

.account-page .account-empty-icon i {
    font-size: 1.5rem;
}

.account-modal-empty-icon {
    font-size: 2rem;
}

@media (min-width: 768px) {
    .account-page .account-card__body {
        padding: 1.5rem;
    }

    .account-page .account-profile {
        flex-direction: row;
        align-items: flex-start;
        text-align: left;
    }

    .account-page .account-profile__photo img {
        width: 160px;
        height: 180px;
    }

    .account-page .account-proof-links {
        justify-content: flex-start;
    }
}

.account-rent-link {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 600;
    color: #e85d04;
    text-decoration: none;
}

.account-rent-link:hover {
    color: #d00000;
    text-decoration: underline;
}

.product-date-tip {
    font-size: 0.8rem;
    line-height: 1.35;
    margin-top: -0.25rem;
}
