.page-hero {
    text-align: center;
    position: relative;
    overflow: hidden;
    height: 50vh;
}



.page-hero h1 {
    font-family: var(--font-primary);
    font-size: var(--h1-size);
    font-weight: var(--fw-regular);
    letter-spacing: var(--ls-hero);
    text-transform: uppercase;
    color: var(--primary-maroon);
    margin-bottom: 8px;
    position: relative;
}

.page-hero .divider-line {
    width: 70px;
    height: 2px;
    background: var(--primary-brown);
    margin: 12px auto 16px;
}

.breadcrumb-custom {
    font-size: 0.82rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-muted);
    position: relative;
    font-family: var(--font-editorial);
}

.breadcrumb-custom a {
    color: var(--primary-maroon);
    text-decoration: none;
}

.breadcrumb-custom a:hover {
    text-decoration: underline;
}

.section-heading {
    font-family: var(--font-primary);
    font-size: var(--h2-size);
    font-weight: var(--fw-regular);
    text-transform: uppercase;
    letter-spacing: var(--ls-section);
    color: var(--text-dark);
    margin-bottom: 6px;
}

.section-heading span {
    color: var(--primary-maroon);
}

.heading-underline {
    width: 50px;
    height: 2px;
    background: var(--primary-maroon);
    margin-bottom: 36px;
}

.info-section {
    padding: 0px 0 52px;
    background: var(--bg-white);
}

.info-card {
    background: var(--bg-light);
    border: 1px solid var(--border-light);
    padding: 36px 24px;
    text-align: center;
    height: 100%;
    transition:
        box-shadow 0.25s,
        transform 0.25s;
    position: relative;
    overflow: hidden;
}

.info-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary-maroon);
    transform: scaleX(0);
    transition: transform 0.3s;
}

.info-card:hover {
    box-shadow: var(--shadow-soft);
    transform: translateY(-4px);
}

.info-card:hover::after {
    transform: scaleX(1);
}

.info-icon {
    width: 64px;
    height: 64px;
    background: var(--bg-cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    color: var(--primary-maroon);
    border: 2px solid var(--border-dark);
}

.info-card h5 {
    font-family: var(--font-primary);
    font-size: 0.9rem;
    font-weight: var(--fw-bold);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.info-card p,
.info-card a {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.75;
    margin: 0;
    text-decoration: none;
}

.info-card a {
    color: var(--primary-maroon);
    transition: opacity 0.2s;
}

.info-card a:hover {
    opacity: 0.75;
}

.info-card .hours-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.83rem;
    color: var(--text-muted);
    padding: 4px 0;
    border-bottom: 1px solid var(--border-light);
}

.info-card .hours-row:last-child {
    border-bottom: none;
}

.info-card .hours-row span:last-child {
    color: var(--text-dark);
    font-weight: var(--fw-semibold);
}

.contact-section {
    padding: 55px 0 60px;
    background: #f6f3ef;
}

.form-card {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-soft);
    padding: 44px 40px;
}

.form-label-custom {
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-dark);
    font-weight: var(--fw-semibold);
    margin-bottom: 6px;
    display: block;
}

.form-control-custom {
    width: 100%;
    border: 1.5px solid var(--border-dark);
    border-radius: 0;
    padding: 11px 14px;
    font-size: 0.9rem;
    font-family: var(--font-body);
    background: var(--bg-light);
    color: var(--text-dark);
    outline: none;
    transition:
        border-color 0.2s,
        background 0.2s;
    margin-bottom: 20px;
}

.form-control-custom:focus {
    border-color: var(--primary-maroon);
    background: #fff;
}

select.form-control-custom {
    appearance: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%236f6f6f' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
}

textarea.form-control-custom {
    resize: vertical;
    min-height: 130px;
}

.char-count {
    font-size: 0.75rem;
    color: var(--text-light);
    text-align: right;
    margin-top: -16px;
    margin-bottom: 20px;
}

.btn-submit {
    display: inline-block;
    padding: 13px 36px;
    background: var(--text-dark);
    color: #fff;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: 2px solid var(--text-dark);
    transition: all 0.22s;
    font-family: var(--font-body);
    cursor: pointer;
}

.btn-submit:hover {
    background: transparent;
    color: var(--text-dark);
}

.star-rating {
    display: flex;
    gap: 6px;
    margin-bottom: 20px;
}

.star-rating i {
    font-size: 1.4rem;
    color: var(--border-dark);
    cursor: pointer;
    transition: color 0.15s;
}

.star-rating i.active,
.star-rating i:hover {
    color: #f4c430;
}

.sidebar-widget {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    padding: 26px 24px;
    margin-bottom: 24px;
}

.widget-title {
    font-family: var(--font-primary);
    font-size: 0.9rem;
    font-weight: var(--fw-regular);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-dark);
    padding-bottom: 12px;
    border-bottom: 2px solid var(--primary-maroon);
    margin-bottom: 18px;
}

.social-link-row {
    display: flex;
    align-items: center;
    gap: 14px;
    border-bottom: 1px solid var(--border-light);
    text-decoration: none;
    transition: padding-left 0.2s;
    color: var(--text-muted);
}

.social-link-row:last-child {
    border-bottom: none;
}

.social-link-row:hover {
    padding-left: 6px;
}

.social-link-row .s-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.s-icon.ig {
    background: linear-gradient(
        135deg,
        #f09433,
        #e6683c,
        #dc2743,
        #cc2366,
        #bc1888
    );
    color: #fff;
}

.s-icon.fb {
    background: #1877f2;
    color: #fff;
}

.s-icon.pin {
    background: #e60023;
    color: #fff;
}

.s-icon.wa {
    background: #25d366;
    color: #fff;
}

.social-link-row .s-label {
    font-size: 0.85rem;
    color: var(--text-dark);
}

.social-link-row .s-handle {
    font-size: 0.75rem;
    color: var(--text-light);
}

.faq-item {
    border-bottom: 1px solid var(--border-light);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 14px 0;
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: var(--fw-semibold);
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.2s;
    letter-spacing: 0.01em;
}

.faq-question:hover {
    color: var(--primary-maroon);
}

.faq-question i {
    font-size: 0.75rem;
    color: var(--primary-maroon);
    transition: transform 0.25s;
}

.faq-question.open i {
    transform: rotate(180deg);
}

.faq-answer {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.7;
    max-height: 0;
    overflow: hidden;
    transition:
        max-height 0.3s ease,
        padding 0.3s;
    padding: 0;
}

.faq-answer.open {
    max-height: 200px;
    padding-bottom: 14px;
}

.map-section {
    background: var(--bg-white);
}

.map-wrap {
    width: 100%;
    height: 400px;
    border: none;
    display: block;
    border-top: 3px solid var(--primary-maroon);
}

.map-overlay-card {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
    padding: 28px 28px;
    max-width: 300px;
}

.map-overlay-card h5 {
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: var(--fw-bold);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--primary-maroon);
    margin-bottom: 12px;
}

.map-overlay-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 8px;
}

.directions-btn {
    display: inline-block;
    margin-top: 12px;
    padding: 8px 20px;
    background: var(--primary-maroon);
    color: #fff;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    transition: opacity 0.2s;
}

.directions-btn:hover {
    opacity: 0.85;
    color: #fff;
}

.wholesale-banner {
    background: var(--primary-maroon);
    padding: 48px 0;
    text-align: center;
}

.wholesale-banner h2 {
    font-family: var(--font-primary);
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: var(--fw-regular);
    letter-spacing: var(--ls-section);
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 10px;
}

.wholesale-banner p {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.82);
    margin-bottom: 24px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

.btn-wholesale {
    display: inline-block;
    padding: 12px 32px;
    background: #fff;
    color: var(--primary-maroon);
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: var(--fw-semibold);
    border: 2px solid #fff;
    transition: all 0.22s;
    margin: 4px;
}

.btn-wholesale:hover {
    background: transparent;
    color: #fff;
}

.btn-wholesale-outline {
    display: inline-block;
    padding: 12px 32px;
    background: transparent;
    color: #fff;
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.5);
    transition: all 0.22s;
    margin: 4px;
}

.btn-wholesale-outline:hover {
    border-color: #fff;
    color: #fff;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 991.98px) {
    .form-card {
        padding: 28px 20px;
    }
}

@media (max-width: 767.98px) {
    .map-wrap {
        height: 280px;
    }
}

.section-heading-wrap {
    margin-bottom: 36px;
}

.section-heading-wrap .section-title {
    font-family: var(--font-editorial);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: var(--fw-medium);
    letter-spacing: var(--ls-section);
    text-transform: uppercase;
    display: inline-block;
    position: relative;
    color: #000;
    z-index: 1;
    padding-left: 20px;
    margin: 0;
}

.section-heading-wrap .section-title::after {
    content: "";
    position: absolute;
    left: 0px;
    bottom: 0px;
    width: 104%;
    height: 27px;
    background: var(--bg-cream);
    z-index: -1;
}

.row {
    --bs-gutter-x: unset !important;
}
