/* Bites of Beauty - Brand CSS */

/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 2rem;
    background-color: #C9A86C;
    color: #FFFFFF;
    font-family: 'Lato', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 0.5rem;
    text-decoration: none;
    transition: all 0.2s ease;
    border: 2px solid #C9A86C;
}

.btn-primary:hover {
    background-color: #B8975B;
    border-color: #B8975B;
    transform: translateY(-1px);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 2rem;
    background-color: transparent;
    color: #C9A86C;
    font-family: 'Lato', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 0.5rem;
    text-decoration: none;
    transition: all 0.2s ease;
    border: 2px solid #C9A86C;
}

.btn-secondary:hover {
    background-color: #C9A86C;
    color: #FFFFFF;
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 2rem;
    background-color: transparent;
    color: #FFFFFF;
    font-family: 'Lato', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 0.5rem;
    text-decoration: none;
    transition: all 0.2s ease;
    border: 2px solid #FFFFFF;
}

.btn-ghost:hover {
    background-color: #FFFFFF;
    color: #663130;
}

/* Star Rating */
.star-rating {
    color: #EAB308;
    font-size: 1.25rem;
    letter-spacing: 0.1em;
}

.star-rating::before {
    content: "\2605\2605\2605\2605\2605";
}

/* Check List */
.check-list {
    list-style: none;
    padding-left: 0;
}

.check-list li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 0.75rem;
}

.check-list li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    color: #22C55E;
    font-weight: bold;
}

/* Cross List */
.cross-list {
    list-style: none;
    padding-left: 0;
}

.cross-list li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 0.75rem;
    color: #8B7355;
}

.cross-list li::before {
    content: "\2717";
    position: absolute;
    left: 0;
    color: #9CA3AF;
    font-weight: bold;
}

/* Form Input */
.form-input {
    width: 100%;
    padding: 0.875rem 1rem;
    background: #FFFFFF;
    border: 1px solid #E8DDD4;
    border-radius: 0.5rem;
    color: #663130;
    font-size: 1rem;
    font-family: 'Lato', sans-serif;
    transition: all 0.2s ease;
}

.form-input:focus {
    outline: none;
    border-color: #C9A86C;
    box-shadow: 0 0 0 3px rgba(201, 168, 108, 0.15);
}

.form-input::placeholder {
    color: #8B7355;
}

/* Section Label */
.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #A27474;
    margin-bottom: 1rem;
}

/* Card */
.card {
    background: #FFFFFF;
    border: 1px solid #E8DDD4;
    border-radius: 0.75rem;
    padding: 1.5rem;
}

/* Section Padding */
.section-padding {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

@media (min-width: 768px) {
    .section-padding {
        padding-top: 6rem;
        padding-bottom: 6rem;
    }
}

/* FAQ Accordion */
details {
    border-bottom: 1px solid #E8DDD4;
}

details summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 0;
    cursor: pointer;
    list-style: none;
    font-family: 'Lato', sans-serif;
    font-weight: 600;
    font-size: 1.125rem;
    color: #663130;
}

details summary::-webkit-details-marker {
    display: none;
}

details summary::after {
    content: "\25BE";
    font-size: 1rem;
    color: #A27474;
    transition: transform 0.2s ease;
}

details[open] summary::after {
    transform: rotate(180deg);
}

details .faq-answer {
    padding-bottom: 1.25rem;
    color: #8B7355;
    line-height: 1.7;
}

/* Service Card */
.service-card {
    background: #FFFFFF;
    border: 1px solid #E8DDD4;
    border-radius: 0.75rem;
    padding: 2rem;
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: #C9A86C;
    box-shadow: 0 10px 40px rgba(162, 116, 116, 0.1);
    transform: translateY(-4px);
}

/* Testimonial Card */
.testimonial-card {
    background: #FFFFFF;
    border: 1px solid #E8DDD4;
    border-radius: 0.75rem;
    padding: 2rem;
}

/* Trust Badge */
.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: #FFFFFF;
    border: 1px solid #E8DDD4;
    border-radius: 2rem;
    font-size: 0.875rem;
    color: #663130;
}

/* Process Step */
.process-step {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.process-step-number {
    flex-shrink: 0;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #C9A86C;
    color: #FFFFFF;
    font-family: 'Cormorant', serif;
    font-size: 1.25rem;
    font-weight: 700;
    border-radius: 50%;
}

/* Sticky Mobile CTA */
.sticky-mobile-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    background: #FFFFFF;
    border-top: 1px solid #E8DDD4;
    z-index: 40;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.sticky-mobile-cta.visible {
    transform: translateY(0);
}

/* Breadcrumb */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #8B7355;
}

.breadcrumb a {
    color: #8B7355;
    text-decoration: none;
    transition: color 0.2s ease;
}

.breadcrumb a:hover {
    color: #A27474;
}

.breadcrumb-sep {
    color: #E8DDD4;
}

/* Guarantee Box */
.guarantee-box {
    background: linear-gradient(135deg, #F8F3F0 0%, #FFFAF8 100%);
    border: 2px solid #C9A86C;
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
}

/* Price Tag */
.price-tag {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: #C9A86C;
    color: #FFFFFF;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 0.25rem;
}

/* Results Timeline */
.timeline-item {
    position: relative;
    padding-left: 2rem;
    padding-bottom: 2rem;
}

.timeline-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 0.75rem;
    height: 0.75rem;
    background: #C9A86C;
    border-radius: 50%;
}

.timeline-item::after {
    content: "";
    position: absolute;
    left: 0.3125rem;
    top: 1.5rem;
    width: 2px;
    height: calc(100% - 1rem);
    background: #E8DDD4;
}

.timeline-item:last-child::after {
    display: none;
}

/* Image with overlay gradient */
.image-overlay {
    position: relative;
}

.image-overlay::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(61, 38, 38, 0.4) 0%, transparent 50%);
    border-radius: inherit;
}
