:root {
    --pc-pink: #E91E63;
    --pc-pink-dark: #D81B60;
    --pc-purple: #7B1FA2;
    --pc-purple-dark: #3D154B;
    --pc-purple-deep: #2a0f35;
    --pc-ink: #1f1f2e;
    --pc-muted: #6b7280;
    --pc-soft: #fff5f8;
    --pc-border: #f3d0dc;
    --pc-gradient: linear-gradient(135deg, #E91E63 0%, #D81B60 55%, #7B1FA2 100%);
}

* { box-sizing: border-box; }

body.pc-modern {
    font-family: 'Poppins', sans-serif;
    color: var(--pc-ink);
    background: #fff;
    margin: 0;
}

.pc-topbar {
    background: var(--pc-gradient);
    color: #fff;
    font-size: .85rem;
    padding: .55rem 0;
}

.pc-topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.pc-topbar-badge {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
}

.pc-whatsapp-pill {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    background: rgba(255,255,255,.16);
    border: 1px solid rgba(255,255,255,.25);
    color: #fff;
    text-decoration: none;
    padding: .35rem .85rem;
    border-radius: 999px;
    font-weight: 500;
}

.pc-whatsapp-pill:hover { color: #fff; background: rgba(255,255,255,.24); }

.pc-navbar {
    background: #fff;
    border-bottom: 1px solid #f1e3ea;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 8px 30px rgba(233, 30, 99, 0.06);
}

.pc-navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: .85rem 0;
}

@media (min-width: 992px) {
    .pc-nav-menu {
        flex: 1 1 auto;
        min-width: 0;
        justify-content: center;
    }
}

.pc-logo img { max-height: 58px; width: auto; }

.pc-nav-menu {
    display: flex;
    align-items: center;
    gap: .15rem;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

.pc-nav-menu li { position: relative; }

.pc-nav-menu a {
    color: var(--pc-ink);
    text-decoration: none;
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .04em;
    padding: .55rem .7rem;
    display: inline-flex;
    align-items: center;
}

.pc-nav-menu li:not(:last-child) a::after {
    content: '•';
    color: var(--pc-pink);
    margin-left: .55rem;
    font-size: .9rem;
}

.pc-nav-actions {
    display: flex;
    align-items: center;
    gap: .75rem;
    flex-shrink: 0;
    margin-left: auto;
}

.pc-icon-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--pc-ink);
    text-decoration: none;
    background: #fafafa;
    border: 1px solid #eee;
}

.pc-auth-link {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .03em;
    color: var(--pc-ink);
    text-decoration: none;
    padding: .45rem .75rem;
    border-radius: 999px;
    border: 1px solid #eee;
    background: #fafafa;
    white-space: nowrap;
    line-height: 1;
    flex-shrink: 0;
    transition: color .2s ease, border-color .2s ease, background .2s ease;
}

.pc-auth-link:hover {
    color: var(--pc-pink-dark);
    border-color: #f1c4d4;
    background: #fff5f8;
}

.pc-auth-register {
    background: var(--pc-gradient);
    color: #fff !important;
    border: none;
    box-shadow: 0 8px 18px rgba(233, 30, 99, 0.22);
}

.pc-auth-register:hover {
    color: #fff !important;
    background: var(--pc-gradient);
    filter: brightness(1.03);
}

.pc-auth-logout-form {
    display: inline;
    margin: 0;
}

.pc-auth-logout-btn {
    cursor: pointer;
    font-family: inherit;
}

.pc-nav-auth-mobile {
    border-top: 1px solid #f1e3ea;
    margin-top: .25rem;
    padding-top: .35rem;
}

.pc-nav-auth-mobile a,
.pc-mobile-logout-form button {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    width: 100%;
    padding: .75rem .35rem;
    font-size: .85rem;
    font-weight: 600;
    color: var(--pc-ink);
    text-decoration: none;
    background: transparent;
    border: none;
    text-align: left;
}

.pc-mobile-logout-form {
    margin: 0;
    width: 100%;
}

.pc-mobile-logout-form button {
    cursor: pointer;
    font-family: inherit;
}

.pc-nav-auth-mobile a:hover,
.pc-mobile-logout-form button:hover {
    color: var(--pc-pink-dark);
}

.pc-btn-primary {
    background: var(--pc-gradient);
    color: #fff !important;
    border: none;
    border-radius: 999px;
    padding: .72rem 1.25rem;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 10px 24px rgba(233, 30, 99, 0.25);
    white-space: nowrap;
}

.pc-btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 28px rgba(216, 27, 96, 0.28);
    color: #fff;
}

.pc-btn-outline {
    border: 2px solid var(--pc-pink);
    color: var(--pc-pink-dark);
    background: #fff;
    border-radius: 999px;
    padding: .65rem 1.2rem;
    font-weight: 600;
    text-decoration: none;
}

.pc-page-wrap {
    background: radial-gradient(circle at top right, rgba(233,30,99,.08), transparent 35%), #fff;
}

.pc-hero {
    padding: 4rem 0 3rem;
}

.pc-hero-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 2rem;
    align-items: center;
}

.pc-hero-badge {
    display: inline-block;
    background: #f3e5f5;
    color: #6a1b9a;
    border-radius: 999px;
    padding: .4rem .9rem;
    font-size: .82rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.pc-hero h1 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.08;
    font-weight: 700;
    letter-spacing: -.02em;
    margin-bottom: 1rem;
}

.pc-hero-lead {
    color: var(--pc-muted);
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 620px;
}

.pc-hero-tagline {
    color: var(--pc-pink);
    font-weight: 600;
    margin-top: 1rem;
}

.pc-hero-media {
    position: relative;
}

.pc-hero-media img {
    width: 100%;
    border-radius: 28px;
    box-shadow: 0 24px 60px rgba(123, 31, 162, 0.18);
    object-fit: cover;
    min-height: 360px;
}

.pc-hero-glow {
    position: absolute;
    inset: -8%;
    background: radial-gradient(circle, rgba(233,30,99,.18), transparent 70%);
    z-index: -1;
}

.pc-section { padding: 4rem 0; }
.pc-section-soft { background: var(--pc-soft); }

.pc-card {
    background: #fff;
    border: 1px solid var(--pc-border);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(233, 30, 99, 0.08);
}

.pc-topbar-purple {
    background: var(--pc-purple-dark);
    color: #fff;
    font-size: .85rem;
    padding: .6rem 0;
}

.pc-nav-dropdown { position: relative; }
.pc-nav-dropdown:hover .pc-nav-submenu,
.pc-nav-dropdown:focus-within .pc-nav-submenu { display: block; }
.pc-nav-drop-toggle { display: inline-flex; align-items: center; gap: .25rem; }
.pc-nav-submenu {
    display: none;
    position: absolute;
    top: calc(100% + .35rem);
    left: 0;
    min-width: 260px;
    list-style: none;
    margin: 0;
    padding: .5rem 0;
    background: #fff;
    border: 1px solid #f1e3ea;
    border-radius: 14px;
    box-shadow: 0 16px 40px rgba(61, 21, 75, 0.14);
    z-index: 1100;
}
.pc-nav-submenu li a {
    display: block;
    padding: .55rem 1rem;
    color: var(--pc-ink);
    font-size: .82rem;
    font-weight: 500;
    text-decoration: none;
}
.pc-nav-submenu li a:hover { background: var(--pc-soft); color: var(--pc-pink); }

.pc-footer {
    background: #3D154B;
    color: #ece7f0;
    padding-top: 3rem;
    position: relative;
}

.pc-footer-v2::before {
    content: '';
    display: block;
    height: 56px;
    margin-top: -56px;
    background: linear-gradient(to bottom, rgba(255,255,255,0), rgba(61,21,75,.22));
    pointer-events: none;
}

.pc-footer h3 {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.pc-footer a { color: #f9a8d4; text-decoration: none; }
.pc-footer a:hover { color: #fff; }

.pc-subfooter {
    background: var(--pc-purple-deep);
    border-top: 1px solid rgba(255,255,255,.08);
    margin-top: 2rem;
    padding: 1rem 0;
    font-size: .9rem;
    color: #d8c9e0;
}

.pc-floating-actions {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 1200;
    display: flex;
    flex-direction: column;
    gap: .65rem;
}

.pc-float-btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    border-radius: 999px;
    padding: .7rem 1rem;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 10px 24px rgba(0,0,0,.18);
}

.pc-float-btn.whatsapp { background: #25D366; }
.pc-float-btn.phone { background: #219900; width: 52px; height: 52px; justify-content: center; padding: 0; border-radius: 50%; }

.pc-search-panel {
    display: none;
    border-top: 1px solid #eee;
    background: #fff;
    padding: .75rem 0;
}

.pc-search-panel.active { display: block; }

.pc-search-input {
    width: 100%;
    border: 1px solid #ead6de;
    border-radius: 14px;
    padding: .75rem 1rem;
    outline: none;
}

.pc-search-input:focus {
    border-color: var(--pc-pink);
    box-shadow: 0 0 0 3px rgba(233, 30, 99, 0.12);
}

/* Vendor + form shared styles */
.pc-form-section {
    background: var(--pc-soft);
    border: 1px solid var(--pc-border);
    border-radius: 18px;
    padding: 1.25rem;
    margin-bottom: 1.5rem;
}

.pc-form-title {
    color: var(--pc-pink-dark);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.pc-input,
.pc-select,
.pc-textarea {
    width: 100%;
    border: 1px solid #ead6de;
    border-radius: 14px;
    padding: .85rem 1rem;
    background: #fff;
}

.pc-input:focus,
.pc-select:focus,
.pc-textarea:focus {
    outline: none;
    border-color: var(--pc-pink);
    box-shadow: 0 0 0 3px rgba(233, 30, 99, 0.12);
}

.pc-service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 1rem;
}

.pc-service-option input { position: absolute; opacity: 0; pointer-events: none; }

.pc-service-option label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .6rem;
    min-height: 118px;
    padding: 1rem;
    border: 2px solid #f3d0dc;
    border-radius: 16px;
    background: #fff;
    cursor: pointer;
    text-align: center;
    font-weight: 500;
}

.pc-service-option label i { color: var(--pc-pink); font-size: 1.4rem; }

.pc-service-option input:checked + label {
    border-color: var(--pc-pink);
    background: linear-gradient(180deg, #fff, #fff0f5);
    box-shadow: 0 10px 24px rgba(233, 30, 99, 0.15);
    color: var(--pc-pink-dark);
}

.pc-mobile-toggle {
    display: none;
    border: none;
    background: transparent;
    font-size: 1.4rem;
}

@media (max-width: 991px) {
    .pc-nav-menu { display: none; }
    .pc-navbar-inner {
        flex-wrap: wrap;
        position: relative;
        align-items: center;
    }
    .pc-logo {
        order: 2;
        flex: 1 1 auto;
        min-width: 0;
        text-align: center;
    }
    .pc-logo img { max-height: 46px; }
    .pc-mobile-toggle {
        order: 1;
        flex: 0 0 auto;
        z-index: 1002;
    }
    .pc-nav-actions {
        order: 3;
        flex: 0 0 auto;
        margin-left: auto;
        gap: .45rem;
        flex-wrap: nowrap;
    }
    .pc-auth-link {
        padding: .38rem .55rem;
        font-size: .7rem;
    }
    .pc-nav-menu.open {
        display: flex;
        flex-direction: column;
        order: 5;
        flex: 0 0 100%;
        width: 100%;
        margin-top: .35rem;
        padding: .5rem 0 .75rem;
        border-top: 1px solid #f1e3ea;
        background: #fff;
        box-shadow: 0 14px 28px rgba(61, 21, 75, 0.08);
        max-height: min(70vh, 520px);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        z-index: 1001;
    }
    .pc-nav-menu.open li { width: 100%; }
    .pc-nav-menu.open a {
        width: 100%;
        padding: .75rem .35rem;
        font-size: .85rem;
    }
    .pc-nav-menu li:not(:last-child) a::after { display: none; }
    .pc-mobile-toggle { display: inline-flex; align-items: center; justify-content: center; }
    .pc-mobile-toggle.is-active { color: var(--pc-pink-dark); }
    .pc-hero-grid { grid-template-columns: 1fr; }
    .pc-btn-primary span.full { display: none; }
    .pc-page-wrap { padding-left: 0; padding-right: 0; }
    .pc-section .container,
    .pc-footer .container,
    .pc-navbar .container,
    .pc-topbar .container { padding-left: 16px; padding-right: 16px; }
    .pc-hero { padding-top: 2rem; padding-bottom: 2rem; }
    .pc-navbar-inner { gap: .5rem; }
    .pc-search-panel {
        order: 4;
        flex: 0 0 100%;
        width: 100%;
        margin: 0;
        padding-left: 0;
        padding-right: 0;
        position: relative;
        z-index: 1003;
    }
    .pc-search-panel.active {
        display: block;
        border-top: 1px solid #f1e3ea;
        background: #fff;
    }
    .pc-search-input { font-size: 16px; }
    body.pc-nav-open { overflow: hidden; }
}

.pc-product-card {
    background: #fff;
    border: 1px solid #f3d0dc;
    border-radius: 18px;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 10px 24px rgba(233, 30, 99, 0.08);
}

.pc-product-image { display: block; aspect-ratio: 1 / 1; overflow: hidden; }
.pc-product-image img { width: 100%; height: 100%; object-fit: cover; }
.pc-product-body { padding: 1rem; }
.pc-product-body h3 { font-size: 1rem; margin-bottom: .75rem; }
.pc-product-body h3 a { color: #222; text-decoration: none; }
.pc-product-price { margin-bottom: .85rem; }
.pc-product-price span { color: var(--pc-pink-dark); font-weight: 700; font-size: 1.05rem; }
.pc-product-price s { color: #999; margin-left: .35rem; font-size: .9rem; }

/* Shop product card — three actions */
.pc-shop-card__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .5rem;
    margin-top: .25rem;
}

.pc-shop-card__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .35rem;
    width: 100%;
    padding: .55rem .75rem;
    border-radius: 999px;
    font-size: .82rem;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    line-height: 1.2;
    cursor: pointer;
    transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
    border: none;
    font-family: inherit;
}

.pc-shop-card__btn--cart {
    grid-column: 1 / -1;
    background: var(--pc-gradient);
    color: #fff !important;
    box-shadow: 0 8px 20px rgba(233, 30, 99, 0.22);
}

.pc-shop-card__btn--cart:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 26px rgba(216, 27, 96, 0.28);
    color: #fff !important;
}

.pc-shop-card__btn--inquire {
    border: 2px solid #25D366;
    color: #128C7E;
    background: #fff;
}

.pc-shop-card__btn--inquire:hover {
    background: #f0fdf4;
    color: #128C7E;
}

.pc-shop-card__btn--details {
    border: 2px solid var(--pc-pink);
    color: var(--pc-pink-dark);
    background: #fff;
}

.pc-shop-card__btn--details:hover {
    background: #fff5f8;
    color: var(--pc-pink-dark);
}

.pc-shop-card__cart-feedback {
    margin-top: .45rem;
    font-size: .78rem;
    line-height: 1.35;
}

.pc-shop-card__cart-feedback .badge,
.pc-shop-card__cart-feedback span {
    display: block;
    width: 100%;
    padding: .4rem .6rem;
    border-radius: 10px;
    border: 1px solid #badbcc;
    background: #d1e7dd;
    color: #0f5132;
    font-size: .78rem;
}

@media (max-width: 575px) {
    .pc-shop-card__actions {
        grid-template-columns: 1fr;
    }

    .pc-shop-card__btn--cart {
        grid-column: auto;
    }
}

.pc-search-suggestions { display: grid; gap: .35rem; }
.pc-search-suggestion-item {
    display: flex;
    justify-content: space-between;
    gap: .75rem;
    padding: .55rem .7rem;
    border-radius: 10px;
    background: #fff5f8;
    color: #333;
    text-decoration: none;
}
.pc-search-suggestion-item strong { color: var(--pc-pink-dark); white-space: nowrap; }

body.pc-modern,
.pc-modern #wrapper,
.pc-modern main { overflow-x: hidden; max-width: 100%; }

.pc-whatsapp-inquiry-btn {
    display: flex;
    align-items: center;
    gap: .85rem;
    width: 100%;
    margin: 1rem 0 1.25rem;
    padding: .95rem 1.15rem;
    border-radius: 16px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #fff !important;
    text-decoration: none !important;
    box-shadow: 0 12px 28px rgba(37, 211, 102, 0.28);
    transition: transform .2s ease, box-shadow .2s ease;
}

.pc-whatsapp-inquiry-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 32px rgba(37, 211, 102, 0.34);
    color: #fff !important;
}

.pc-whatsapp-inquiry-btn i {
    font-size: 1.65rem;
}

.pc-whatsapp-inquiry-btn span {
    font-weight: 700;
    font-size: 1.05rem;
    line-height: 1.2;
}

.pc-whatsapp-inquiry-btn small {
    display: block;
    opacity: .92;
    font-size: .78rem;
    font-weight: 500;
}

@media (max-width: 575px) {
    .pc-service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .pc-card .p-4, .pc-card .p-md-5 { padding: 1.25rem !important; }
}

/* Homepage v2 layout */
.pc-navbar-clean { box-shadow: 0 4px 18px rgba(0,0,0,.04); }
.pc-header-whatsapp {
    background: #25D366;
    color: #fff !important;
    text-decoration: none;
    border-radius: 999px;
    padding: .55rem 1rem;
    font-weight: 600;
    font-size: .85rem;
    gap: .45rem;
    align-items: center;
}
.pc-header-whatsapp:hover { color: #fff; background: #1da851; }

.pc-home-hero { padding: 3rem 0 1.5rem; background: #fff; }
.pc-home-hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 2rem; align-items: center; }
.pc-home-badge {
    display: inline-block;
    background: #fff0f5;
    color: var(--pc-pink-dark);
    border: 1px solid #f8bbd0;
    border-radius: 999px;
    padding: .35rem .85rem;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .06em;
    margin-bottom: 1rem;
}
.pc-home-hero h1 { font-size: clamp(1.9rem, 4vw, 3rem); line-height: 1.15; font-weight: 700; margin-bottom: 1.25rem; }
.pc-hero-subline { font-size: 1rem; color: #555; max-width: 36rem; margin-bottom: 1rem; line-height: 1.55; }
.pc-text-pink { color: var(--pc-pink); }
.pc-home-bullets { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: .65rem 1rem; }
.pc-home-bullet { display: flex; align-items: center; gap: .5rem; font-size: .92rem; }
.pc-home-bullet i { color: var(--pc-pink); }
.pc-btn-whatsapp-outline {
    border: 2px solid #25D366;
    color: #128C7E;
    background: #fff;
    border-radius: 999px;
    padding: .65rem 1.2rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: .45rem;
}
.pc-home-hero-image img { width: 100%; border-radius: 24px; box-shadow: 0 20px 50px rgba(233,30,99,.15); object-fit: cover; min-height: 320px; }
.pc-home-stats {
    margin-top: 1.5rem;
    background: #fff;
    border: 1px solid #f3d0dc;
    border-radius: 18px;
    display: grid;
    grid-template-columns: repeat(5, minmax(0,1fr));
    gap: .5rem;
    padding: 1rem;
    box-shadow: 0 10px 30px rgba(233,30,99,.06);
}
.pc-home-stat { text-align: center; font-size: .78rem; font-weight: 600; color: #444; }
.pc-home-stat i { display: block; color: var(--pc-pink); font-size: 1.2rem; margin-bottom: .35rem; }

.pc-section-title { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 700; margin-bottom: 2rem; }
.pc-popular-card, .pc-trust-card, .pc-package-card, .pc-testimonial-card {
    background: #fff;
    border: 1px solid #f3d0dc;
    border-radius: 18px;
    padding: 1.25rem;
    height: 100%;
    text-align: center;
    box-shadow: 0 8px 24px rgba(233,30,99,.06);
}

.pc-luxury-card {
    position: relative;
    overflow: hidden;
    transition: transform .35s cubic-bezier(.34, 1.56, .64, 1), box-shadow .35s ease;
    will-change: transform;
}

.pc-luxury-card.has-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: var(--pc-card-bg);
    background-size: cover;
    background-position: center;
    opacity: .14;
    z-index: 0;
    pointer-events: none;
}

.pc-luxury-card > * { position: relative; z-index: 1; }

@media (hover: hover) and (pointer: fine) {
    .pc-luxury-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 18px 40px rgba(233, 30, 99, .18);
    }
}

.pc-luxury-card.is-touch-active {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(233, 30, 99, .18);
}

.pc-img-square, .pc-img-card, .pc-img-banner { object-fit: cover; width: 100%; }
.pc-img-square { aspect-ratio: 1 / 1; }
.pc-img-card { aspect-ratio: 4 / 3; }
.pc-img-banner { aspect-ratio: 16 / 9; }
.pc-popular-icon, .pc-trust-icon {
    width: 72px; height: 72px; margin: 0 auto 1rem;
    border-radius: 50%; background: #fff5f8; color: var(--pc-pink);
    display: flex; align-items: center; justify-content: center; font-size: 1.6rem;
}
.pc-popular-card h3, .pc-trust-card h3 { font-size: 1rem; margin-bottom: .5rem; }
.pc-popular-card p { color: var(--pc-muted); margin-bottom: 1rem; }
.pc-btn-sm { padding: .55rem 1rem; font-size: .85rem; }

.pc-gallery-track, .pc-testimonial-track {
    display: flex; gap: 1rem; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: .5rem;
}
.pc-gallery-item, .pc-testimonial-card { flex: 0 0 240px; scroll-snap-align: start; }
.pc-gallery-item img { width: 240px; height: 240px; object-fit: cover; border-radius: 16px; }

.pc-package-card { position: relative; text-align: left; }
.pc-package-card.is-popular { border-color: var(--pc-pink); box-shadow: 0 16px 36px rgba(233,30,99,.15); }
.pc-package-badge {
    position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
    background: var(--pc-pink); color: #fff; font-size: .7rem; font-weight: 700;
    padding: .25rem .75rem; border-radius: 999px;
}
.pc-package-price { font-size: 2rem; font-weight: 700; color: var(--pc-pink-dark); margin: .75rem 0 1rem; }
.pc-package-card ul { list-style: none; padding: 0; margin: 0 0 1.25rem; text-align: left; }
.pc-package-card li { margin-bottom: .45rem; font-size: .9rem; }
.pc-package-card li i { color: #25D366; margin-right: .35rem; }

.pc-testimonial-card { text-align: left; min-width: 280px; }
.pc-testimonial-stars { color: #ffb400; margin-bottom: .75rem; }
.pc-testimonial-card p { font-size: .92rem; line-height: 1.6; margin-bottom: .75rem; }
.pc-testimonial-card small { color: var(--pc-muted); }

.pc-quote-band { background: var(--pc-gradient); color: #fff; padding: 3rem 0; }
.pc-quote-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 2rem; align-items: center; }
.pc-quote-form .pc-input, .pc-quote-form .pc-textarea { border: none; }
.pc-btn-quote {
    background: #FFC107; color: #1f1f2e; border: none; border-radius: 999px;
    padding: .85rem 1.5rem; font-weight: 700; width: 100%;
}

.pc-seo-block { background: #fafafa; padding: 2.5rem 0; border-top: 1px solid #eee; }
.pc-seo-block h2 { font-size: 1.35rem; margin-bottom: .75rem; }
.pc-seo-block p { color: #555; line-height: 1.7; margin-bottom: 1rem; }
.pc-seo-tags { display: flex; flex-wrap: wrap; gap: .5rem; }
.pc-seo-tags span,
a.pc-seo-tag-link {
    background: #fff; border: 1px solid #e5e7eb; border-radius: 999px;
    padding: .35rem .75rem; font-size: .78rem; color: #666;
    text-decoration: none; display: inline-block;
}
a.pc-seo-tag-link:hover { border-color: var(--pc-pink, #ec4899); color: var(--pc-pink, #ec4899); }

.pc-breadcrumbs { font-size: .85rem; }
.pc-breadcrumb-list {
    display: flex; flex-wrap: wrap; gap: .35rem; list-style: none; padding: 0; margin: 0 0 1rem;
}
.pc-breadcrumb-item { color: #888; }
.pc-breadcrumb-item:not(.is-active)::after { content: '/'; margin-left: .35rem; color: #ccc; }
.pc-breadcrumb-item a { color: #666; text-decoration: none; }
.pc-breadcrumb-item a:hover { color: var(--pc-pink, #ec4899); }
.pc-breadcrumb-item.is-active span { color: #333; font-weight: 500; }

.pc-list-check { padding-left: 1.25rem; line-height: 1.8; }
.pc-list-check li { margin-bottom: .35rem; }

.pc-footer-v2 .pc-footer-brand {
    padding: 0;
}
.pc-footer-v2 .pc-footer-brand .pc-footer-desc {
    color: rgba(236, 232, 240, 0.88);
    max-width: 300px;
    margin-bottom: 1.1rem;
    font-size: 0.875rem;
    line-height: 1.65;
    font-weight: 400;
}
.pc-footer-v2 .pc-footer-brand .pc-footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-top: 0.25rem;
}
.pc-footer-v2 .pc-footer-brand .pc-footer-social a {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    transition: background 0.2s, color 0.2s;
}
.pc-footer-v2 .pc-footer-brand .pc-footer-social a:hover {
    background: rgba(249, 168, 212, 0.28);
    color: #fff;
}
.pc-footer-v2 .pc-footer-logo {
    max-height: 52px;
    display: block;
    width: auto;
    margin-bottom: 1rem;
}
.pc-footer-desc { font-size: .9rem; line-height: 1.6; color: #cbd5e1; }
.pc-footer ::selection,
.pc-footer ::-moz-selection {
    background: rgba(249, 168, 212, 0.35);
    color: #fff;
}
.pc-footer-v2 .row > [class*="col-"] { padding-top: 0; }
.pc-footer-v2 h3 { letter-spacing: 0.02em; }
.pc-footer-links li, .pc-footer-contact li { margin-bottom: .45rem; font-size: .9rem; }
.pc-footer-contact i { width: 18px; color: #f9a8d4; }
.pc-footer-social a {
    width: 34px; height: 34px; border-radius: 50%; background: rgba(255,255,255,.08);
    display: inline-flex; align-items: center; justify-content: center; color: #fff;
}

.pc-footer-trust {
    display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem;
    margin-top: 1.5rem; padding-top: 1.25rem; border-top: 1px solid rgba(255,255,255,.1);
}
.pc-footer-trust-item {
    display: inline-flex; align-items: center; gap: .45rem;
    background: rgba(255,255,255,.08); border-radius: 999px; padding: .45rem .9rem; font-size: .82rem;
}
.pc-payment-icons { display: flex; flex-wrap: wrap; justify-content: center; gap: .5rem; }
.pc-pay-badge {
    display: inline-flex; align-items: center; gap: .35rem;
    background: rgba(255,255,255,.1); color: #fff; border-radius: 999px;
    padding: .35rem .75rem; font-size: .78rem; font-weight: 600;
}

.pc-page-hero-shop {
    background: linear-gradient(135deg, rgba(61,21,75,.08) 0%, rgba(233,30,99,.08) 100%);
    padding: 3rem 0 2rem;
}
.pc-page-hero-shop h1 { font-size: clamp(1.8rem, 3vw, 2.5rem); margin: .75rem 0; }
.pc-page-hero-shop p { color: var(--pc-muted); max-width: 760px; }

.pc-shop-category-card {
    display: block; height: 100%; background: #fff; border: 1px solid var(--pc-border);
    border-radius: 20px; padding: 1.5rem; text-decoration: none; color: inherit;
    box-shadow: 0 12px 30px rgba(61, 21, 75, 0.06); transition: transform .2s, box-shadow .2s;
}
.pc-shop-category-card:hover { transform: translateY(-4px); box-shadow: 0 18px 36px rgba(233,30,99,.12); color: inherit; }
.pc-shop-category-icon {
    width: 52px; height: 52px; border-radius: 14px; background: var(--pc-soft);
    display: inline-flex; align-items: center; justify-content: center; color: var(--pc-pink); font-size: 1.25rem; margin-bottom: .85rem;
}
.pc-shop-category-card h3 { font-size: 1rem; margin-bottom: .5rem; }
.pc-shop-category-card p { font-size: .86rem; color: var(--pc-muted); line-height: 1.55; min-height: 68px; }
.pc-shop-category-link { color: var(--pc-pink); font-weight: 600; font-size: .86rem; }
.pc-shop-chip {
    display: flex; align-items: center; gap: .55rem; justify-content: center;
    background: #fff; border: 1px solid var(--pc-border); border-radius: 999px;
    padding: .75rem 1rem; text-decoration: none; color: var(--pc-ink); font-size: .82rem; font-weight: 600;
}
.pc-shop-chip.is-active, .pc-shop-chip:hover { background: var(--pc-purple-dark); border-color: var(--pc-purple-dark); color: #fff; }
.pc-shop-empty {
    text-align: center; background: #fff; border: 1px dashed var(--pc-border); border-radius: 20px; padding: 2.5rem 1.5rem;
}
.pc-shop-empty i { font-size: 2rem; color: var(--pc-pink); margin-bottom: .75rem; }
.pc-btn-sm { padding: .55rem 1rem; font-size: .82rem; }

@media (max-width: 991px) {
    .pc-home-hero-grid, .pc-quote-grid { grid-template-columns: 1fr; }
    .pc-home-stats { grid-template-columns: repeat(2, minmax(0,1fr)); }
    .pc-header-whatsapp { display: none !important; }
    .pc-nav-submenu {
        position: static; display: none; box-shadow: none; border: none; padding-left: .75rem; background: transparent;
    }
    .pc-nav-dropdown.is-open .pc-nav-submenu { display: block; }
}
@media (max-width: 575px) {
    .pc-home-bullets { grid-template-columns: 1fr; }
    .pc-home-stats { grid-template-columns: 1fr; }
    .pc-nav-actions {
        gap: .3rem;
    }
    .pc-nav-actions .pc-auth-link {
        padding: .32rem .45rem;
        font-size: .64rem;
    }
    .pc-nav-actions .pc-auth-link .fa {
        display: none;
    }
}

/* Careers Portal */
.pc-hero-careers {
    background: linear-gradient(135deg, #fff5f8 0%, #fce4ec 100%);
    padding: 4rem 0 3rem;
}
.pc-hero-label {
    display: inline-block;
    background: var(--pc-pink);
    color: #fff;
    font-size: .75rem;
    font-weight: 600;
    padding: .35rem .85rem;
    border-radius: 50px;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: .5px;
}
.pc-hero-title { font-size: 2.25rem; font-weight: 700; color: var(--pc-dark); margin-bottom: 1rem; }
.pc-hero-subtitle { font-size: 1.05rem; color: #666; max-width: 540px; }
.pc-careers-hero-icon {
    width: 140px; height: 140px; border-radius: 50%;
    background: linear-gradient(135deg, var(--pc-pink), #D81B60);
    display: inline-flex; align-items: center; justify-content: center;
    color: #fff; font-size: 3.5rem;
}
.pc-section-alt { background: #fafafa; }
.pc-section-sm { padding-top: 2rem; padding-bottom: 1rem; }
.pc-section-title { font-size: 1.75rem; font-weight: 700; color: var(--pc-dark); }
.pc-job-card {
    background: #fff; border: 1px solid var(--pc-border); border-radius: 16px;
    padding: 1.5rem; height: 100%; display: flex; flex-direction: column;
    transition: box-shadow .2s, transform .2s;
}
.pc-job-card:hover { box-shadow: 0 8px 24px rgba(233,30,99,.12); transform: translateY(-2px); }
.pc-job-card-header { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: .75rem; }
.pc-job-badge {
    display: inline-block; font-size: .7rem; font-weight: 600;
    padding: .25rem .65rem; border-radius: 50px;
    background: #f3f4f6; color: #555;
}
.pc-job-badge-featured { background: var(--pc-pink); color: #fff; }
.pc-job-title { font-size: 1.1rem; font-weight: 700; margin-bottom: .75rem; }
.pc-job-title a { color: var(--pc-dark); text-decoration: none; }
.pc-job-title a:hover { color: var(--pc-pink); }
.pc-job-meta { list-style: none; padding: 0; margin: 0 0 1rem; font-size: .85rem; color: #666; }
.pc-job-meta li { margin-bottom: .35rem; }
.pc-job-meta i { width: 18px; color: var(--pc-pink); margin-right: .35rem; }
.pc-job-salary { font-size: .9rem; font-weight: 600; color: var(--pc-dark); margin-bottom: 1rem; }
.pc-job-actions { margin-top: auto; display: flex; gap: .5rem; flex-wrap: wrap; }
.pc-careers-cat-link {
    display: block; text-align: center; padding: .85rem 1rem;
    background: #fff; border: 1px solid var(--pc-border); border-radius: 12px;
    color: var(--pc-dark); font-weight: 600; font-size: .9rem; text-decoration: none;
    transition: all .2s;
}
.pc-careers-cat-link:hover { background: var(--pc-pink); color: #fff; border-color: var(--pc-pink); }
.pc-job-filters { position: sticky; top: 100px; }
.pc-job-content h2 { margin-top: 1.5rem; }
.pc-job-sidebar { border-left: 4px solid var(--pc-pink); }
.pc-careers-success-icon { font-size: 4rem; color: #28a745; }
.pc-breadcrumb { background: transparent; padding: 0; font-size: .85rem; }
.pc-breadcrumb a { color: var(--pc-pink); text-decoration: none; }
