/* ============================================================
   TECHHOUSE – CUSTOM STYLES
   Primary Pink: #E31E7C
   Dark Navy: #1A1C1E
   Light BG: #F9FAFB
   Body Text: #4B5563
   Headings: #111827
============================================================ */

/* ---- Root Variables ---- */
:root {
    --pink: #e31e7c;
    --pink-dark: #c01669;
    --pink-light: #fdf0f6;
    --navy: #1a1c1e;
    --navy-2: #212529;
    --light-bg: #f9fafb;
    --text-dark: #111827;
    --text-body: #6b7280;
    --text-muted: #9ca3af;
    --border: #e5e7eb;
    --white: #ffffff;
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.12);
    --radius: 14px;
    --radius-lg: 20px;
    --radius-pill: 10px;

    --rp-transition: 0.3s ease;
}

/* ---- Base ---- */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Plus Jakarta Sans", sans-serif;
    color: var(--text-body);
    background: var(--white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
}

/* ---- Top Bar ---- */
.top-bar {
    background: var(--navy);
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.8rem;
    padding: 7px 0;
}

.top-bar a {
    color: var(--pink);
    transition: opacity 0.2s;
}

.top-bar a:hover {
    opacity: 0.8;
}

/* ============================================================
   NAVBAR
============================================================ */
#mainNav {
    background: var(--white);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    padding: 0.1rem 0;
    transition: all 0.3s ease;
    z-index: 1050;
}

#mainNav.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Logo */
.logo-box {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 42px;
    height: 42px;
    background: var(--navy);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pink);
    font-size: 1.2rem;
}

.logo-text {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1;
}

.logo-accent {
    color: var(--pink);
}

.logo-tagline {
    font-size: 0.65rem;
    color: var(--text-muted);
    font-weight: 400;
    letter-spacing: 0.5px;
    margin-top: 2px;
}

/* Nav Links */
.navbar-nav .nav-link {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-dark) !important;
    padding: 0.5rem 0.85rem;
    position: relative;
    transition: color 0.2s;
    margin: 0 5px;
}

.navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--pink);
    border-radius: 2px;
    transition: width 0.25s ease;
}

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

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 70%;
}

/* Icon Buttons */
.icon-btn {
    background: none;
    border: none;
    border-radius: 8px;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.95rem;
}

.icon-btn:hover {
    border-color: var(--pink);
    color: var(--pink);
    background: var(--pink-light);
}

.cart-badge {
    position: absolute;
    top: -6px;
    right: -6px;
    background: var(--pink);
    color: white;
    font-size: 0.65rem;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}
.wishlist-badge {
    position: absolute;
    top: -6px;
    right: -6px;
    background: var(--pink);
    color: white;
    font-size: 0.65rem;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.search-bar-wrap {
    padding: 0.5rem 1rem;
    border-top: 1px solid var(--border);
}

.search-bar-wrap .form-control {
    border-color: var(--border);
    border-radius: var(--radius-pill) 0 0 var(--radius-pill);
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
}

.search-bar-wrap .btn-primary {
    background: var(--pink);
    border-color: var(--pink);
    border-radius: 0 var(--radius-pill) var(--radius-pill) 0;
}

/* ============================================================
   HERO SECTION
============================================================ */
#hero {
    overflow: hidden;
}

.hero-slide {
    min-height: 520px;
    display: flex;
    align-items: center;
    padding: 60px 0 80px;
    position: relative;
    overflow: hidden;
}

.slide-1 {
    background: linear-gradient(135deg, #fff5fa 0%, #fde8f3 30%, #f8f9ff 100%);
}

.slide-2 {
    background: linear-gradient(135deg, #fff8f0 0%, #ffeee0 30%, #fff5fa 100%);
}

.slide-3 {
    background: linear-gradient(135deg, #f0fff4 0%, #e0f5e9 30%, #f5faff 100%);
}

.min-vh-hero {
    min-height: 440px;
}

.hero-content {
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    background: var(--pink-light);
    color: var(--pink);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 4px 14px;
    border-radius: var(--radius-pill);
    border: 1.5px solid rgba(227, 30, 124, 0.15);
    margin-bottom: 1rem;
}

.hero-title {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.hero-sub {
    font-size: 1.25rem;
    color: var(--text-body);
    line-height: 1.7;
    max-width: 520px;
}

.text-pink {
    color: var(--pink) !important;
}

/* Hero Phone Visual */
.hero-img-col {
    position: relative;
}

.hero-phone-img {
    width: 220px;
    height: 220px;
    margin: 0 auto;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.phone-glow {
    position: absolute;
    inset: -20px;
    background: radial-gradient(
        circle,
        rgba(227, 30, 124, 0.15) 0%,
        transparent 70%
    );
    border-radius: 50%;
    animation: pulse-glow 3s ease-in-out infinite;
}

.pink-glow {
    background: radial-gradient(
        circle,
        rgba(227, 30, 124, 0.2) 0%,
        transparent 70%
    );
}

.green-glow {
    background: radial-gradient(
        circle,
        rgba(34, 197, 94, 0.15) 0%,
        transparent 70%
    );
}

@keyframes pulse-glow {
    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.7;
    }
}

.hero-phone-icon {
    font-size: 8rem;
    color: var(--pink);
    opacity: 0.85;
    position: relative;
    z-index: 2;
    animation: float-phone 4s ease-in-out infinite;
    filter: drop-shadow(0 8px 20px rgba(227, 30, 124, 0.3));
}

.pink-icon {
    color: var(--pink);
}

.green-icon {
    color: #22c55e;
}

@keyframes float-phone {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-14px);
    }
}

.shield-badge {
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 50px;
    height: 50px;
    background: var(--pink);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.4rem;
    box-shadow: 0 4px 14px rgba(227, 30, 124, 0.4);
    animation: bounce-badge 2s ease-in-out infinite;
    z-index: 3;
}

@keyframes bounce-badge {
    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

/* Carousel controls */
.carousel-control-prev,
.carousel-control-next {
    width: 48px;
    height: 48px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--white);
    border-radius: 50%;
    box-shadow: var(--shadow);
    opacity: 1;
}

.carousel-control-prev {
    left: 20px;
}

.carousel-control-next {
    right: 20px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: invert(1) sepia(1) saturate(10) hue-rotate(290deg);
    width: 18px;
    height: 18px;
}

.carousel-indicators {
    bottom: 20px;
}

.carousel-indicators [data-bs-slide-to] {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--text-muted);
    opacity: 1;
    border: none;
    transition: all 0.3s;
}

.carousel-indicators [data-bs-slide-to].active {
    background: var(--pink);
    width: 24px;
    border-radius: 4px;
}

/* ============================================================
   BUTTONS
============================================================ */
.btn-primary-pink {
    background: var(--pink);
    border-color: var(--pink);
    color: white;
    font-weight: 500;
    border-radius: var(--radius-pill);
    padding: 0.65rem 1.8rem;
    transition: all 0.25s ease;
    box-shadow: 0 4px 14px rgba(227, 30, 124, 0.3);
    font-size: 0.975rem;
}

.btn-primary-pink:hover {
    background: var(--pink-dark);
    border-color: var(--pink-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(227, 30, 124, 0.4);
}

.btn-outline-pink {
    background: transparent;
    border: 2px solid var(--pink);
    color: var(--pink);
    font-weight: 600;
    border-radius: var(--radius-pill);
    padding: 0.6rem 1.7rem;
    transition: all 0.25s ease;
    font-size: 0.975rem;
}

.btn-outline-pink:hover {
    background: var(--pink);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(227, 30, 124, 0.3);
}

.btn-whatsapp {
    background: #25d366;
    border: none;
    color: white;
    font-weight: 600;
    border-radius: var(--radius-pill);
    padding: 0.7rem 2rem;
    transition: all 0.25s ease;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp:hover {
    background: #1fb856;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
}

/* ============================================================
   SECTION UTILITY
============================================================ */
.section-pad {
    padding: 80px 0;
}

.section-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--pink);
    margin-bottom: 0.6rem;
}

.section-title {
    font-size: 35px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.section-sub {
    font-size: 1rem;
    color: var(--text-body);
    max-width: 560px;
    margin: 0 auto;
}

/* ============================================================
   SERVICES
============================================================ */
.service-card {
    background: var(--white);
    border: 1.5px solid #fff;
    border-radius: var(--radius);
    padding: 2.2rem 2.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.service-card:hover {
    border-color: var(--pink);
    box-shadow: 0 8px 30px rgba(227, 30, 124, 0.1);
    transform: translateY(-6px);
}

.service-icon {
    width: 96px;
    height: 96px;
    background: var(--pink-light);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pink);
    font-size: 2rem;
    margin: 0 auto 1rem;
    transition: all 0.3s;
}

.service-icon i {
    display: inline-block;
    animation: smoothFloat 2.5s ease-in-out infinite;
}

@keyframes smoothFloat {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }

    100% {
        transform: translateY(0);
    }
}

.service-card:hover .service-icon {
    background: var(--pink);
    color: white;
}

.service-name {
    font-weight: 700;
    color: var(--text-dark);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    margin-top: 1rem;
}

.service-desc {
    font-size: 1.1rem;
    color: var(--text-body);
    line-height: 1.5;
    margin-bottom: 0.8rem;
}

.service-link {
    font-size: 1rem;
    font-weight: 600;
    color: var(--pink);
    transition: gap 0.2s;
}

.service-link:hover {
    color: var(--pink-dark);
}

/* ============================================================
   PHONE CARDS
============================================================ */
.phone-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.phone-card:hover {
    border-color: var(--pink);
    box-shadow: 0 10px 35px rgba(227, 30, 124, 0.12);
    transform: translateY(-6px);
}

.phone-card-img-wrap {
    position: relative;
    padding: 2rem 1rem;
    text-align: center;
    min-height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.phone-placeholder {
    font-size: 4rem;
    color: var(--text-dark);
    opacity: 0.5;
}

.phone-placeholder.samsung {
    color: #1428a0;
    opacity: 0.6;
}

.phone-placeholder.google {
    color: #4285f4;
    opacity: 0.6;
}

.phone-placeholder.ipad {
    color: var(--text-dark);
    opacity: 0.5;
}

.badge-new,
.badge-sale {
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: var(--radius-pill);
    letter-spacing: 0.5px;
    z-index: 99;
}

.badge-new {
    background: var(--pink);
    color: white;
}

.badge-sale {
    background: #f59e0b;
    color: white;
}

.phone-card-body {
    padding: 1rem 1.1rem 1.2rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.phone-name {
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 0.15rem;
}

.color-dot {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 1px solid #383838;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-ctm {
    padding: 0.4rem 1.2rem !important;
}

.color-dot:hover {
    transform: scale(1.25);
    border-color: var(--pink);
}

.phone-price {
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--pink);
}

.btn-cart {
    background: var(--pink);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 0.78rem;
    font-weight: 600;
    padding: 0.4rem 0.9rem;
    transition: all 0.2s;
}

.btn-cart:hover {
    background: var(--pink-dark);
    color: white;
    transform: scale(1.05);
}

/* ============================================================
   REPAIRS
============================================================ */
.repair-tab {
    background: var(--white);
    border: 2px solid var(--border);
    border-radius: var(--radius-pill);
    color: var(--text-body);
    font-weight: 500;
    font-size: 0.88rem;
    padding: 0.45rem 1.3rem;
    transition: all 0.25s;
}

.repair-tab.active,
.repair-tab:hover {
    background: var(--pink);
    border-color: var(--pink);
    color: white;
    box-shadow: 0 4px 14px rgba(227, 30, 124, 0.25);
}

.repair-card {
    background: var(--white);
    border: 1.5px solid #fff;
    border-radius: var(--radius-lg);
    padding: 1.8rem 1.3rem;
    transition: all 0.3s ease;
}

.repair-card:hover {
    border-color: var(--pink);
    box-shadow: 0 8px 28px rgba(227, 30, 124, 0.1);
    transform: translateY(-5px);
}

.repair-icon {
    width: 60px;
    height: 60px;
    background: var(--pink-light);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pink);
    font-size: 1.6rem;
    margin: 0 auto 1rem;
    transition: all 0.3s;
}

.repair-card:hover .repair-icon {
    background: var(--pink);
    color: white;
}

.repair-name {
    font-weight: 700;
    color: var(--text-dark);
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.repair-price {
    font-weight: 700;
    color: var(--pink);
    font-size: 1rem;
    margin-bottom: 0.8rem;
}

/* ============================================================
   WHY SECTION
============================================================ */
.why-section {
    background: var(--white);
}

.why-card {
    padding: 2rem 1.5rem;
    border-radius: var(--radius);
    transition: all 0.3s;
}

.why-card:hover {
    background: var(--pink-light);
    transform: translateY(-5px);
}

.why-icon {
    width: 64px;
    height: 64px;
    background: var(--pink-light);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pink);
    font-size: 1.7rem;
    margin: 0 auto 1rem;
    transition: all 0.3s;
}

.why-card:hover .why-icon {
    background: var(--pink);
    color: white;
}

.why-title {
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

/* ============================================================
   TESTIMONIALS
============================================================ */
.testimonial-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    padding: 1.8rem;
    height: 100%;
    transition: all 0.3s;
}

.testimonial-card:hover {
    border-color: var(--pink);
    box-shadow: 0 8px 28px rgba(227, 30, 124, 0.08);
}

.stars {
    color: #f59e0b;
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: 0.9rem;
    color: var(--text-body);
    font-style: italic;
    line-height: 1.7;
}

.avatar-circle {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: var(--pink);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
}

.testimonial-indicators {
    position: static;
    margin-top: 2rem;
}

.testimonial-indicators [data-bs-slide-to] {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border);
    opacity: 1;
}

.testimonial-indicators [data-bs-slide-to].active {
    background: var(--pink);
    width: 24px;
    border-radius: 4px;
}

/* ============================================================
   FAQ
============================================================ */
.faq-item {
    border: 1.5px solid var(--border) !important;
    border-radius: var(--radius) !important;
    margin-bottom: 0.8rem;
    overflow: hidden;
    transition: border-color 0.2s;
}

/* Restore bootstrap's stripped border-top on all accordion items */
.faq-item + .faq-item {
    border-top: 1.5px solid var(--border) !important;
}

.faq-item:hover {
    border-color: var(--pink);
}

.faq-item .accordion-button {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-dark);
    background: var(--white);
    padding: 1.1rem 1.3rem;
    box-shadow: none !important;
}

.faq-item .accordion-button:not(.collapsed) {
    color: var(--pink);
    background: var(--pink-light);
}

.faq-item .accordion-button::after {
    filter: invert(0);
}

.faq-item .accordion-button:not(.collapsed)::after {
    filter: invert(1) sepia(1) saturate(5) hue-rotate(290deg);
}

.faq-item .accordion-body {
    font-size: 0.9rem;
    line-height: 1.7;
    padding: 0 1.3rem 1.2rem;
}

/* ============================================================
   NEWSLETTER
============================================================ */
.newsletter-section {
    background: var(--navy);
    padding: 70px 0;
}

.newsletter-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.newsletter-sub {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.95rem;
}

.newsletter-form {
    display: flex;
    background: rgba(255, 255, 255, 0.07);
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-pill);
    padding: 6px;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-input {
    flex: 1;
    background: transparent;
    border: none;
    color: white;
    padding: 0.75rem 1.4rem;
    font-size: 0.95rem;
    outline: none;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.newsletter-btn {
    background: var(--pink);
    color: white;
    border: none;
    border-radius: var(--radius-pill);
    padding: 0.75rem 1.6rem;
    font-weight: 600;
    transition: all 0.3s;
}

.newsletter-btn:hover {
    background: var(--pink-dark);
}

/* ============================================================
   FOOTER
============================================================ */
.main-footer {
    background: var(--navy);
    color: rgba(255, 255, 255, 0.7);
    padding: 60px 0 0;
}

.footer-heading {
    color: var(--white);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 1.2rem;
}

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

.footer-list li {
    margin-bottom: 0.6rem;
}

.footer-list a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.88rem;
    transition: color 0.2s;
}

.footer-list a:hover {
    color: var(--pink);
}

.footer-links-row {
    padding-bottom: 3rem;
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.08);
}

.footer-bottom {
    padding: 1.5rem 0;
}

.footer-logo {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--white);
}

.footer-logo i {
    color: var(--pink);
}

.payment-badge {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.76rem;
    font-weight: 600;
    padding: 5px 14px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.social-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    transition: all 0.25s;
}

.social-btn:hover {
    background: var(--pink);
    color: white;
    transform: translateY(-3px);
}

.footer-copy {
    padding: 1rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    margin-top: 0.5rem;
}

/* ============================================================
   WHATSAPP FLOAT
============================================================ */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: all 0.3s;
    animation: float-up 3s ease-in-out infinite;
}

.whatsapp-float:hover {
    background: #1fb856;
    color: white;
    transform: scale(1.1);
}

@keyframes float-up {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

/* ============================================================
   BACK TO TOP
============================================================ */
.back-to-top {
    position: fixed;
    bottom: 90px;
    right: 24px;
    width: 42px;
    height: 42px;
    background: var(--pink);
    color: white;
    border: none;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    cursor: pointer;
    z-index: 999;
    box-shadow: 0 4px 14px rgba(227, 30, 124, 0.3);
    transition: all 0.3s;
}

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

.back-to-top.show {
    display: flex;
}

/* ============================================================
   ANIMATIONS
============================================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

.animate-fadeup {
    animation: fadeInUp 0.6s ease both;
}

/* ============================================================
   RESPONSIVE TWEAKS
============================================================ */
@media (max-width: 991.98px) {
    .hero-img-col {
        margin-top: 2rem;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-phone-img {
        width: 160px;
        height: 160px;
    }

    .hero-phone-icon {
        font-size: 6rem;
    }
}

@media (max-width: 767.98px) {
    .section-pad {
        padding: 56px 0;
    }

    .hero-slide {
        padding: 40px 0 60px;
    }

    .service-card {
        padding: 1.2rem 0.9rem;
    }

    .service-icon {
        width: 44px;
        height: 44px;
        font-size: 1.1rem;
    }

    .repair-card {
        padding: 1.4rem 1rem;
    }

    /* .phone-card-img-wrap {
    min-height: 130px;
  } */

    .phone-placeholder {
        font-size: 3rem;
    }

    .newsletter-title {
        font-size: 1.6rem;
    }

    .newsletter-form {
        flex-direction: column;
        border-radius: var(--radius);
    }

    .newsletter-btn {
        width: 100%;
        margin-top: 5px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 575.98px) {
    .hero-img-col {
        display: none;
    }

    .hero-title {
        font-size: 1.6rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .logo-text {
        font-size: 1.1rem;
    }

    .logo-icon {
        width: 36px;
        height: 36px;
    }
}

/* ============================================================
   REAL IMAGES (downloaded locally)
============================================================ */

/* Navbar Logo */
.logo-img {
    height: 70px;
    width: auto;
    display: block;
    object-fit: contain;
}

/* Hero real images */
.hero-real-img {
    width: 100%;
    max-width: 500px;
    animation: float-phone 4s ease-in-out infinite;
    background: radial-gradient(
        circle,
        rgba(192, 22, 105, 0.68) 0%,
        rgba(192, 22, 105, 0) 60%
    );
}

@media (max-width: 991.98px) {
    .hero-real-img {
        max-width: 340px;
        height: 260px;
    }
}

@media (max-width: 575.98px) {
    .hero-real-img {
        display: none;
    }
}

/* Phone card real product images */
.phone-real-img {
    width: 94%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.phone-card:hover .phone-real-img {
    transform: scale(1.06);
}

/* Remove the old bg from phone-card-img-wrap when real img present */
/* .phone-card-img-wrap:has(.phone-real-img) {
    padding: 0;
    overflow: hidden;
    min-height: 180px;
} */
/* .rp-device-icon img {
    width: 250px;
} */
.phone-real-img1 {
    width: 70%;
    object-fit: cover;
    display: block;
    max-height: 393px !important;
    transition: transform 0.4s ease;
}
/* .col-6.col-md-3.m {
    width: 25%;
} */
.phone-card:hover .phone-real-img1 {
    transform: scale(1.06);
}

/* Remove the old bg from phone-card-img-wrap when real img present */
.phone-card-img-wrap:has(.phone-real-img1) {
    padding: 0;
    overflow: hidden;
    min-height: 180px;
}

/* Footer logo image */
.footer-logo-img {
    height: 75px;
    width: 199px;
    object-fit: contain;
    display: block;
    border-radius: 8px;
    /* padding: 4px 10px; */
}
/* .col-6.col-md-3 {
    width: 20%;
} */
/* ============================================================
   REPAIRS PAGE — repairs.html
============================================================ */

/* ---- Hero ---- */
.rp-hero {
    position: relative;
    background: linear-gradient(135deg, #1a1c1e 0%, #2a1520 40%, #1e0a2e 100%);
    padding: 90px 0 100px;
    overflow: hidden;
    text-align: center;
}

.rp-hero-deco {
    position: absolute;
    border-radius: 50%;
    opacity: 0.08;
    background: var(--pink);
    pointer-events: none;
}

.rp-deco-1 {
    width: 420px;
    height: 420px;
    top: -140px;
    left: -120px;
}

.rp-deco-2 {
    width: 280px;
    height: 280px;
    bottom: -80px;
    right: -60px;
    background: #f5a623;
}

.rp-deco-3 {
    width: 180px;
    height: 180px;
    top: 40%;
    left: 55%;
    background: var(--pink);
    opacity: 0.06;
}

.rp-hero-inner {
    position: relative;
    z-index: 2;
}

.rp-hero-label {
    display: inline-block;
    background: rgba(227, 30, 124, 0.15);
    color: var(--pink);
    border: 1px solid rgba(227, 30, 124, 0.3);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 1.2rem;
}

.rp-hero-title {
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 1.1rem;
}

.rp-hero-sub {
    font-size: 1.1rem;
    color: rgba(80, 80, 80, 0.7);
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.75;
}

.rp-hero-btn-primary {
    display: inline-flex;
    align-items: center;
    background: var(--pink);
    color: #fff;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.75rem 2rem;
    border-radius: 10px;
    transition: all 0.25s ease;
    box-shadow: 0 6px 20px rgba(227, 30, 124, 0.4);
    text-decoration: none;
}

.rp-hero-btn-primary:hover {
    background: var(--pink-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(227, 30, 124, 0.5);
}

.rp-hero-btn-outline {
    display: inline-flex;
    align-items: center;
    background: transparent;
    color: #fff;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.72rem 2rem;
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.35);
    transition: all 0.25s ease;
    text-decoration: none;
}

.rp-hero-btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.7);
    color: #fff;
    transform: translateY(-2px);
}

/* ---- Device Selector ---- */
.rp-device-section {
    padding: 70px 0;
    background: var(--white);
}

.rp-device-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: var(--white);
    border: 2px solid #fff;
    border-radius: var(--radius-lg);
    padding: 1rem 1rem 1.2rem 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    color: var(--text-body);
    gap: 0.5rem;
}

.rp-device-card:hover,
.rp-device-card.active-device {
    border-color: var(--pink);
    box-shadow: 0 8px 30px rgba(227, 30, 124, 0.12);
    transform: translateY(-5px);
    color: var(--text-dark);
}

.rp-device-card1 {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: var(--white);
    border: 2px solid #fff;
    border-radius: var(--radius-lg);
    padding: 2rem 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    color: var(--text-body);
    gap: 0.5rem;
}

.rp-device-card1:hover,
.rp-device-card1.active-device {
    border-color: var(--pink);
    box-shadow: 0 8px 30px rgba(227, 30, 124, 0.12);
    transform: translateY(-5px);
    color: var(--text-dark);
}

.rp-device-icon {
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--pink);
    transition: all 0.3s;
    margin-bottom: 0.3rem;
}
.br3-addon-card {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 16px;
    padding: 18px 20px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
}
.rp-device-name {
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--text-dark);
}

.rp-device-count {
    font-size: 0.8rem;
    color: var(--pink);
    font-weight: 600;
}

/* ---- Service Cards ---- */
.rp-service-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.rp-service-card:hover {
    border-color: var(--pink);
    box-shadow: 0 10px 36px rgba(227, 30, 124, 0.12);
    transform: translateY(-6px);
}

.rp-service-icon-wrap {
    background: linear-gradient(135deg, var(--pink-light) 0%, #fce8f3 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.6rem;
    color: var(--pink);
    padding: 2rem;
    transition: all 0.3s;
}

.rp-service-card:hover .rp-service-icon-wrap {
    background: linear-gradient(135deg, var(--pink) 0%, var(--pink-dark) 100%);
    color: #fff;
}

.rp-service-body {
    padding: 1.6rem 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.rp-service-title {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 0.6rem;
}

.rp-service-desc {
    font-size: 0.92rem;
    color: var(--text-body);
    line-height: 1.65;
    margin-bottom: 1rem;
}

.rp-service-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.4rem;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.rp-service-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.88rem;
    color: var(--text-body);
}

.rp-service-list li i {
    color: var(--pink);
    font-size: 0.8rem;
    flex-shrink: 0;
}

.rp-service-btn {
    display: inline-flex;
    align-items: center;
    margin-top: auto;
    align-self: flex-start;
    background: var(--pink-light);
    color: var(--pink);
    font-weight: 600;
    font-size: 0.88rem;
    padding: 0.5rem 1.3rem;
    border-radius: 50px;
    transition: all 0.25s ease;
    text-decoration: none;
}

.rp-service-btn:hover {
    background: var(--pink);
    color: #fff;
    transform: translateX(3px);
}

/* ---- Reasons Grid ---- */
.rp-reasons-section {
    padding: 70px 0;
    background: var(--light-bg);
}

.rp-reason-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    padding: 1.8rem 1rem;
    transition: all 0.3s ease;
}

.rp-reason-card:hover {
    border-color: var(--pink);
    box-shadow: 0 6px 24px rgba(227, 30, 124, 0.1);
    transform: translateY(-5px);
}

.rp-reason-icon {
    width: 56px;
    height: 56px;
    background: var(--pink-light);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pink);
    font-size: 1.5rem;
    margin: 0 auto 1rem;
    transition: all 0.3s;
}

.rp-reason-card:hover .rp-reason-icon {
    background: var(--pink);
    color: #fff;
}

.rp-reason-title {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text-dark);
    margin-bottom: 0.4rem;
}

.rp-reason-text {
    font-size: 0.8rem;
    color: var(--text-body);
    margin: 0;
    line-height: 1.5;
}

/* ---- Book Repair CTA Banner ---- */
.rp-book-section {
    background: linear-gradient(135deg, #1a1c1e 0%, #2a1520 50%, #1a1c1e 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.rp-book-section::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(
        circle,
        rgba(227, 30, 124, 0.15) 0%,
        transparent 70%
    );
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.rp-book-title {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.8rem;
}

.rp-book-sub {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

.rp-book-btn-primary {
    display: inline-flex;
    align-items: center;
    background: #25d366;
    color: #fff;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    border: 1px;
    transition: all 0.25s ease;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
    text-decoration: none;
}

.rp-book-btn-primary:hover {
    background: #1fb856;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(37, 211, 102, 0.45);
}

.rp-book-btn-outline {
    display: inline-flex;
    align-items: center;
    background: transparent;
    color: #fff;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.72rem 2rem;
    border-radius: 50px;
    /* border: 1px solid rgba(255, 255, 255, 0.35); */
    transition: all 0.25s ease;
    text-decoration: none;
}

.rp-book-btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.7);
    color: #fff;
    transform: translateY(-2px);
}

/* ============================================================
   GOOGLE REPAIRS PAGE — google-repairs.html
============================================================ */

/* ---- Hero ---- */
.gr-hero {
    position: relative;
    background: #ece1f9;
    padding: 80px 0 90px;
    overflow: hidden;
}

.gr-hero-deco {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.gr-deco-1 {
    width: 480px;
    height: 480px;
    top: -160px;
    right: -100px;
    background: radial-gradient(
        circle,
        rgba(66, 133, 244, 0.18) 0%,
        transparent 70%
    );
}

.gr-deco-2 {
    width: 320px;
    height: 320px;
    bottom: -100px;
    left: -80px;
    background: radial-gradient(
        circle,
        rgba(52, 168, 83, 0.15) 0%,
        transparent 70%
    );
}

.gr-hero-content {
    position: relative;
    z-index: 2;
}

.gr-auth-badge {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(
        90deg,
        rgba(66, 133, 244, 0.2) 0%,
        rgba(52, 168, 83, 0.2) 100%
    );
    border: 1px solid rgba(66, 133, 244, 0.4);
    color: #8ab4f8;
    font-size: 0.82rem;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 1.2rem;
    letter-spacing: 0.3px;
}

.gr-hero-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.gr-hero-sub {
    font-size: 1.05rem;
    color: var(--text-body);
    max-width: 560px;
    line-height: 1.75;
    margin-bottom: 0;
}

/* Hero image */
.gr-hero-img-col {
    position: relative;
    z-index: 2;
    padding-top: 2rem;
}

.gr-hero-img-wrap {
    position: relative;
    display: inline-block;
}

.gr-hero-phone {
    max-width: 100%;
    border-radius: 24px;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 20px 50px rgba(66, 133, 244, 0.3));
    object-fit: cover;
}

.gr-hero-glow {
    position: absolute;
    inset: -30px;
    background: radial-gradient(
        circle,
        rgba(66, 133, 244, 0.95) 0%,
        transparent 35%
    );
    border-radius: 50%;
    animation: pulse-glow 3.5s ease-in-out infinite;
    z-index: 1;
}

/* ---- Intro split layout (Made by Google, fixed by us.) ---- */
.gr-intro-section {
    padding: 70px 0;
    background: var(--white);
}

.gr-intro-heading {
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    font-weight: 700;
    color: var(--pink);
    text-align: center;
    margin-bottom: 3rem;
    line-height: 1.25;
}

.gr-intro-feature {
    margin-bottom: 1.6rem;
}

.gr-intro-feature:last-child {
    margin-bottom: 0;
}

.gr-intro-feature-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.gr-intro-feature-text {
    font-size: 0.93rem;
    color: var(--text-body);
    line-height: 1.75;
    margin: 0;
}

.gr-intro-link {
    color: var(--pink);
    font-weight: 600;
    text-decoration: none;
}

.gr-intro-link:hover {
    text-decoration: underline;
    color: var(--pink-dark);
}

.gr-intro-img-wrap {
    display: inline-block;
    width: 340px;
    height: 340px;
    max-width: 100%;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.gr-intro-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

@media (max-width: 991px) {
    .gr-intro-img-wrap {
        width: 260px;
        height: 260px;
    }
}

/* ---- Model Selector ---- */
.gr-models-section {
    padding: 70px 0;
}

.gr-model-group-title {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1.5px solid var(--border);
}

.gr-model-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    padding: 1.4rem 1rem;
    cursor: pointer;
    transition: all 0.25s ease;
    text-decoration: none;
    color: var(--text-body);
    gap: 0.4rem;
    position: relative;
}

.gr-model-card:hover {
    border-color: #4285f4;
    box-shadow: 0 6px 24px rgba(66, 133, 244, 0.14);
    transform: translateY(-4px);
    color: var(--text-dark);
}

.gr-model-featured {
    border-color: rgba(66, 133, 244, 0.35);
    background: linear-gradient(135deg, #f8fbff 0%, #f0f7ff 100%);
}

.gr-model-featured:hover {
    border-color: #4285f4;
}

.gr-model-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #4285f4;
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 50px;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.gr-model-icon {
    font-size: 1.8rem;
    color: #4285f4;
    margin-bottom: 0.2rem;
}

.gr-model-name {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text-dark);
    line-height: 1.3;
}

.gr-model-tag {
    font-size: 0.78rem;
    color: var(--pink);
    font-weight: 600;
}

/* ---- Repair Cards ---- */
.gr-repair-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.gr-repair-card:hover {
    border-color: #4285f4;
    box-shadow: 0 10px 36px rgba(66, 133, 244, 0.12);
    transform: translateY(-6px);
}

.gr-repair-icon {
    background: linear-gradient(135deg, #f0f7ff 0%, #e8f4fd 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.6rem;
    color: #4285f4;
    padding: 2rem;
    transition: all 0.3s;
}

.gr-repair-card:hover .gr-repair-icon {
    background: linear-gradient(135deg, #4285f4 0%, #1a73e8 100%);
    color: #fff;
}

.gr-repair-body {
    padding: 1.6rem 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.gr-repair-title {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 0.6rem;
}

.gr-repair-desc {
    font-size: 0.92rem;
    color: var(--text-body);
    line-height: 1.65;
    margin-bottom: 1rem;
}

/* ── F ─────────────────────────────────────────────── */
.rp-breadcrumb {
    background: var(--light-bg);
    border-bottom: 1px solid var(--border);
    padding: 10px 0;
}

.rp-breadcrumb .breadcrumb {
    font-size: 0.82rem;
    color: var(--text-body);
    margin: 0;
}

.rp-breadcrumb .breadcrumb-item a {
    color: var(--pink);
    text-decoration: none;
    font-weight: 500;
}

.rp-breadcrumb .breadcrumb-item a:hover {
    text-decoration: underline;
}

.rp-breadcrumb .breadcrumb-item.active {
    color: var(--text-body);
}

.rp-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    color: #aaa;
}

/* ── Booking Progress Bar ───────────────────────────────────── */
.rp-progress-bar {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 14px 0;
}

.rp-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
}

.rp-step {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    color: #aaa;
    font-weight: 500;
    padding: 4px 0;
}

.rp-step-num {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #ddd;
    color: #999;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.78rem;
    font-weight: 700;
    flex-shrink: 0;
    transition: var(--rp-transition);
}

.rp-step.active .rp-step-num {
    background: var(--pink);
    color: #fff;
    box-shadow: 0 0 0 4px var(--pink-light);
}

.rp-step.active .rp-step-label {
    color: var(--pink);
    font-weight: 600;
}

.rp-step.done .rp-step-num {
    background: var(--text-body);
    color: #fff;
}

.rp-step.done .rp-step-label {
    color: var(--text-body);
}

.rp-step-connector {
    width: 32px;
    height: 2px;
    background: #ddd;
    margin: 0 6px;
    flex-shrink: 0;
}

.rp-step-connector.done {
    background: var(--text-body);
}

@media (max-width: 576px) {
    .rp-step-connector {
        width: 16px;
        margin: 0 3px;
    }

    .rp-step-label {
        display: none;
    }

    .rp-step-num {
        width: 30px;
        height: 30px;
        font-size: 0.85rem;
    }
}

/* ── Hero Section ───────────────────────────────────────────── */
.rp-hero {
    background: var(--white);
    padding: 56px 0 44px;
}

.rp-hero-inner {
    max-width: 760px;
    margin: 0 auto;
}

.rp-hero-title {
    font-size: clamp(1.75rem, 4vw, 2.6rem);
    font-weight: 700;
    color: var(--pink);
    line-height: 1.2;
    margin-bottom: 18px;
}

.rp-hero-desc {
    font-size: 0.97rem;
    color: var(--text-body);
    line-height: 1.7;
    margin-bottom: 0;
}

.rp-hero-desc-extended p {
    font-size: 0.93rem;
    color: var(--text-body);
    line-height: 1.7;
    margin-top: 12px;
}

.rp-read-more-btn {
    background: none;
    border: none;
    color: var(--pink);
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    padding: 6px 0;
    margin-top: 8px;
    text-decoration: underline;
    display: inline-block;
    transition: color var(--rp-transition);
}

.rp-read-more-btn:hover {
    color: var(--pink-dark);
}

/* Trustpilot inline badge */
.rp-trustpilot {
    margin-top: 16px;
}

.rp-trustpilot-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    border: 1.5px solid #00b67a;
    border-radius: 10px;
    padding: 8px 20px;
    color: #333;
    font-size: 0.88rem;
    transition: box-shadow var(--rp-transition);
}

.rp-trustpilot-link:hover {
    box-shadow: 0 4px 16px rgba(0, 182, 122, 0.2);
}

.rp-tp-stars {
    color: #00b67a;
    font-size: 1rem;
    letter-spacing: 1px;
}

/* ── Repair Tabs Section ────────────────────────────────────── */
.rp-tabs-section {
    padding: 60px 0;
    background: var(--light-bg);
}

/* Tab row */
.rp-tab-row {
    display: flex;
    align-items: stretch;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 32px;
}

.rp-tab {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 12px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 14px;
    cursor: pointer;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text-body);
    line-height: 1.3;
    text-align: center;
    min-width: 130px;
    transition: all var(--rp-transition);
    font-family: "Poppins", sans-serif;
}

.rp-tab:hover {
    border-color: var(--pink);
    color: var(--pink);
    box-shadow: 0 4px 16px rgba(233, 30, 140, 0.12);
    transform: translateY(-2px);
}

.rp-tab.active {
    border-color: var(--pink);
    background: var(--white);
    color: var(--pink);
    box-shadow: 0 4px 20px rgba(233, 30, 140, 0.18);
    position: relative;
}

.rp-tab.active::after {
    content: "";
    position: absolute;
    bottom: -11px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid var(--pink);
}

.rp-tab-icon {
    font-size: 1.6rem;
    line-height: 1;
}

@media (max-width: 576px) {
    .rp-tab {
        min-width: 80px;
        padding: 12px 10px;
        font-size: 0.75rem;
    }

    .rp-tab-icon {
        font-size: 1.3rem;
    }
}

/* ── Repair Detail Card ─────────────────────────────────────── */
.rp-detail-card {
    background: var(--white);
    border: 2px solid var(--pink);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    display: flex;
    gap: 0;
    overflow: hidden;
    transition: box-shadow var(--rp-transition);
}

.rp-detail-card:hover {
    box-shadow: 0 16px 48px rgba(233, 30, 140, 0.18);
}

/* Animate card on tab change */
.rp-card-enter {
    animation: rpCardFadeIn 0.35s ease forwards;
}

@keyframes rpCardFadeIn {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

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

/* Left column */
.rp-detail-left {
    flex: 0 0 300px;
    padding: 30px 32px;
    border-right: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    background: #fdf9fc;
}

.rp-device-icon {
    font-size: 3.5rem;
    color: var(--pink);
    margin-bottom: 4px;
    line-height: 1;
}

.rp-repair-name {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--pink);
    line-height: 1.35;
    margin: 0;
}

.rp-price {
    font-size: 1.9rem;
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: -0.5px;
}

/* Color / variant dropdown */
.rp-select {
    appearance: none;
    -webkit-appearance: none;
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 8px;
    padding: 8px 36px 8px 14px;
    font-size: 0.88rem;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    color: var(--text-body);
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23aaa' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    width: 100%;
    transition: border-color var(--rp-transition);
}

.rp-select:focus {
    outline: none;
    border-color: var(--pink);
}

/* Book button */
.rp-book-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--pink);
    color: #fff;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-size: 1rem;
    border-radius: 10px;
    padding: 13px 28px;
    text-decoration: none;
    border: 1px;
    text-align: center;
    transition:
        background var(--rp-transition),
        transform var(--rp-transition),
        box-shadow var(--rp-transition);
    box-shadow: 0 6px 20px rgba(233, 30, 140, 0.3);
}

.rp-book-btn:hover {
    background: var(--pink-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(233, 30, 140, 0.4);
}

/* Right column */
.rp-detail-right {
    flex: 1;
    padding: 74px 40px;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.rp-detail-heading {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.rp-detail-text {
    font-size: 0.91rem;
    color: var(--text-body);
    line-height: 1.7;
    margin: 0;
}

.rp-divider {
    border: none;
    border-top: 1px solid var(--border);
    margin: 6px 0;
}

.rp-detail-block {
    padding: 4px 0;
}

.rp-spec-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #0a0a0a;
    display: inline;
    margin-right: 8px;
}

.rp-spec-value {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-body);
    display: inline;
}

.rp-highlight {
    color: var(--pink) !important;
    font-weight: 600 !important;
}

.rp-spec-note {
    font-size: 0.82rem;
    color: #888;
    line-height: 1.6;
    margin: 0;
}

/* Responsive card stacking */
@media (max-width: 768px) {
    .rp-detail-card {
        flex-direction: column;
    }

    .rp-detail-left {
        flex: none;
        border-right: none;
        border-bottom: 1px solid var(--border);
        width: 100%;
        align-items: center;
        text-align: center;
        padding: 28px 24px;
    }

    .rp-book-btn {
        width: auto;
        padding: 12px 32px;
    }

    .rp-detail-right {
        padding: 24px;
    }
}

/* ── Trust Badges Section ───────────────────────────────────── */
.rp-trust-section {
    background: linear-gradient(135deg, #1a1c1e 0%, #2a1520 50%, #1a1c1e 100%);
    padding: 44px 0;
}

.rp-trust-row {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: wrap;
    gap: 32px 48px;
}

.rp-trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: #ccc;
    font-size: 0.8rem;
    font-weight: 500;
    text-align: center;
    line-height: 1.4;
    min-width: 80px;
}

.rp-trust-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(233, 30, 140, 0.15);
    border: 1.5px solid rgba(233, 30, 140, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--pink);
    transition:
        background var(--rp-transition),
        transform var(--rp-transition);
}

.rp-trust-item:hover .rp-trust-icon {
    background: rgba(233, 30, 140, 0.3);
    transform: translateY(-3px);
}

@media (max-width: 576px) {
    .rp-trust-row {
        gap: 20px 24px;
    }

    .rp-trust-item {
        min-width: 70px;
        font-size: 0.75rem;
    }

    .rp-trust-icon {
        width: 44px;
        height: 44px;
        font-size: 1.1rem;
    }
}

/* Two-card side-by-side layout */
.rp-cards-pair {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border: 2px solid var(--pink);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    background: var(--white);
}

/* ── Paired card ─────────────────────────────────────────────── */
.rp-pair-card {
    display: flex;
    flex-direction: column;
    position: relative;
}

/* Vertical divider between the two paired cards */
.rp-pair-card:first-child {
    border-right: 1px solid var(--border);
}

/* Top section of each paired card (icon + name + price + book btn) */
.rp-pair-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    padding: 36px 32px 28px;
    background: #fdf9fc;
    border-bottom: 1px solid var(--border);
}

.rp-pair-top .rp-device-icon {
    font-size: 3.2rem;
    margin-bottom: 4px;
}

.rp-pair-top .rp-repair-name {
    font-size: 1rem;
}

.rp-pair-top .rp-price {
    font-size: 1.85rem;
}

.rp-pair-top .rp-book-btn {
    width: auto;
    padding: 11px 28px;
    margin-top: 4px;
    border: 2px solid rgba(233, 30, 140, 0.3);
}

/* Bottom section of each paired card (description + warranty + time) */
.rp-pair-bottom {
    padding: 24px 28px;
    flex: 1;
}

/* Hover lift on each individual paired card */
.rp-pair-card:hover .rp-pair-top {
    background: var(--pink-light);
    transition: background var(--rp-transition);
}

/* ── Responsive: stack cards vertically on mobile ─────────────── */
@media (max-width: 768px) {
    .rp-cards-pair {
        grid-template-columns: 1fr;
    }

    .rp-pair-card:first-child {
        border-right: none;
        border-bottom: 2px solid var(--pink);
    }

    .rp-pair-top {
        padding: 28px 20px 20px;
    }

    .rp-pair-bottom {
        padding: 20px;
    }
}

/* ================================================================
   BOOK REPAIR -- FULL-SCREEN MODAL
   Matches br-backdrop / br-modal classes in HTML
   Uses existing theme variables
================================================================ */

.br-backdrop {
    position: fixed;
    inset: 0;
    background: var(--white);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transition:
        opacity 0.3s ease,
        visibility 0.3s ease;
}

.br-backdrop.br-open {
    opacity: 1;
    visibility: visible;
}

.br-modal {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    background: var(--white);
}

/* ── HEADER ── */
.br-header {
    padding: 24px 32px;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.br-header-eyebrow {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--pink);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

.br-header-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--navy);
    margin: 4px 0 0;
}

.br-close-btn {
    background: var(--rp-bg-light);
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--navy);
    cursor: pointer;
    transition: background 0.3s;
}

.br-close-btn:hover {
    background: var(--border);
}

/* ── PROGRESS ── */
.br-progress {
    padding: 20px 32px;
    background: var(--rp-bg-light);
    border-bottom: 1px solid var(--border);
}

.br-steps-track {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 600px;
    margin: 0 auto;
}

.br-step-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #999;
}

.br-step-bubble {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    transition: all 0.3s;
}

.br-step-lbl {
    font-size: 0.85rem;
    font-weight: 600;
}

.br-step-item.br-step-active {
    color: var(--pink);
}

.br-step-item.br-step-active .br-step-bubble {
    background: var(--pink);
    border-color: var(--pink);
    color: #fff;
    box-shadow: 0 0 0 4px var(--pink-light);
}

.br-step-item.br-step-done {
    color: var(--navy);
}

.br-step-item.br-step-done .br-step-bubble {
    background: var(--navy);
    border-color: var(--navy);
    color: #fff;
}

.br-step-connector {
    flex: 1;
    height: 2px;
    background: #ddd;
    margin: 0 16px;
}

.br-step-connector.br-conn-done {
    background: var(--navy);
}

/* ── BODY ── */
.br-body {
    flex: 1;
    overflow-y: auto;
    padding: 48px 32px;
}

.br-panel {
    display: none;
    max-width: 800px;
    margin: 0 auto;
}
div#brPanelStoreView {
    max-width: 1300px;
}
.br-panel.br-panel-active {
    display: block;
    animation: brFadeUp 0.4s ease forwards;
}
div#storeMap {
    height: 600px !important;
}
@keyframes brFadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

.br-panel-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 8px;
    text-align: center;
}

.br-panel-sub {
    color: #666;
    text-align: center;
    margin-bottom: 40px;
}

/* ── STORE CARDS ── */
.br-store-list {
    display: grid;
    gap: 16px;
}

.br-store-card {
    display: flex;
    align-items: center;
    padding: 20px;
    border: 1px solid var(--border);
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s;
}

.br-store-card:hover {
    border-color: var(--pink);
    background: var(--rp-bg-light);
}

.br-store-card.br-selected {
    border-color: var(--pink);
    background: var(--pink-light);
}

.br-store-icon-wrap {
    font-size: 1.5rem;
    color: var(--pink);
    margin-right: 20px;
}

.br-store-info {
    flex: 1;
}

.br-store-name {
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 4px;
}

.br-store-addr {
    font-size: 0.85rem;
    color: #666;
}

.br-store-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    color: #221520;
    background: #e6f7f2;
    padding: 2px 8px;
    border-radius: 4px;
    margin-top: 8px;
}

.br-store-radio {
    width: 20px;
    height: 20px;
    border: 1px solid #ddd;
    border-radius: 50%;
    position: relative;
}

.br-store-card.br-selected .br-store-radio {
    border-color: var(--pink);
}

.br-store-card.br-selected .br-store-radio::after {
    content: "";
    position: absolute;
    inset: 4px;
    background: var(--pink);
    border-radius: 50%;
}

/* ── DATE / TIME ── */
.br-date-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 12px;
    margin-bottom: 32px;
}

.br-date-card {
    border: 1.5px solid var(--border);
    border-radius: 12px;
    padding: 16px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
}

.br-date-card:hover {
    border-color: var(--pink);
}

.br-date-card.br-selected {
    background: var(--pink);
    border-color: var(--pink);
    color: #fff;
}

.br-date-day {
    font-size: 0.75rem;
    opacity: 0.8;
    margin-bottom: 4px;
}

.br-date-num {
    font-size: 1.25rem;
    font-weight: 800;
}

.br-date-mon {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.br-time-slots {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 12px;
}

.br-time-chip {
    padding: 12px;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    text-align: center;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.br-time-chip:hover:not(.br-unavailable) {
    border-color: var(--pink);
    color: var(--pink);
}

.br-time-chip.br-selected {
    background: var(--navy);
    border-color: var(--navy);
    color: #fff;
}

.br-time-chip.br-unavailable {
    opacity: 0.4;
    cursor: not-allowed;
    background: #eee;
}

/* ── CONFIRM ── */
.br-confirm-box {
    background: #fdfdfd;
    border: 1.5px solid var(--border);
    border-radius: 16px;
    padding: 32px;
    margin-bottom: 40px;
}

.br-summary-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.br-summary-item label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 4px;
}

.br-summary-item div {
    font-weight: 600;
    color: var(--navy);
}

.br-summary-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--pink);
}

.br-personal-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.br-form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.br-form-group.full {
    grid-column: span 2;
}

.br-form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--navy);
}

.br-form-control {
    padding: 14px 18px;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    font-size: 0.95rem;
}

.br-form-control:focus {
    outline: none;
    border-color: #d1abca;
    box-shadow: 0 0 0 3px var(--pink-light);
}

/* ── SUCCESS ── */
.br-success-wrap {
    text-align: center;
    padding: 40px 0;
}

.br-success-icon {
    width: 80px;
    height: 80px;
    background: #00b67a;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 24px;
}

.br-ref-box {
    background: var(--rp-bg-light);
    border-radius: 12px;
    padding: 16px;
    display: inline-block;
    margin: 24px 0;
}

.br-ref-num {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: 1px;
}

/* ── FOOTER ── */
.br-footer {
    padding: 24px 32px;
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.br-step-counter {
    font-size: 0.9rem;
    font-weight: 700;
    color: #999;
}

.br-btn-next,
.br-btn-back {
    padding: 14px 28px;
    border-radius: 10px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.br-btn-next {
    background: var(--pink);
    color: #fff;
    border: none;
}

.br-btn-next:hover {
    background: var(--pink-dark);
    transform: translateY(-2px);
}

.br-btn-back {
    background: #fff;
    border: 1.5px solid var(--border);
    color: var(--navy);
}

.br-btn-back:hover {
    background: #f8f8f8;
}

.br-btn-submit {
    background: #00b67a;
}

.br-btn-submit:hover {
    background: #009e69;
}

@media (max-width: 600px) {
    .br-header {
        padding: 16px 20px;
    }

    .br-footer {
        padding: 16px 20px;
        flex-direction: column-reverse;
        gap: 16px;
        align-items: stretch;
    }

    .br-step-counter {
        text-align: center;
    }

    .br-personal-form {
        grid-template-columns: 1fr;
    }

    .br-form-group.full {
        grid-column: span 1;
    }

    .br-summary-grid {
        grid-template-columns: 1fr;
    }

    .br-progress {
        padding: 12px 20px;
    }

    .br-step-lbl {
        display: none;
    }
}

:root {
    --primary-color: #e83e8c;
    --primary-hover: #d6327c;
    --background: #ffffff;
    --surface: #f8f9fa;
    --accent: #e9ecef;
    --foreground: #212529;
    --muted-foreground: #6c757d;
    --border: #dee2e6;
    --card-bg: #ffffff;
    --shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.1);
}

body {
    /* font-family:
        system-ui,
        -apple-system,
        "Segoe UI",
        Roboto,
        sans-serif; */
    color: var(--foreground);
}

.hero {
    position: relative;
    padding: 100px 0;
    background-color: #fff;
    /* or the light pink from the video */
    overflow: hidden;
    /* Prevents shapes from causing scrollbars */
}

.hero-shape-1,
.hero-shape-4 {
    position: absolute;
    width: 80px;
    height: 80px;
    background-color: #fce4ec;
    /* Light pink/mauve tone */
    border-radius: 15px;
    /* Smooth rounded corners */
    z-index: 0;
    opacity: 0.6;
}

/* Top Left Shape */
.hero-shape-1 {
    top: 15%;
    left: 10%;
    transform: rotate(-15deg);
}

/* Bottom Right Shape */
.hero-shape-4 {
    bottom: 20%;
    right: 12%;
    transform: rotate(15deg);
}

/* Simple floating animation to match the video feel */
@keyframes float {
    0% {
        transform: translateY(0px) rotate(-15deg);
    }

    50% {
        transform: translateY(-10px) rotate(-10deg);
    }

    100% {
        transform: translateY(0px) rotate(-15deg);
    }
}

.hero-shape-1 {
    animation: float 6s ease-in-out infinite;
}

.bg-accent {
    background-color: #fdecf5;
}

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

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

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

.text-primary {
    color: var(--primary-color) !important;
}

.text-foreground {
    color: var(--foreground);
}

.text-muted {
    color: var(--muted-foreground);
}

.border-custom {
    border-color: var(--border) !important;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    transition: all 0.2s;
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    border-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -5px rgba(232, 62, 140, 0.3);
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.btn-outline-primary {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.shadow-card {
    box-shadow: var(--shadow);
    transition:
        transform 0.3s,
        box-shadow 0.3s;
}

.shadow-card:hover {
    box-shadow: 0 20px 35px -12px rgba(232, 62, 140, 0.15);
}

.card-plan {
    border-radius: 1.5rem;
    border: 1px solid var(--border);
    overflow: hidden;
    background: var(--card-bg);
}

.floating-shape {
    position: absolute;
    opacity: 0.1;
    background-color: var(--primary-color);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    pointer-events: none;
    z-index: 0;
}

.accordion-button:not(.collapsed) {
    background-color: rgba(232, 62, 140, 0.05);
    color: var(--primary-color);
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(232, 62, 140, 0.2);
}

.accordion-item {
    border: 1px solid var(--border);
    border-radius: 1rem !important;
    overflow: hidden;
    margin-bottom: 0.75rem;
}

.footer-link {
    color: var(--muted-foreground);
    text-decoration: none;
    transition: color 0.2s;
    line-height: 2;
}

.footer-link:hover {
    color: var(--primary-color);
}

.payment-icon {
    font-size: 1.5rem;
    color: var(--muted-foreground);
    margin-right: 0.5rem;
}

.hero {
    position: relative;
    overflow: hidden;
    background-color: #fdecf5;
    padding: 6rem 0;
}

.hero-shape-1 {
    position: absolute;
    left: 8%;
    top: 15%;
    width: 6rem;
    height: 6rem;
    background-color: rgba(232, 62, 140, 0.1);
    border-radius: 1.5rem;
    transform: rotate(10deg);
}

.hero-shape-2 {
    position: absolute;
    right: 10%;
    top: 20%;
    width: 5rem;
    height: 5rem;
    background-color: rgba(232, 62, 140, 0.08);
    border-radius: 50%;
}

.hero-shape-3 {
    position: absolute;
    bottom: 20%;
    left: 15%;
    width: 4rem;
    height: 4rem;
    background-color: rgba(232, 62, 140, 0.06);
    border-radius: 1rem;
}

.hero-shape-4 {
    position: absolute;
    bottom: 25%;
    right: 12%;
    width: 5rem;
    height: 5rem;
    background-color: rgba(232, 62, 140, 0.1);
    border-radius: 1.5rem;
}

.hero-dot {
    position: absolute;
    width: 0.75rem;
    height: 0.75rem;
    background-color: rgba(232, 62, 140, 0.2);
    border-radius: 50%;
}
.display-5.fw-bold {
    font-size: calc(1.09rem + 2.1vw) !important;
}

body {
    font-family: "Plus Jakarta Sans", sans-serif !important;
}

/* Hero Section */
.about-hero {
    background: #f8d7e3;
    padding: 100px 0;
    text-align: center;
}

.about-hero h1 {
    font-weight: 700;
    font-size: 48px;
}

.about-hero p {
    margin: auto;
}

/* Section Spacing */
.section-padding {
    padding: 80px 0;
}

/* Icon Box */
.icon-box {
    text-align: center;
    padding: 30px;
}

.icon-box i {
    font-size: 40px;
    color: #e91e63;
}

.icon-box h5 {
    margin-top: 15px;
    font-weight: 600;
}

/* CTA Section */
.cta-section {
    background: #f8d7e3;
    padding: 70px 0;
    text-align: center;
}

.btn-pink {
    background: #e91e63;
    color: #fff;
    border: none;
}

.btn-pink:hover {
    background: #c2185b;
    color: #fff;
}

.image-shadow {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

body {
    font-family: "Plus Jakarta Sans", sans-serif;
}

/* Page Title */
.page-title {
    background-color: #f8d7e3;
    text-align: center;
    padding: 80px 0 40px;
    padding-bottom: 75px;
}

.page-title h1 {
    color: #e91e63;
    font-weight: 700;
}

/* FAQ Section */
.faq-section {
    padding: 40px 0 80px;
}

.faq-question {
    font-weight: 600;
    margin-top: 25px;
}

.faq-answer {
    font-size: 14px;
    color: #555;
}

/* Divider */
.section-divider {
    height: 2px;
    background: #222;
    width: 80%;
    margin: 60px auto;
}

/* Contact Section */
.contact-section {
    text-align: center;
    padding-bottom: 80px;
}

.contact-section h2 {
    color: #e91e63;
    font-weight: 700;
}

.contact-form {
    max-width: 700px;
    margin: 40px auto 0;
}

.btn-pink {
    background-color: #e91e63;
    color: #fff;
    border: none;
}

.btn-pink:hover {
    background-color: #c2185b;
    color: #fff;
}

.form-control:focus {
    border-color: #e91e63;
    box-shadow: 0 0 0 0.2rem rgba(233, 30, 99, 0.25);
}
.ins-deco-sq.sq-top-left.w-5 {
    width: 100px !important;
    height: 100px !important;
    top: 35px !important;
}

.ins-deco-sq.sq-mid-right.w-6 {
    top: 120px !important;
}
span.rp-tab-label {
    font-weight: bold;
}

/* Store selection styles */
.br-store-card {
    position: relative;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 2px solid transparent;
}

.br-store-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-light, #e0e0e0);
}

.br-store-card.br-selected {
    border-color: var(--primary, #0d6efd);
    background-color: var(--primary-light-bg, #f0f7ff);
    box-shadow: 0 4px 12px rgba(13, 110, 253, 0.15);
}

.br-selection-indicator i {
    font-size: 1.5rem;
    color: var(--text-muted, #6c757d);
    transition: color 0.2s ease;
}

.br-store-card.br-selected .br-selection-indicator i {
    color: var(--primary, #0d6efd);
}

.br-store-card.br-selected::after {
    content: "✓";
    position: absolute;
    top: 10px;
    right: 10px;
    width: 24px;
    height: 24px;
    background-color: var(--primary, #0d6efd);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
}

/* Disabled Next button style */
.br-btn-next:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}
/* Toast notification */
.br-toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background-color: #333;
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 14px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 10000;
    opacity: 0;
    transition:
        transform 0.3s ease,
        opacity 0.3s ease;
}

.br-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.br-step-label {
    margin-top: 6px;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-muted);
    text-align: center;
}

.br-step-active .br-step-label {
    color: var(--primary);
    font-weight: 600;
}

.br-step-done .br-step-label {
    color: #28a745;
}

.br-choice-card {
    border: 2px solid #eee;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}
.br-choice-card:hover {
    border-color: var(--primary-color);
    background: #f8f9fa;
}
.br-choice-icon {
    font-size: 2rem;
    color: var(--primary-color);
}
.br-choice-name {
    font-weight: 700;
    margin-top: 10px;
}

.br-store-map-item {
    padding: 15px;
    border-bottom: 1px solid #eee;
    cursor: pointer;
}
.br-store-map-item.active {
    background: #eef2ff;
    border-left: 4px solid var(--primary-color);
}
.br-map-box {
    background: #f0f0f0;
    height: 100%;
    min-height: 300px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.br-choice-card.br-selected {
    border: 2px solid #e91e63;
    background-color: #f0f7ff;
}

.input-group.m {
    width: 91%;
}

/* Show 4 time slots per row */
.br-time-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-top: 10px;
}

/* Optional: adjust for smaller screens */
@media (max-width: 576px) {
    .br-time-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.alert-danger {
    margin-top: 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
}
p.br-success-sub.m {
    padding-left: 100px;
    padding-right: 100px;
}

/* .col-6.col-md-3.m {
    width: 25%;
} */

.br3-col-left {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 16px;
    padding: 28px 28px 24px;
}

.br3-col-left .br-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 14px;
}

.br3-col-left .br-form-group {
    margin-bottom: 14px;
}

.br3-col-left .br-form-group:last-child {
    margin-bottom: 0;
}
.br-form-label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-body);
    margin-bottom: 5px;
}

.br3-col-right {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.br3-repair-summary {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 16px;
    padding: 20px 22px;
}

.br3-repair-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.br3-repair-info {
    flex: 1;
}

.br3-repair-label {
    font-size: 0.78rem;
    font-weight: 700;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    margin: 0 0 3px;
}

.br3-repair-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--navy);
    margin: 0;
    line-height: 1.4;
}

.br3-repair-price {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--pink);
    margin: 0;
}

.br3-repair-img-wrap {
    flex-shrink: 0;
}

.br3-repair-img {
    width: 72px;
    height: auto;
    object-fit: contain;
}

#brPanel3 {
    max-width: 1100px;
}

.br3-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: start;
}
/* ── Responsive: stack on small screens ── */
@media (max-width: 900px) {
    .br3-layout {
        grid-template-columns: 1fr;
    }

    .br3-col-left .br-form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .br3-repair-img {
        width: 52px;
    }
}

.br3-col-right-bg {
    background: #f8f5fc;
    border: 1.5px solid #ecdff5;
    border-radius: 16px;
    padding: 24px 24px 20px;
}

.br3-col-right-bg .br3-col-title {
    border-bottom-color: #e0d0ef;
}

.br3-col-right-bg .br3-repair-summary,
.br3-col-right-bg .br3-addon-card {
    background: #fff;
}
.br3-total-row {
    background: var(--pink-light);
    border: 1.5px solid var(--pink);
    border-radius: 12px;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.br3-total-label {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--navy);
}

.br3-total-price {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--pink);
}

.store-selection-item.store-item-selected {
    background-color: #e7f1ff;
    border-left: 4px solid #0d6efd;
}
.brs-right {
    background: #f8f5fc;
    border: 1.5px solid #ecdff5;
    border-radius: 18px;
    padding: 28px 28px 24px;
}
.brs-right {
    background: #f8f5fc;
    border: 1.5px solid #ecdff5;
    border-radius: 18px;
    padding: 28px 28px 24px;
}

.brs-right-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1.5px solid #e0d0ef;
}

.brs-detail-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 20px;
}

.brs-detail-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid #ede8f5;
}

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

.brs-detail-key {
    font-size: 0.82rem;
    font-weight: 600;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    white-space: nowrap;
}

.brs-detail-val {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--navy);
    text-align: right;
}
/* ── LEFT ── */
.brs-left {
    padding: 8px 0;
}

.brs-check-anim {
    width: 76px;
    height: 76px;
    background: linear-gradient(135deg, #00c87a, #00a864);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    margin-bottom: 24px;
    box-shadow: 0 8px 24px rgba(0, 182, 122, 0.35);
    animation: brsPopIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes brsPopIn {
    from {
        transform: scale(0);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.brs-title {
    font-size: 1.9rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 10px;
    line-height: 1.2;
}

.brs-sub {
    font-size: 0.92rem;
    color: #666;
    line-height: 1.65;
    margin-bottom: 28px;
}

/* Order number block */
.brs-order-block {
    background: var(--light-bg);
    border: 1.5px solid var(--border);
    border-radius: 14px;
    padding: 20px 24px;
    display: inline-block;
    min-width: 240px;
}

.brs-order-eyebrow {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #999;
    margin: 0 0 6px;
}

.brs-order-num {
    font-size: 2rem;
    font-weight: 800;
    color: var(--pink);
    letter-spacing: 1px;
    margin-bottom: 8px;
    font-family: monospace;
}

.brs-order-note {
    font-size: 0.78rem;
    color: #999;
    margin: 0;
}

.brs-done-btn {
    display: inline-flex;
    align-items: center;
}

.brs-print-btn {
    display: inline-flex;
    align-items: center;
    background: #fff;
    border: 1.5px solid var(--border);
    color: var(--navy);
    border-radius: 10px;
    padding: 13px 22px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.brs-print-btn:hover {
    background: #f4f4f4;
}
#brPanelSuccess {
    max-width: 1000px;
}

.brs-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: start;
}

.brs-total-box {
    background: #fff;
    border: 1.5px solid var(--pink);
    border-radius: 12px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.brs-total-label {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--navy);
}

.brs-total-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--pink);
}

/* Warranty badge */
.brs-warranty-badge {
    background: #e8f7f1;
    color: #1a8a57;
    border: 1.5px solid #b2e2cf;
    border-radius: 10px;
    padding: 10px 16px;
    font-size: 0.82rem;
    font-weight: 600;
    display: flex;
    align-items: center;
}
.why-join-section {
    padding: 5rem;
    background-color: #dcf7f7;
}
a.newsletter-btn.m {
    background-color: #000006;
}
p.lead.m {
    margin-bottom: 2rem;
}
.leaflet-container a {
    color: #ffffff !important;
}

.col-md-3.col-6.mb-3.m {
    width: 25%;
}
a.leaflet-control-zoom-in {
    color: black !important;
}
a.leaflet-control-zoom-out {
    color: black !important;
}
/* ============================================================
   MOBILE PHONES PAGE
   – Pink/light-pink hero matching insurance page
   – Left sidebar filters + phone grid
============================================================ */

/* Hero */
.mp-hero {
    position: relative;
    background: #f5d5e7;
    overflow: hidden;
    padding: 90px 0 100px;
    text-align: center;
}

.mp-deco-sq {
    position: absolute;
    border-radius: 18px;
    background: rgba(227, 30, 124, 0.18);
    pointer-events: none;
}

.mp-sq-top-left {
    width: 130px;
    height: 130px;
    top: 60px;
    left: 80px;
    border-radius: 22px;
}

.mp-sq-top-right-sm {
    width: 56px;
    height: 56px;
    top: 80px;
    right: 340px;
    border-radius: 10px;
    opacity: 0.6;
}

.mp-sq-mid-right {
    width: 100px;
    height: 100px;
    top: 160px;
    right: 80px;
    border-radius: 18px;
}

.mp-deco-dot {
    position: absolute;
    border-radius: 50%;
    background: rgba(227, 30, 124, 0.25);
    pointer-events: none;
}

.mp-dot-1 {
    width: 12px;
    height: 12px;
    top: 140px;
    right: 250px;
}

.mp-dot-2 {
    width: 8px;
    height: 8px;
    top: 100px;
    left: 340px;
    opacity: 0.5;
}

.mp-dot-3 {
    width: 18px;
    height: 18px;
    bottom: 60px;
    left: 200px;
    opacity: 0.35;
}

.mp-hero-inner {
    position: relative;
    z-index: 2;
}

.mp-hero-label {
    display: inline-block;
    background: rgba(227, 30, 124, 0.12);
    color: var(--pink);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    margin-bottom: 1.2rem;
    letter-spacing: 0.02em;
}

.mp-hero-title {
    font-size: clamp(2.2rem, 5vw, 3.4rem);
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.15;
}

.mp-hero-sub {
    font-size: 1rem;
    color: var(--text-body);
    max-width: 560px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

.mp-hero-btn {
    display: inline-flex;
    align-items: center;
    background: var(--pink);
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    padding: 0.85rem 2.6rem;
    border-radius: var(--radius-pill);
    box-shadow: 0 4px 18px rgba(227, 30, 124, 0.35);
    transition: all 0.25s ease;
    text-decoration: none;
}

.mp-hero-btn:hover {
    background: var(--pink-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(227, 30, 124, 0.45);
}

/* Collection section */
.mp-collection {
    background: #f8f9fb;
}

/* Filters sidebar */
.mp-filters-wrap {
    position: sticky;
    top: 90px;
}

.mp-filter-toggle {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    background: #fff;
    border: 1.5px solid #e8eaf0;
    border-radius: 12px;
    padding: 0.75rem 1.1rem;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-dark);
    cursor: pointer;
    transition: border-color 0.2s;
    width: 100%;
}

.mp-filter-toggle:hover {
    border-color: var(--pink);
}

.mp-filters-body {
    background: #fff;
    border-radius: 16px;
    border: 1.5px solid #e8eaf0;
    overflow: hidden;
    padding: 1.4rem 1.4rem 0.6rem;
}

.mp-filter-header {
    border-bottom: 1.5px solid #f0f0f0;
    padding-bottom: 0.85rem;
    margin-bottom: 0 !important;
}

.mp-filter-title {
    font-size: 1rem;
    font-weight: 800;
    color: var(--text-dark);
    margin: 0;
}

.mp-clear-all {
    background: none;
    border: none;
    color: var(--pink);
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    padding: 0;
    transition: color 0.2s;
}

.mp-clear-all:hover {
    color: var(--pink-dark);
    text-decoration: underline;
}

.mp-filter-group {
    border-bottom: 1.5px solid #f0f0f0;
    padding: 1rem 0;
}

.mp-filter-group:last-child {
    border-bottom: none;
    padding-bottom: 0.5rem;
}

.mp-filter-group-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 700;
    font-size: 0.92rem;
    color: var(--text-dark);
    padding: 0.25rem 0;
    user-select: none;
    margin-bottom: 0.65rem;
}

.mp-chevron {
    font-size: 0.8rem;
    color: #999;
    transition: transform 0.25s ease;
}

.mp-filter-options {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    margin-top: 0.5rem;
}

.mp-filter-option {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    cursor: pointer;
    padding: 0.4rem 0.5rem;
    border-radius: 8px;
    transition: background 0.15s;
    margin: 0;
}

.mp-filter-option:hover {
    background: #fdf6fb;
}

.mp-check {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    accent-color: var(--pink);
    cursor: pointer;
    border-radius: 4px;
}

.mp-check-label {
    font-size: 0.88rem;
    color: var(--text-body);
    flex: 1;
    line-height: 1.4;
}

.mp-count {
    font-size: 0.78rem;
    color: #aaa;
    background: #f3f3f5;
    padding: 0.1rem 0.45rem;
    border-radius: 50px;
    font-weight: 500;
}

.mp-filter-option:has(.mp-check:checked) {
    background: rgba(227, 30, 124, 0.06);
}

.mp-filter-option:has(.mp-check:checked) .mp-check-label {
    color: var(--pink);
    font-weight: 600;
}

/* Results bar */
.mp-results-bar {
    background: #fff;
    border: 1.5px solid #e8eaf0;
    border-radius: 12px;
    padding: 0.75rem 1.2rem;
}

.mp-result-count {
    font-size: 0.9rem;
    color: var(--text-body);
}

.mp-result-count span {
    font-weight: 700;
    color: var(--text-dark);
}

.mp-sort-label {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-dark);
    white-space: nowrap;
}

.mp-sort-select {
    border: 1.5px solid #e8eaf0;
    border-radius: 8px;
    font-size: 0.85rem;
    color: var(--text-dark);
    padding: 0.35rem 2rem 0.35rem 0.7rem;
    cursor: pointer;
    min-width: 160px;
}

.mp-sort-select:focus {
    border-color: var(--pink);
    box-shadow: 0 0 0 3px rgba(227, 30, 124, 0.1);
    outline: none;
}

/* Refurb badge */
.mp-badge-refurb {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #6c757d;
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 50px;
    z-index: 3;
    letter-spacing: 0.02em;
}

/* No results state */
.mp-no-results-icon {
    font-size: 3.5rem;
    color: #d0d3dc;
    display: block;
    margin-bottom: 1rem;
}

/* Responsive */
@media (max-width: 767.98px) {
    .mp-hero {
        padding: 60px 0 70px;
    }

    .mp-sq-top-left {
        width: 80px;
        height: 80px;
        top: 30px;
        left: 20px;
    }

    .mp-sq-mid-right {
        width: 60px;
        height: 60px;
        top: 80px;
        right: 20px;
    }

    .mp-filters-wrap {
        position: static;
    }

    .mp-filters-body {
        display: none;
        margin-top: 0.5rem;
    }

    .mp-filters-body.show {
        display: block;
    }

    .mp-results-bar {
        flex-direction: column;
        align-items: flex-start !important;
        gap: 0.75rem;
    }

    .mp-sort-select {
        min-width: 140px;
    }
}

/* ============================================================
   PHONE DETAIL PAGE
============================================================ */

/* Breadcrumb */
.pd-breadcrumb {
    background: #f8f9fb;
    border-bottom: 1.5px solid #eee;
    padding: 0.75rem 0;
}

.pd-breadcrumb .breadcrumb {
    font-size: 0.85rem;
    color: var(--text-body);
    margin: 0;
}

.pd-breadcrumb .breadcrumb-item a {
    color: var(--pink);
    font-weight: 500;
}

.pd-breadcrumb .breadcrumb-item.active {
    color: var(--text-dark);
    font-weight: 600;
}

/* Gallery */
.pd-gallery {
    position: sticky;
    top: 90px;
}

.pd-main-img-wrap {
    background: #f8f9fb;
    border-radius: 18px;
    border: 1.5px solid #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 380px;
    overflow: hidden;
    padding: 2rem;
}

.pd-main-img {
    max-width: 100%;
    max-height: 320px;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.pd-main-img-wrap:hover .pd-main-img {
    transform: scale(1.04);
}

.pd-thumb {
    width: 72px;
    height: 72px;
    border-radius: 10px;
    border: 2px solid #e5e7eb;
    background: #f8f9fb;
    padding: 4px;
    cursor: pointer;
    transition: border-color 0.2s;
    flex-shrink: 0;
    overflow: hidden;
}

.pd-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.pd-thumb:hover,
.pd-thumb.active {
    border-color: var(--pink);
}

/* Product info */
.pd-brand-tag {
    display: inline-block;
    background: var(--pink-light);
    color: var(--pink);
    font-size: 0.78rem;
    font-weight: 700;
    padding: 0.2rem 0.9rem;
    border-radius: 50px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.pd-title {
    font-size: clamp(1.7rem, 3.5vw, 2.4rem);
    font-weight: 800;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.2;
}

.pd-stars {
    color: #f59e0b;
    font-size: 0.9rem;
}

.pd-rating-text {
    font-size: 0.85rem;
    color: var(--text-body);
}

.pd-delivery-note {
    background: #f0fdf4;
    border: 1.5px solid #bbf7d0;
    border-radius: 10px;
    padding: 0.65rem 1rem;
    font-size: 0.88rem;
    color: #15803d;
}

.pd-divider {
    border-color: #f0f0f0;
    margin: 1.4rem 0;
}

/* Option selectors */
.pd-option-group {
    margin-bottom: 1.2rem;
}

.pd-option-label {
    font-size: 0.9rem;
    color: var(--text-body);
    margin-bottom: 0.65rem;
}

.pd-option-label strong {
    color: var(--text-dark);
}

.pd-option-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.pd-opt-btn {
    background: #fff;
    border: 1.5px solid #e0e0e0;
    border-radius: 10px;
    padding: 0.5rem 1.1rem;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.2s ease;
}

.pd-opt-btn:hover {
    border-color: var(--pink);
    color: var(--pink);
}

.pd-opt-btn.active {
    background: var(--pink);
    border-color: var(--pink);
    color: #fff;
    box-shadow: 0 3px 12px rgba(227, 30, 124, 0.3);
}

/* Colour buttons */
.pd-colour-btn {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    border: 3px solid transparent;
    cursor: pointer;
    transition: all 0.2s;
    outline: 2px solid #e0e0e0;
    outline-offset: 2px;
}

.pd-colour-btn:hover,
.pd-colour-btn.active {
    outline-color: var(--pink);
    transform: scale(1.12);
}

/* Learn more link */
.pd-learn-more {
    background: none;
    border: none;
    color: var(--pink);
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    padding: 0;
    margin-left: 0.5rem;
    transition: color 0.2s;
}

.pd-learn-more:hover {
    color: var(--pink-dark);
    text-decoration: underline;
}

/* Price & buy */
.pd-price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-dark);
    display: block;
    line-height: 1;
}

.pd-price-note {
    font-size: 0.8rem;
    color: var(--text-body);
    margin-top: 0.25rem;
}

.pd-add-cart-btn {
    display: inline-flex;
    align-items: center;
    background: var(--pink);
    color: #fff;
    border: none;
    border-radius: var(--radius-pill);
    font-size: 1rem;
    font-weight: 700;
    padding: 0.85rem 2.2rem;
    cursor: pointer;
    box-shadow: 0 4px 18px rgba(227, 30, 124, 0.35);
    transition: all 0.25s ease;
}

.pd-add-cart-btn:hover {
    background: var(--pink-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(227, 30, 124, 0.45);
}

.pd-wishlist-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1.5px solid #e0e0e0;
    background: #fff;
    color: #ed0097;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.pd-wishlist-btn:hover {
    border-color: var(--pink);
    color: var(--pink);
    background: var(--pink-light);
}

/* Perks */
.pd-perk {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.9rem 1rem;
    background: #f8f9fb;
    border-radius: 12px;
    border: 1.5px solid #eee;
    height: 100%;
}

.pd-perk-icon {
    width: 40px;
    height: 40px;
    background: var(--pink-light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pink);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.pd-perk-title {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--text-dark);
}

.pd-perk-sub {
    font-size: 0.78rem;
    color: var(--text-body);
}

/* Tabs */
.pd-tabs-section {
    background: #fff;
    border-top: 1.5px solid #f0f0f0;
    padding: 0 0 80px;
}

.pd-tab-nav {
    display: flex;
    gap: 0;
    border-bottom: 2px solid #f0f0f0;
    margin-bottom: 2.5rem;
    /* overflow-x: auto; */
    flex-wrap: nowrap;
}

.pd-tab-btn {
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    padding: 1.1rem 1.8rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-body);
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.2s;
}

.pd-tab-btn:hover {
    color: var(--text-dark);
}

.pd-tab-btn.active {
    color: var(--pink);
    border-bottom-color: var(--pink);
}

.pd-tab-content {
    padding-top: 1rem;
}

.pd-section-heading {
    font-size: clamp(1.4rem, 2.5vw, 1.9rem);
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1.2rem;
}

/* Description */
.pd-desc-text {
    font-size: 1rem;
    color: var(--text-body);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.pd-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.pd-feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    font-size: 0.92rem;
    color: var(--text-body);
    line-height: 1.55;
}

.pd-feature-list li i {
    color: var(--pink);
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 1px;
}

/* Highlight card */
.pd-highlight-card {
    background: linear-gradient(135deg, #fff5fa 0%, #fde8f3 100%);
    border: 1.5px solid rgba(227, 30, 124, 0.15);
    border-radius: 18px;
    padding: 2rem;
}

.pd-highlight-icon {
    font-size: 2rem;
    color: var(--pink);
    margin-bottom: 0.9rem;
}

.pd-highlight-title {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.pd-highlight-text {
    font-size: 0.9rem;
    color: var(--text-body);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.pd-highlight-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.pd-highlight-list li {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    font-size: 0.88rem;
    color: var(--text-dark);
    font-weight: 500;
}

.pd-highlight-list li i {
    color: var(--pink);
    font-size: 0.9rem;
}

/* Specs table */
.pd-specs-table {
    border: 1.5px solid #eee;
    border-radius: 12px;
    overflow: hidden;
}

.pd-spec-row {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 1rem;
    padding: 0.9rem 1.2rem;
    border-bottom: 1.5px solid #f5f5f5;
    align-items: start;
}

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

.pd-spec-row:nth-child(even) {
    background: #fafafa;
}

.pd-spec-key {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-dark);
    flex-shrink: 0;
}

.pd-spec-val {
    font-size: 0.85rem;
    color: var(--text-body);
    line-height: 1.5;
}

/* Warranty cards */
.pd-warranty-card {
    background: #fff;
    border: 1.5px solid #eee;
    border-radius: 16px;
    padding: 2rem 1.5rem;
    height: 100%;
    transition:
        border-color 0.2s,
        box-shadow 0.2s;
}

.pd-warranty-card:hover {
    border-color: var(--pink);
    box-shadow: 0 6px 24px rgba(227, 30, 124, 0.08);
}

.pd-warranty-icon {
    font-size: 2rem;
    color: var(--pink);
    margin-bottom: 1rem;
}

.pd-warranty-title {
    font-size: 1rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.pd-warranty-text {
    font-size: 0.88rem;
    color: var(--text-body);
    line-height: 1.7;
    margin: 0;
}

/* Condition modal */
.pd-modal-content {
    border-radius: 18px;
    border: none;
    overflow: hidden;
}

.pd-modal-header {
    background: #f8f9fb;
    border-bottom: 1.5px solid #eee;
    padding: 1.2rem 1.5rem;
}

.pd-modal-title {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--text-dark);
}

.pd-modal-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.pd-condition-item {
    padding: 1rem;
    background: #f8f9fb;
    border-radius: 10px;
}

.pd-condition-item p {
    font-size: 0.88rem;
    color: var(--text-body);
    line-height: 1.65;
    margin: 0.55rem 0 0;
}

.pd-condition-badge {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 0.2rem 0.8rem;
    border-radius: 50px;
    letter-spacing: 0.03em;
}

.pd-condition-badge.good {
    background: #d1fae5;
    color: #065f46;
}

.pd-condition-badge.fair-plus {
    background: #fef3c7;
    color: #92400e;
}

.pd-condition-badge.fair {
    background: #fee2e2;
    color: #991b1b;
}

/* Responsive */
@media (max-width: 991.98px) {
    .pd-gallery {
        position: static;
    }
}

@media (max-width: 767.98px) {
    .pd-main-img-wrap {
        min-height: 260px;
    }

    .pd-add-cart-btn {
        width: 100%;
        justify-content: center;
    }

    .pd-buy-block {
        flex-direction: column;
        align-items: flex-start !important;
        gap: 1rem !important;
    }

    .pd-spec-row {
        grid-template-columns: 1fr;
        gap: 0.25rem;
    }

    .pd-tab-btn {
        padding: 0.9rem 1.2rem;
        font-size: 0.88rem;
    }
}

/* ============================================================
   CART PAGE
============================================================ */

/* Page header */
.ct-header {
    background: #f8f9fb;
    border-bottom: 1.5px solid #eee;
    padding: 1.4rem 0 1.2rem;
}

.ct-header .breadcrumb {
    font-size: 0.82rem;
}

.ct-header .breadcrumb-item a {
    color: var(--pink);
    font-weight: 500;
}

.ct-page-title {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    color: var(--text-dark);
}

.ct-item-count {
    background: var(--pink-light);
    color: var(--pink);
    font-size: 0.82rem;
    font-weight: 700;
    padding: 0.2rem 0.85rem;
    border-radius: 50px;
}

/* Section */
.ct-section {
    padding: 2.5rem 0 4rem;
    background: #f8f9fb;
}

/* Delivery bar */
.ct-delivery-bar {
    background: #fff;
    border: 1.5px solid #e8eaf0;
    border-radius: 14px;
    padding: 1rem 1.3rem;
}

.ct-delivery-progress-wrap {
    margin-bottom: 0.7rem;
}

.ct-delivery-track {
    height: 6px;
    background: #eee;
    border-radius: 50px;
    overflow: hidden;
}

.ct-delivery-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--pink) 0%, #ff6db0 100%);
    border-radius: 50px;
    transition: width 0.5s ease;
}

.ct-delivery-msg {
    font-size: 0.88rem;
    color: var(--text-body);
}

.ct-delivery-msg strong {
    color: var(--text-dark);
}

.ct-delivery-unlocked {
    color: #15803d !important;
}

/* Items list */
.ct-items-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.ct-item {
    background: #fff;
    border: 1.5px solid #e8eaf0;
    border-radius: 16px;
    padding: 1.2rem;
    display: flex;
    gap: 1.2rem;
    transition:
        border-color 0.2s,
        box-shadow 0.2s;
}

.ct-item:hover {
    border-color: rgba(227, 30, 124, 0.25);
    box-shadow: 0 4px 20px rgba(227, 30, 124, 0.06);
}

.ct-item-img-wrap {
    width: 100px;
    height: 100px;
    min-width: 100px;
    background: #f8f9fb;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 1.5px solid #eee;
}

.ct-item-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 8px;
}

.ct-item-info {
    flex: 1;
    min-width: 0;
}

.ct-item-name {
    font-size: 0.98rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 0.4rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ct-item-variants {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
}

.ct-variant-tag {
    display: inline-block;
    background: #f3f4f6;
    color: var(--text-body);
    font-size: 0.75rem;
    font-weight: 500;
    padding: 0.2rem 0.65rem;
    border-radius: 50px;
    border: 1px solid #e5e7eb;
}

/* Remove button */
.ct-remove-btn {
    background: none;
    border: none;
    color: #ccc;
    font-size: 0.8rem;
    cursor: pointer;
    padding: 0.2rem 0.4rem;
    border-radius: 6px;
    flex-shrink: 0;
    transition:
        color 0.2s,
        background 0.2s;
    line-height: 1;
}
.ct1-remove-btn {
    background: none;
    border: none;
    color: #ccc;
    font-size: 0.8rem;
    cursor: pointer;
    padding: 0.2rem 0.4rem;
    border-radius: 6px;
    flex-shrink: 0;
    transition:
        color 0.2s,
        background 0.2s;
    line-height: 1;
}

.ct-remove-btn:hover {
    color: #ef4444;
    background: #fff0f0;
}

/* Quantity stepper */
.ct-qty-wrap {
    display: flex;
    align-items: center;
    gap: 0;
    border: 1.5px solid #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
    width: fit-content;
}

.ct-qty-btn {
    background: #fff;
    border: none;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--text-dark);
    transition:
        background 0.15s,
        color 0.15s;
}

.ct-qty-btn:hover {
    background: var(--pink-light);
    color: var(--pink);
}

.ct-qty-input {
    width: 40px;
    height: 34px;
    text-align: center;
    border: none;
    border-left: 1.5px solid #e0e0e0;
    border-right: 1.5px solid #e0e0e0;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--text-dark);
    background: #fff;
    outline: none;
    -moz-appearance: textfield;
    appearance: textfield;
}

.ct-qty-input::-webkit-outer-spin-button,
.ct-qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

.ct-item-price {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--text-dark);
}

/* Empty state */
.ct-empty {
    background: #fff;
    border: 1.5px solid #eee;
    border-radius: 18px;
    padding: 4rem 2rem;
    text-align: center;
}

.ct-empty-icon {
    font-size: 4rem;
    color: #ddd;
    margin-bottom: 1rem;
}

.ct-empty-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.ct-empty-sub {
    color: var(--text-body);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.ct-continue-btn {
    display: inline-flex;
    align-items: center;
    background: var(--pink);
    color: #fff;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 0.8rem 2rem;
    border-radius: var(--radius-pill);
    text-decoration: none;
    transition: all 0.25s ease;
    box-shadow: 0 4px 18px rgba(227, 30, 124, 0.3);
}

.ct-continue-btn:hover {
    background: var(--pink-dark);
    color: #fff;
    transform: translateY(-2px);
}

.ct-back-link {
    display: inline-flex;
    align-items: center;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-body);
    text-decoration: none;
    transition: color 0.2s;
}

.ct-back-link:hover {
    color: var(--pink);
}

/* Order summary */
.ct-summary-card {
    background: #fff;
    border: 1.5px solid #e8eaf0;
    border-radius: 18px;
    padding: 1.6rem 1.5rem;
    position: sticky;
    top: 90px;
}

.ct-summary-title {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1.2rem;
}

/* Promo */
.ct-promo-wrap {
    margin-bottom: 1rem;
}

.ct-promo-input-group {
    display: flex;
    gap: 0;
    border: 1.5px solid #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
}

.ct-promo-input {
    flex: 1;
    border: none;
    padding: 0.65rem 1rem;
    font-size: 0.88rem;
    color: var(--text-dark);
    background: #fff;
    outline: none;
}

.ct-promo-input::placeholder {
    color: #bbb;
}

.ct-promo-btn {
    background: var(--text-dark);
    border: none;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
    padding: 0.65rem 1.1rem;
    cursor: pointer;
    transition: background 0.2s;
    white-space: nowrap;
}

.ct-promo-btn:hover:not(:disabled) {
    background: var(--pink);
}

.ct-promo-btn:disabled {
    background: #22c55e;
    cursor: default;
}

.ct-promo-msg {
    font-size: 0.82rem;
    font-weight: 600;
    margin-top: 0.5rem;
}

.ct-promo-success {
    color: #15803d;
}

.ct-promo-error {
    color: #dc2626;
}

/* Cost rows */
.ct-summary-divider {
    border-color: #f0f0f0;
    margin: 1rem 0;
}

.ct-cost-rows {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.ct-cost-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: var(--text-body);
}

.ct-delivery-free {
    color: #15803d;
    font-weight: 700;
}

.ct-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ct-total-label {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
}

.ct-total-price {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-dark);
}

.ct-vat-note {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin: 0.4rem 0 0;
}

/* Checkout button */
.ct-checkout-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--pink);
    color: #fff;
    font-weight: 800;
    font-size: 1rem;
    padding: 0.95rem;
    border-radius: var(--radius-pill);
    text-decoration: none;
    box-shadow: 0 4px 18px rgba(227, 30, 124, 0.35);
    transition: all 0.25s ease;
    text-align: center;
}

.ct-checkout-btn:hover {
    background: var(--pink-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(227, 30, 124, 0.45);
}

/* Trust row */
.ct-trust-row {
    display: flex;
    justify-content: space-around;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.ct-trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.73rem;
    color: var(--text-body);
    font-weight: 500;
    text-align: center;
}

.ct-trust-item i {
    font-size: 1.3rem;
    color: var(--pink);
}

/* Perks below summary */
.ct-perks-below {
    background: var(--pink-light);
    border: 1.5px solid rgba(227, 30, 124, 0.15);
    border-radius: 14px;
    padding: 1rem 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.ct-perk-row {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-size: 0.83rem;
    color: var(--text-dark);
    font-weight: 500;
}

.ct-perk-row i {
    font-size: 1rem;
    flex-shrink: 0;
}

/* Responsive */
@media (max-width: 767.98px) {
    .ct-item-img-wrap {
        width: 76px;
        height: 76px;
        min-width: 76px;
    }

    .ct-item-name {
        font-size: 0.88rem;
    }

    .ct-item {
        padding: 1rem;
        gap: 0.9rem;
    }

    .ct-summary-card {
        position: static;
    }
}
.phone-card-img-wrap:has(.phone-real-img) {
    padding: 0;
    overflow: hidden;
    /* min-height: 249px; */
}

.custom-input {
    border-radius: 12px !important;
    border: 1px solid #dee2e6 !important;
    padding: 12px 15px !important;
    background-color: #fdfdfd !important;
}

.custom-input::placeholder {
    color: #adb5bd;
}

.form-label {
    color: #495057;
    margin-bottom: 0.5rem;
}

/* Checkbox Styling */
.form-check-input:checked {
    background-color: #d63384;
    border-color: #d63384;
}

/* Card Shadow */
.shadow-sm {
    box-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, 0.05) !important;
}
button.pd-colour-btn {
    margin: 3px;
}
span#wishlist-count {
    line-height: 15px;
}

.description-content {
    color: #333;
    line-height: 1.8;
}

/* Target all possible image containers from CKEditor */
.description-content figure,
.description-content .image,
.description-content .image-inline,
.description-content .image-style-side,
.description-content .image-style-align-left,
.description-content .image-style-align-center,
.description-content .image-style-align-right {
    text-align: center;
    display: block;
    margin: 20px auto;
    max-width: 100%;
}

/* Target images directly */
.description-content img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* If images are inside paragraphs */
.description-content p img {
    display: block;
    margin: 0 auto;
}

/* Target figure elements specifically */
.description-content figure img {
    display: block;
    margin: 0 auto;
}

/* Remove any default text-align that might interfere */
.description-content {
    text-align: left;
}

/* Ensure figures don't have default margins that break centering */
.description-content figure {
    margin-left: auto;
    margin-right: auto;
}

:root {
    --primary-color: #e83e8c;
    --primary-hover: #d6327c;
    --background: #ffffff;
    --surface: #f8f9fa;
    --accent: #e9ecef;
    --foreground: #212529;
    --muted-foreground: #6c757d;
    --border: #dee2e6;
    --card-bg: #ffffff;
    --shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.1);
}

body {
    font-family:
        system-ui,
        -apple-system,
        "Segoe UI",
        Roboto,
        sans-serif;
    color: var(--foreground);
}

.hero {
    position: relative;
    padding: 100px 0;
    background-color: #fff;
    /* or the light pink from the video */
    overflow: hidden;
    /* Prevents shapes from causing scrollbars */
}

.hero-shape-1,
.hero-shape-4 {
    position: absolute;
    width: 80px;
    height: 80px;
    background-color: #fce4ec;
    /* Light pink/mauve tone */
    border-radius: 15px;
    /* Smooth rounded corners */
    z-index: 0;
    opacity: 0.6;
}

/* Top Left Shape */
.hero-shape-1 {
    top: 15%;
    left: 10%;
    transform: rotate(-15deg);
}

/* Bottom Right Shape */
.hero-shape-4 {
    bottom: 20%;
    right: 12%;
    transform: rotate(15deg);
}

/* Simple floating animation to match the video feel */
@keyframes float {
    0% {
        transform: translateY(0px) rotate(-15deg);
    }

    50% {
        transform: translateY(-10px) rotate(-10deg);
    }

    100% {
        transform: translateY(0px) rotate(-15deg);
    }
}

.hero-shape-1 {
    animation: float 6s ease-in-out infinite;
}

.bg-accent {
    background-color: #fdecf5;
}

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

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

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

.text-primary {
    color: var(--primary-color) !important;
}

.text-foreground {
    color: var(--foreground);
}

.text-muted {
    color: var(--muted-foreground);
}

.border-custom {
    border-color: var(--border) !important;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    transition: all 0.2s;
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    border-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -5px rgba(232, 62, 140, 0.3);
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.btn-outline-primary {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.shadow-card {
    box-shadow: var(--shadow);
    transition:
        transform 0.3s,
        box-shadow 0.3s;
}

.shadow-card:hover {
    box-shadow: 0 20px 35px -12px rgba(232, 62, 140, 0.15);
}

.card-plan {
    border-radius: 1.5rem;
    border: 1px solid var(--border);
    overflow: hidden;
    background: var(--card-bg);
}

.floating-shape {
    position: absolute;
    opacity: 0.1;
    background-color: var(--primary-color);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    pointer-events: none;
    z-index: 0;
}

.accordion-button:not(.collapsed) {
    background-color: rgba(232, 62, 140, 0.05);
    color: var(--primary-color);
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(232, 62, 140, 0.2);
}

.accordion-item {
    border: 1px solid var(--border);
    border-radius: 1rem !important;
    overflow: hidden;
    margin-bottom: 0.75rem;
}

.footer-link {
    color: var(--muted-foreground);
    text-decoration: none;
    transition: color 0.2s;
    line-height: 2;
}

.footer-link:hover {
    color: var(--primary-color);
}

.payment-icon {
    font-size: 1.5rem;
    color: var(--muted-foreground);
    margin-right: 0.5rem;
}

.hero {
    position: relative;
    overflow: hidden;
    background-color: #fdecf5;
    padding: 6rem 0;
}

.hero-shape-1 {
    position: absolute;
    left: 8%;
    top: 15%;
    width: 6rem;
    height: 6rem;
    background-color: rgba(232, 62, 140, 0.1);
    border-radius: 1.5rem;
    transform: rotate(10deg);
}

.hero-shape-2 {
    position: absolute;
    right: 10%;
    top: 20%;
    width: 5rem;
    height: 5rem;
    background-color: rgba(232, 62, 140, 0.08);
    border-radius: 50%;
}

.hero-shape-3 {
    position: absolute;
    bottom: 20%;
    left: 15%;
    width: 4rem;
    height: 4rem;
    background-color: rgba(232, 62, 140, 0.06);
    border-radius: 1rem;
}

.hero-shape-4 {
    position: absolute;
    bottom: 25%;
    right: 12%;
    width: 5rem;
    height: 5rem;
    background-color: rgba(232, 62, 140, 0.1);
    border-radius: 1.5rem;
}

.hero-dot {
    position: absolute;
    width: 0.75rem;
    height: 0.75rem;
    background-color: rgba(232, 62, 140, 0.2);
    border-radius: 50%;
}
.terms {
    padding: 1.2rem 2rem;
    text-align: center;
}
