:root {
    --primary-color: #b9863d;
    --primary-light: #efe4cf;
    --primary-dark: #6f4216;
    --secondary-color: #d7aa58;
    --accent-color: #f2c879;
    --text-dark: #2f291f;
    --text-light: #756b5d;
    --bg-light: #f7f3ea;
    --surface-warm: #fffaf0;
    --line-warm: #e8dcc5;
    --white: #ffffff;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-dark);
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

html {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

img,
svg,
video,
canvas,
iframe {
    max-width: 100%;
}

main {
    flex: 1;
    padding-top: 102px;
    /* Offset for fixed navbar */
}

/* Home page specific fix */
/* Home page specific fix */
body.home-page main {
    padding-top: 102px;
}

@media (max-width: 991px) {
    body.home-page main {
        padding-top: 82px;
        /* Restore padding on mobile to avoid cutting off top */
    }
}

/* Navbar */
.navbar {
    background-color: rgba(24, 17, 11, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.15);
    padding: 15px 0;
    transition: all 0.3s ease;
}

.navbar.navbar-scrolled {
    background-color: rgba(24, 17, 11, 0.98);
    padding: 10px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary-color) !important;
}

.site-logo {
    display: block;
    height: 78px;
    width: auto;
    max-width: 260px;
    object-fit: contain;
}

body.home-page .site-logo {
    height: 78px;
    max-width: 260px;
}

.nav-link {
    font-weight: 500;
    color: #ebdcc5 !important;
    margin: 0 10px;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary-color);
    transition: width 0.3s;
}

.nav-link:hover::after {
    width: 100%;
}

.navbar-toggler {
    border-color: rgba(185, 134, 61, 0.3) !important;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.25rem rgba(185, 134, 61, 0.25) !important;
}

.global-service-search-nav {
    position: relative;
    margin-left: 8px;
}

.global-service-search-toggle {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(185, 134, 61, 0.3);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: #ebdcc5;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s, color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.global-service-search-toggle span {
    display: none;
}

.global-service-search-toggle:hover,
.global-service-search-nav.is-open .global-service-search-toggle {
    background: var(--primary-color);
    color: var(--white);
    box-shadow: 0 8px 18px rgba(111, 66, 22, 0.3);
    transform: translateY(-1px);
}

.global-service-search-panel {
    position: absolute;
    top: calc(100% + 14px);
    right: 0;
    width: min(360px, calc(100vw - 32px));
    background: #1e150c;
    border: 1px solid rgba(185, 134, 61, 0.25);
    border-radius: 14px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.4);
    padding: 12px;
    display: none;
}

.global-service-search-nav.is-open .global-service-search-panel {
    display: block;
}

.global-service-search-field {
    position: relative;
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(185, 134, 61, 0.3);
    border-radius: 999px;
}

.global-service-search-field i {
    position: absolute;
    left: 15px;
    color: var(--primary-color);
    pointer-events: none;
}

.global-service-search-field input {
    width: 100%;
    height: 44px;
    border: 0;
    outline: 0;
    background: transparent;
    color: #ffffff;
    padding: 0 16px 0 42px;
}

.global-service-search-field input::placeholder {
    color: #a59b8d;
}

.global-service-search-results {
    max-height: 330px;
    overflow: auto;
    margin-top: 8px;
}

.global-service-search-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px;
    border-radius: 10px;
    color: #ebdcc5;
    text-decoration: none;
    transition: background-color 0.2s, color 0.2s;
}

.global-service-search-item:hover,
.global-service-search-item:focus {
    background: rgba(185, 134, 61, 0.15);
    color: var(--white);
}

.global-service-search-item img {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(185, 134, 61, 0.3);
}

.global-service-search-item span {
    font-weight: 600;
    line-height: 1.25;
}

.global-service-search-empty {
    color: #a59b8d;
    font-size: 0.92rem;
    padding: 12px 10px 6px;
}

@media (max-width: 991px) {
    main {
        padding-top: 82px;
    }

    .navbar-collapse {
        background: #18110b;
        border-top: 1px solid rgba(185, 134, 61, 0.2);
        margin-top: 10px;
        padding: 10px 0 14px;
        box-shadow: 0 14px 28px rgba(0, 0, 0, 0.4);
    }

    .navbar-nav {
        align-items: center !important;
        text-align: center;
    }

    .navbar-nav .nav-item {
        width: 100%;
    }

    .nav-link {
        display: inline-flex;
        justify-content: center;
        margin: 0 auto;
        padding: 10px 6px !important;
        text-align: center;
    }

    .navbar-nav .nav-item.d-flex {
        justify-content: center;
    }

    .global-service-search-nav {
        width: 100%;
        margin: 8px 0 4px;
        padding: 0 20px;
    }

    .global-service-search-toggle {
        width: 100%;
        height: 44px;
        border-radius: 999px;
        gap: 8px;
        font-weight: 600;
    }

    .global-service-search-toggle span {
        display: inline;
    }

    .global-service-search-panel {
        position: static;
        width: 100%;
        margin-top: 10px;
        box-shadow: 0 12px 26px rgba(0, 0, 0, 0.3);
    }

    .nav-social-icon {
        margin: 0 8px;
    }

    .nav-link::after {
        display: none;
    }
}

.btn-schedule {
    background: linear-gradient(45deg, var(--primary-dark), var(--primary-color), var(--secondary-color));
    color: white !important;
    border-radius: 50px;
    padding: 10px 25px;
    font-weight: 600;
    border: none;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-schedule:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(111, 66, 22, 0.24);
}

.btn-premium {
    background-color: #9c6826 !important;
    color: white !important;
    border: 1px solid #9c6826 !important;
    transition: all 0.3s ease;
}

.btn-premium:hover,
.btn-premium:focus,
.btn-premium:active {
    background-color: #6f4216 !important;
    color: white !important;
    border-color: #6f4216 !important;
    box-shadow: 0 4px 8px rgba(111, 66, 22, 0.22) !important;
}

/* Heros / Carousel */
#heroCarousel .carousel-item {
    height: 600px;
    min-height: 400px;
    background-color: #333;
    /* Fallback */
}

#heroCarousel img {
    object-fit: cover;
    height: 100%;
    width: 100%;
    /* filter: brightness(0.7); Removed as per user request */
}

.carousel-caption {
    top: 50%;
    transform: translateY(-50%);
    bottom: auto;
    text-align: left;
    width: 60%;
    left: 10%;
    right: auto;
    padding-bottom: 0;
}

.carousel-caption h2 {
    font-size: 3.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: fadeInDown 1s;
}

.carousel-caption p {
    font-size: 1.2rem;
    animation: fadeInUp 1s;
}

/* Section Generals */
section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: var(--primary-color);
    margin: 10px auto 0;
    border-radius: 2px;
}

.section-bg-light {
    background-color: var(--bg-light);
}

/* Intro & Form */
.home-intro-eyebrow {
    color: var(--primary-color);
    letter-spacing: 0;
}

.home-intro-btn {
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    background: transparent;
    font-weight: 500;
    padding: 8px 18px;
}

.home-intro-btn:hover,
.home-intro-btn:focus {
    color: var(--white);
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border-color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(111, 66, 22, 0.18);
}

.intro-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
}

.appointment-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 10;
    /* margin-top: -50px; Optional overlap if desired */
}

.appointment-datetime-row {
    --bs-gutter-x: 1rem;
}

.appointment-date-field,
.appointment-time-field {
    min-width: 0;
    white-space: nowrap;
}

@media (max-width: 575px) {
    .appointment-card {
        padding: 24px 22px;
    }

    .appointment-datetime-row {
        --bs-gutter-x: .75rem;
    }

    .appointment-datetime-row > [class*="col-"] {
        min-width: 0;
    }

    .appointment-date-field,
    .appointment-time-field {
        height: 56px;
        min-height: 56px;
        padding: .65rem .75rem;
        font-size: 1rem;
        line-height: 1.2;
        overflow: hidden;
        text-overflow: clip;
    }

    .appointment-date-field::-webkit-date-and-time-value,
    .appointment-time-field::-webkit-date-and-time-value {
        text-align: left;
        min-height: 1.2em;
    }

    .appointment-date-field::-webkit-calendar-picker-indicator,
    .appointment-time-field::-webkit-calendar-picker-indicator {
        margin-left: 2px;
        padding: 0;
    }
}

/* Highlights */
.highlight-item {
    text-align: center;
    padding: 20px;
    transition: transform 0.3s;
}

.highlight-item:hover {
    transform: translateY(-10px);
}

.highlight-icon {
    width: 80px;
    height: 80px;
    background: rgba(185, 134, 61, 0.12);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 20px;
}

/* Services */
.service-card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: all 0.3s;
}

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

.service-img {
    height: 200px;
    object-fit: cover;
}

.service-body {
    padding: 25px;
    text-align: center;
}

.service-title {
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--primary-dark);
}

/* Team */
.team-card {
    text-align: center;
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
}

.team-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.team-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 4px solid var(--primary-light);
}

.professional-card {
    max-width: 380px;
    margin: 0 auto;
    background: transparent;
}

.professional-section-title {
    margin-bottom: 26px !important;
}

.professional-photo-frame {
    position: relative;
    padding: 10px;
    border: 1px solid rgba(185, 134, 61, 0.28);
    border-radius: 16px;
    background: linear-gradient(145deg, var(--surface-warm), var(--white));
    box-shadow: 0 18px 38px rgba(111, 66, 22, 0.14);
}

.professional-photo-frame::before {
    content: '';
    position: absolute;
    inset: 18px -10px -10px 18px;
    z-index: 0;
    border-radius: 16px;
    background: rgba(185, 134, 61, 0.12);
}

.professional-photo {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    height: 430px;
    object-fit: cover;
    object-position: top center;
    border-radius: 10px;
}

.professional-name {
    color: var(--primary-dark);
    font-size: 1.3rem;
}

@media (max-width: 575px) {
    .professional-section-title {
        margin-bottom: 20px !important;
    }

    .professional-card {
        max-width: 330px;
    }

    .professional-photo {
        height: 380px;
    }
}

/* Testimonials */
.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    position: relative;
    margin: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.testimonials-carousel {
    padding: 0 48px 42px;
}

.testimonials-carousel .carousel-indicators {
    bottom: 0;
    margin-bottom: 0;
}

.testimonials-carousel .carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--primary);
}

.testimonials-control {
    width: 38px;
    opacity: 1;
}

.testimonials-control .carousel-control-prev-icon,
.testimonials-control .carousel-control-next-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: var(--primary);
    background-size: 55%;
}

.quote-icon {
    font-size: 2rem;
    color: var(--primary-light);
    position: absolute;
    top: 20px;
    left: 20px;
}

@media (max-width: 767.98px) {
    .testimonials-carousel {
        padding: 0 0 42px;
    }

    .testimonials-control {
        display: none;
    }
}

/* Footer */
footer {
    background:
        linear-gradient(135deg, rgba(79, 45, 14, 0.98), rgba(156, 104, 38, 0.94)),
        linear-gradient(180deg, #f7efe0 0%, #ffffff 100%);
    color: rgba(255, 255, 255, 0.82);
    padding-top: 60px;
    margin-top: auto;
    border-top: 4px solid var(--primary-light);
    box-shadow: 0 -12px 35px rgba(111, 66, 22, 0.16);
}

.footer-title {
    color: var(--white);
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-heading {
    color: var(--white);
    font-weight: 600;
}

.footer-description,
.footer-contact {
    color: rgba(255, 255, 255, 0.82);
}

.footer-contact a,
.footer-contact a:visited,
.footer-contact a:hover,
.footer-contact a:active,
footer a[href^="tel"] {
    color: rgba(255, 255, 255, 0.82);
    text-decoration: none;
}

.footer-contact-icon {
    color: #f2c879;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.82);
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    transition: 0.3s;
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 5px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.14);
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 10px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    transition: 0.3s;
}

.social-icons a:hover {
    background: var(--white);
    color: var(--primary-dark);
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(0, 0, 0, 0.08);
}

.footer-brand {
    color: var(--white);
    font-weight: 700;
}

/* Nav Social Icons */
.nav-social-icon {
    color: #ebdcc5;
    margin-left: 10px;
    font-size: 1.2rem;
    transition: color 0.3s;
}

.nav-social-icon:hover {
    color: var(--primary-color);
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    html,
    body {
        position: relative;
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }

    main,
    header,
    section,
    footer,
    .navbar,
    .carousel,
    .carousel-inner,
    .carousel-item {
        max-width: 100%;
        overflow-x: clip;
    }

    @supports not (overflow-x: clip) {
        main,
        header,
        section,
        footer,
        .navbar,
        .carousel,
        .carousel-inner,
        .carousel-item {
            overflow-x: hidden;
        }
    }

    .container,
    .container-fluid {
        max-width: 100%;
    }

    .card,
    .alert,
    .btn,
    .footer-contact,
    .footer-description,
    .nav-link,
    .section-title,
    .intro-text {
        overflow-wrap: anywhere;
    }

    .site-logo,
    body.home-page .site-logo {
        height: 56px;
        max-width: 180px;
    }

    #heroCarousel .carousel-item {
        height: 500px;
        /* Increased height for better mobile display */
    }

    .carousel-caption {
        width: 90%;
        /* Wider on mobile */
        left: 5%;
        text-align: center;
        /* Center text on mobile */
    }

    .carousel-caption h2 {
        font-size: 2rem;
    }
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
    width: 50px;
    height: 50px;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: all 0.3s;
    background: var(--primary-color);
    color: white;
    box-shadow: 0 5px 15px rgba(111, 66, 22, 0.24);
    border: none;
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    color: white;
}

.back-to-top i {
    font-size: 1.5rem;
}

/* Product details page */
.product-page {
    background: #f5f6f8;
}

.product-back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 16px;
}

.product-back-link:hover {
    color: var(--primary-dark);
}

.product-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 28px;
    align-items: start;
}

.product-main-column {
    display: flex;
    flex-direction: column;
    gap: 28px;
    min-width: 0;
}

.product-gallery-inner {
    display: grid;
    grid-template-columns: 88px minmax(0, 1fr);
    gap: 12px;
}

.product-thumbs {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-height: 540px;
    overflow: auto;
    padding-right: 4px;
}

.product-thumb-btn {
    border: 1px solid #dedee4;
    border-radius: 12px;
    background: #fff;
    padding: 6px;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.product-thumb-btn img {
    width: 100%;
    height: 74px;
    object-fit: cover;
    border-radius: 8px;
}

.product-thumb-btn.is-active,
.product-thumb-btn:hover {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(185, 134, 61, 0.14);
}

.product-main-image-wrap {
    background: #fff;
    border-radius: 16px;
    border: 1px solid #e5e5eb;
    min-height: 540px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-main-image {
    width: 100%;
    height: 540px;
    object-fit: contain;
    padding: 24px;
}

.product-main-image-empty {
    color: #8b8e98;
    font-size: 0.95rem;
}

.product-discount-badge {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background: #d5ff28;
    color: #101010;
    font-weight: 700;
    text-align: center;
    padding: 8px 12px;
}

.product-summary {
    background: #fff;
    border: 1px solid #e5e5eb;
    border-radius: 16px;
    padding: 22px;
    position: sticky;
    top: 102px;
}

.product-title {
    font-size: 2rem;
    line-height: 1.15;
    font-weight: 700;
    margin-bottom: 8px;
}

.product-category {
    color: var(--text-light);
}

.product-price-box {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 14px;
}

.product-price-tag {
    background: #ff6d36;
    color: #fff;
    border-radius: 999px;
    padding: 4px 10px;
    font-size: 0.78rem;
    letter-spacing: 0.01em;
    font-weight: 700;
    display: inline-block;
    text-transform: uppercase;
    width: fit-content;
}

.product-price-tag--promo {
    background: #198754;
}

.product-old-price {
    color: #7c7f87;
    text-decoration: line-through;
}

.product-current-price {
    font-size: 2.05rem;
    font-weight: 700;
    color: #191a1f;
    line-height: 1;
}

.product-installments {
    color: #5e6170;
    font-size: 0.92rem;
}

.product-meta-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 14px;
    color: #3f4150;
}

.product-offer-timer {
    background: #ff7a3c;
    color: #fff;
    border-radius: 12px;
    padding: 10px 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 14px;
}

.product-offer-timer-left {
    display: flex;
    align-items: center;
    gap: 8px;
}

.product-offer-timer-left i {
    font-size: 1.05rem;
}

.product-offer-timer-left strong {
    font-size: 0.9rem;
    line-height: 1;
    display: block;
}

.product-offer-timer-left small {
    display: block;
    font-size: 0.74rem;
    opacity: 0.95;
}

.product-offer-timer-right {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.02em;
}

.product-offer-timer.is-ended {
    background: #6d6f78;
}

.product-variations h2 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.product-variation-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.product-variation-hint {
    margin: -6px 0 14px;
    font-size: 0.84rem;
    color: #7a4a19;
    background: #fff7e8;
    border: 1px solid #ead7b8;
    border-radius: 10px;
    padding: 8px 10px;
}

.product-chip {
    border: 1px solid #dadce3;
    border-radius: 999px;
    padding: 6px 12px;
    font-size: 0.82rem;
    background: #f8f9fb;
}

.product-chip-btn {
    cursor: pointer;
    transition: all 0.2s;
}

.product-chip-btn:hover {
    border-color: var(--primary-color);
    background: rgba(185, 134, 61, 0.1);
}

.product-chip-btn.is-selected {
    border-color: var(--primary-color);
    background: rgba(185, 134, 61, 0.16);
    color: #6f4216;
    font-weight: 600;
}

.product-chip-btn.is-disabled {
    opacity: 0.55;
    cursor: not-allowed;
}

.product-buy-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.product-buy-btn {
    border-radius: 10px;
    padding: 12px 18px;
    font-weight: 600;
    font-size: 1.03rem;
}

.product-buy-btn-secondary {
    border-radius: 10px;
    padding: 12px 18px;
    font-weight: 600;
    font-size: 1.03rem;
}

.product-description-card {
    background: #fff;
    border-radius: 16px;
    border: 1px solid #e5e5eb;
    padding: 22px;
}

.product-description-card h2 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    font-weight: 700;
}

.product-description-card p {
    margin: 0;
    color: #41434f;
}

.product-share-card,
.product-related-card {
    background: #fff;
    border-radius: 16px;
    border: 1px solid #e5e5eb;
    box-shadow: 0 10px 26px rgba(111, 66, 22, 0.08);
}

.product-share-card {
    margin-top: 18px;
    padding: 18px;
}

.product-share-card h2,
.product-related-card h2 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    font-weight: 700;
    color: #2f291f;
}

.product-share-card p,
.product-related-header p {
    margin: 0;
    color: #756b5d;
    font-size: 0.95rem;
}

.product-share-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 14px;
}

.product-share-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.product-share-feedback {
    display: inline-block;
    margin-top: 10px;
    color: #198754;
    font-weight: 600;
}

.product-related-card {
    margin-top: 28px;
    padding: 22px;
}

.product-related-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
}

.product-related-title {
    font-size: 1.05rem;
    min-height: 52px;
}

@media (max-width: 1199px) {
    .product-hero {
        grid-template-columns: minmax(0, 1fr) 320px;
    }
}

@media (max-width: 991px) {
    .product-hero {
        grid-template-columns: 1fr;
    }

    .product-summary {
        position: static;
    }

    .product-gallery-inner {
        grid-template-columns: 1fr;
    }

    .product-thumbs {
        flex-direction: row;
        max-height: none;
        overflow-x: auto;
        overflow-y: hidden;
        order: 2;
    }

    .product-related-header {
        flex-direction: column;
        align-items: stretch;
    }

    .product-thumb-btn {
        min-width: 84px;
    }
}

@media (max-width: 576px) {
    .product-title {
        font-size: 1.7rem;
    }

    .product-main-image-wrap,
    .product-main-image {
        min-height: 360px;
        height: 360px;
    }
}

/* Store page */
.store-page {
    background:
        radial-gradient(circle at 0% 0%, rgba(185, 134, 61, 0.08), transparent 35%),
        radial-gradient(circle at 100% 10%, rgba(242, 200, 121, 0.12), transparent 25%),
        #f7f3ea;
}

.store-hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.store-title {
    font-size: 2.15rem;
    font-weight: 700;
    color: #1e2230;
}

.store-subtitle {
    color: #65697a;
}

.store-cart-btn {
    white-space: nowrap;
}

.store-card {
    border-radius: 18px;
    border: 1px solid #e4e6ef;
    background: #fff;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(14, 24, 55, 0.06);
    transition: transform 0.25s, box-shadow 0.25s;
}

.store-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 36px rgba(14, 24, 55, 0.12);
}

.store-card-image-link {
    position: relative;
    display: block;
    background: linear-gradient(150deg, #f8f9fc, #eef1f8);
}

.store-card-image {
    width: 100%;
    height: 235px;
    object-fit: contain;
    padding: 16px;
}

.store-card-tag {
    position: absolute;
    top: 12px;
    right: 12px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 999px;
    padding: 5px 9px;
    color: #fff;
}

.store-card-tag.is-offer {
    background: #ff5f45;
}

.store-card-tag.is-promo {
    background: #198754;
}

.store-card-body {
    padding: 16px 16px 18px;
}

.store-card-category {
    font-size: 0.86rem;
    color: #868b9b;
}

.store-card-title {
    font-size: 1.32rem;
    font-weight: 700;
    color: #1f2433;
    margin-bottom: 10px;
}

.store-card-price {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.store-card-old-price {
    color: #8e92a2;
    text-decoration: line-through;
    font-size: 0.92rem;
}

.store-card-current-price {
    color: #202533;
    font-size: 1.55rem;
    line-height: 1;
}

.store-offer-timer {
    margin-top: 10px;
    border-radius: 10px;
    background: #fff4ed;
    color: #a84a26;
    border: 1px solid #ffd8c7;
    padding: 7px 9px;
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 0.82rem;
}

.store-offer-time {
    margin-left: auto;
    font-weight: 700;
    color: #8b3317;
    letter-spacing: 0.02em;
}

.store-offer-timer.is-ended {
    background: #f0f1f4;
    border-color: #d6d9e1;
    color: #656b79;
}

@media (max-width: 767px) {
    .store-hero {
        flex-direction: column;
        align-items: flex-start;
    }

    .store-title {
        font-size: 1.75rem;
    }

    .store-card-image {
        height: 205px;
    }
}

/* Unified Shop Warm Gold Theme */
.store-page,
.product-page,
.cart-page,
.checkout-page {
    background:
        radial-gradient(circle at 0% 0%, rgba(185, 134, 61, 0.12), transparent 36%),
        radial-gradient(circle at 100% 10%, rgba(242, 200, 121, 0.18), transparent 30%),
        #fbf8f1;
}

.store-page .btn-primary,
.product-page .btn-primary,
.cart-page .btn-primary,
.checkout-page .btn-primary {
    background: linear-gradient(135deg, #d7aa58, #9c6826);
    border-color: #9c6826;
    color: #fff;
}

.store-page .btn-primary:hover,
.product-page .btn-primary:hover,
.cart-page .btn-primary:hover,
.checkout-page .btn-primary:hover {
    background: linear-gradient(135deg, #b9863d, #6f4216);
    border-color: #6f4216;
    color: #fff;
}

.store-page .btn-outline-primary,
.product-page .btn-outline-primary,
.cart-page .btn-outline-primary,
.checkout-page .btn-outline-primary {
    color: #9c6826;
    border-color: #9c6826;
}

.store-page .btn-outline-primary:hover,
.product-page .btn-outline-primary:hover,
.cart-page .btn-outline-primary:hover,
.checkout-page .btn-outline-primary:hover {
    background: #9c6826;
    border-color: #9c6826;
    color: #fff;
}

.store-page .form-control:focus,
.store-page .form-select:focus,
.product-page .form-control:focus,
.checkout-page .form-control:focus,
.checkout-page .form-select:focus {
    border-color: #d7aa58;
    box-shadow: 0 0 0 0.2rem rgba(185, 134, 61, 0.16);
}

.store-title,
.product-title,
.cart-header h1,
.checkout-page h1.h3 {
    color: #2f291f;
}

.store-card {
    border-color: #e8dcc5;
    box-shadow: 0 12px 30px rgba(111, 66, 22, 0.08);
}

.store-card:hover {
    box-shadow: 0 18px 36px rgba(111, 66, 22, 0.14);
}

.store-card-image-link {
    background: linear-gradient(150deg, #fffaf0, #f3ead8);
}

.store-card-category {
    color: #8a7558;
}

.store-card-tag.is-promo {
    background: #9c6826;
}

.store-offer-timer {
    background: #fff7e8;
    border-color: #ead7b8;
    color: #7a4a19;
}

.store-offer-time {
    color: #6f4216;
}

.product-summary,
.product-main-image-wrap,
.product-description-card,
.checkout-page .card,
.cart-card {
    border-color: #e8dcc5 !important;
    box-shadow: 0 10px 26px rgba(111, 66, 22, 0.08) !important;
}

.product-chip-btn.is-selected {
    border-color: #9c6826;
    background: rgba(185, 134, 61, 0.16);
    color: #6f4216;
}

.product-back-link,
.cart-page a,
.checkout-page a {
    color: #9c6826;
}

.cart-card thead th {
    color: #6f4216;
    border-bottom-color: #e8dcc5;
}

.cart-card tbody tr:hover {
    background: #fffaf0;
}

.cart-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.cart-footer p span {
    color: #8a541d;
}

@media (max-width: 767px) {
    .cart-footer {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Contact page warm gold alignment */
.contact-page {
    background:
        radial-gradient(circle at 0% 0%, rgba(185, 134, 61, 0.12), transparent 36%),
        radial-gradient(circle at 100% 10%, rgba(242, 200, 121, 0.18), transparent 30%),
        #fbf8f1;
}

.contact-page .section-title h2 {
    color: #6f4216;
}

.contact-page .section-title h2::after {
    background: #b9863d;
}

.contact-card {
    border: 1px solid #e8dcc5 !important;
    box-shadow: 0 10px 26px rgba(111, 66, 22, 0.08) !important;
    border-radius: 16px;
}

.contact-page .text-primary {
    color: #9c6826 !important;
}

.contact-page .btn-primary {
    background: linear-gradient(135deg, #d7aa58, #9c6826);
    border-color: #9c6826;
}

.contact-page .btn-primary:hover {
    background: linear-gradient(135deg, #b9863d, #6f4216);
    border-color: #6f4216;
}

.contact-page .form-control:focus {
    border-color: #d7aa58;
    box-shadow: 0 0 0 0.2rem rgba(185, 134, 61, 0.16);
}

.contact-map-card {
    border: 1px solid #e8dcc5 !important;
}

/* About page warm gold alignment */
.about-page {
    background:
        radial-gradient(circle at 0% 0%, rgba(185, 134, 61, 0.12), transparent 36%),
        radial-gradient(circle at 100% 10%, rgba(242, 200, 121, 0.18), transparent 30%),
        #fbf8f1;
}

.about-page .text-primary {
    color: #9c6826 !important;
}

.about-page .intro-text {
    color: #756b5d;
}

.about-page .bg-light {
    background: #fffaf0 !important;
    border: 1px solid #e8dcc5;
}

.about-page .section-title h2 {
    color: #6f4216;
}

.about-page .section-title h2::after {
    background: #b9863d;
}

.about-page .team-card,
.about-page .shadow-sm,
.about-page .shadow {
    border: 1px solid #e8dcc5;
    box-shadow: 0 10px 26px rgba(111, 66, 22, 0.08) !important;
}

.about-main-image {
    min-height: 400px;
    object-fit: cover;
    object-position: center top;
    aspect-ratio: 4 / 5;
}

.about-gallery-image {
    aspect-ratio: 4 / 3;
    object-fit: cover;
    min-height: 250px;
}

@media (max-width: 767px) {
    section {
        padding: 48px 0;
    }

    .section-title {
        margin-bottom: 30px;
    }

    .about-page .display-5 {
        font-size: 2rem;
        line-height: 1.15;
    }

    .about-page .intro-text {
        font-size: 1rem;
        line-height: 1.65;
    }

    .about-main-image {
        aspect-ratio: 4 / 5;
        min-height: 0;
    }

    .about-gallery-image {
        min-height: 0;
    }

    .team-card {
        padding: 24px 18px;
    }
}

/* Minha conta login warm gold alignment */
.account-page {
    background:
        radial-gradient(circle at 0% 0%, rgba(185, 134, 61, 0.12), transparent 36%),
        radial-gradient(circle at 100% 10%, rgba(242, 200, 121, 0.18), transparent 30%),
        #fbf8f1;
}

.account-hero-card {
    background: linear-gradient(145deg, #9c6826, #6f4216);
    color: #fff;
    border: 1px solid #c89543 !important;
    box-shadow: 0 14px 30px rgba(111, 66, 22, 0.2) !important;
}

.account-kicker {
    letter-spacing: 0.08em;
    opacity: 0.85;
}

.account-hero-card p {
    opacity: 0.95;
}

.account-form-card {
    border: 1px solid #e8dcc5 !important;
    box-shadow: 0 10px 26px rgba(111, 66, 22, 0.08) !important;
    border-radius: 14px;
}

.account-page .btn-primary {
    background: linear-gradient(135deg, #d7aa58, #9c6826);
    border-color: #9c6826;
}

.account-page .btn-primary:hover {
    background: linear-gradient(135deg, #b9863d, #6f4216);
    border-color: #6f4216;
}

.account-page .form-control:focus {
    border-color: #d7aa58;
    box-shadow: 0 0 0 0.2rem rgba(185, 134, 61, 0.16);
}

/* Subscription pages */
.subscription-page {
    padding: 92px 0;
    background:
        radial-gradient(circle at 0% 0%, rgba(185, 134, 61, 0.12), transparent 34%),
        radial-gradient(circle at 100% 8%, rgba(242, 200, 121, 0.18), transparent 28%),
        linear-gradient(180deg, #fff 0%, #fffaf0 100%);
}

.subscription-heading {
    max-width: 760px;
    margin: 0 auto 42px;
}

.subscription-kicker {
    color: #9c6826;
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.subscription-heading h1 {
    color: #2f291f;
    font-size: 2.6rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.subscription-heading p {
    color: #756b5d;
    font-size: 1.05rem;
    margin: 0;
}

.subscription-plan-card,
.subscription-summary-card,
.subscription-form-card {
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid #e8dcc5;
    border-radius: 18px;
    box-shadow: 0 16px 38px rgba(111, 66, 22, 0.09);
}

.subscription-plan-card {
    overflow: hidden;
    transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}

.subscription-plan-card:hover {
    border-color: #d7aa58;
    box-shadow: 0 22px 42px rgba(111, 66, 22, 0.14);
    transform: translateY(-6px);
}

.subscription-plan-card.is-featured {
    border-color: #b9863d;
}

.subscription-plan-card.is-featured::before {
    background: linear-gradient(90deg, #d7aa58, #6f4216);
    content: "";
    display: block;
    height: 4px;
}

.subscription-plan-body,
.subscription-summary-card,
.subscription-form-card {
    padding: 28px;
}

.subscription-plan-body h2,
.subscription-summary-card h1,
.subscription-form-card h2 {
    color: #2f291f;
    font-weight: 700;
}

.subscription-badge {
    background: linear-gradient(135deg, #d7aa58, #9c6826);
    border-radius: 999px;
    color: #fff;
    display: inline-flex;
    font-size: 0.74rem;
    font-weight: 700;
    line-height: 1;
    padding: 7px 10px;
}

.subscription-badge.small {
    font-size: 0.68rem;
    padding: 5px 8px;
}

.subscription-price-main {
    color: #1f1724;
    font-size: 2.25rem;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1;
    margin-top: 18px;
}

.subscription-price-note {
    color: #756b5d;
    margin: 8px 0 18px;
}

.subscription-price-options {
    display: grid;
    gap: 8px;
    margin: 4px 0 22px;
}

.subscription-mini-price {
    align-items: center;
    background: #fffaf0;
    border: 1px solid #e8dcc5;
    border-radius: 12px;
    display: grid;
    gap: 6px;
    grid-template-columns: 1fr auto auto;
    padding: 9px 10px;
}

.subscription-mini-price span {
    color: #756b5d;
    font-weight: 600;
}

.subscription-mini-price strong {
    color: #2f291f;
}

.subscription-mini-price small,
.subscription-saving {
    color: #0b8c5a;
    font-weight: 700;
}

.subscription-service-list {
    list-style: none;
    margin: 18px 0 26px;
    padding: 0;
}

.subscription-service-list li {
    color: #3a2937;
    font-size: 0.95rem;
}

.subscription-action {
    border-radius: 12px;
    padding: 12px 18px;
    text-align: center;
}

.subscription-form-card .form-control,
.subscription-form-card .form-select {
    border-color: #e8dcc5;
    border-radius: 10px;
    min-height: 44px;
}

.subscription-form-card .form-control:focus,
.subscription-form-card .form-select:focus {
    border-color: #d7aa58;
    box-shadow: 0 0 0 0.2rem rgba(185, 134, 61, 0.16);
}

.subscription-period-option {
    border: 1px solid #e8dcc5;
    border-radius: 14px;
    cursor: pointer;
    display: block;
    padding: 16px;
    position: relative;
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.subscription-period-option:hover,
.subscription-period-option:has(input:checked) {
    border-color: #b9863d;
    box-shadow: 0 10px 24px rgba(111, 66, 22, 0.12);
    transform: translateY(-2px);
}

.subscription-period-option input {
    margin-right: 8px;
}

.subscription-period-title {
    color: #2f291f;
    font-weight: 700;
}

.subscription-old-price {
    color: #9b8a72;
    font-size: 0.9rem;
    margin-top: 14px;
    text-decoration: line-through;
}

.subscription-option-price {
    color: #1f1724;
    font-size: 1.45rem;
    font-weight: 700;
    line-height: 1.1;
    margin-top: 10px;
}

.subscription-option-cycle,
.subscription-option-description {
    color: #806f59;
    font-size: 0.88rem;
    margin-top: 4px;
}

.subscription-saving {
    font-size: 0.88rem;
    margin-top: 8px;
}

.subscription-checkout-page .btn-outline-secondary {
    border-color: #d8c9af;
    color: #6f5d45;
}

.subscription-checkout-page .btn-outline-secondary:hover {
    background: #fff7e8;
    border-color: #9c6826;
    color: #6f4216;
}

@media (max-width: 767px) {
    .subscription-page {
        padding: 64px 0;
    }

    .subscription-heading h1 {
        font-size: 2rem;
    }

    .subscription-plan-body,
    .subscription-summary-card,
    .subscription-form-card {
        padding: 22px;
    }

    .subscription-mini-price {
        grid-template-columns: 1fr;
    }
}
