/* ============================================================
   Purple Gold POS - custom site styles (loaded after style.css)
   ============================================================ */

/* ---------- generic helpers ---------- */
.text-gold { color: #EEA83D !important; }
.bg-purple { background: #672B69 !important; }
.rounded-12 { border-radius: 12px; overflow: hidden; }
img.img-shadow { box-shadow: 0 20px 40px rgba(30, 10, 35, .18); border-radius: 10px; }

/* checkmark feature lists */
ul.pg-check {
    list-style: none;
    margin: 0;
    padding: 0;
}
ul.pg-check li {
    position: relative;
    padding: 6px 0 6px 32px;
    font-size: 15px;
    line-height: 1.6;
}
ul.pg-check li:before {
    font-family: "FontAwesome";
    content: "\f00c";
    position: absolute;
    left: 0;
    top: 6px;
    color: #EEA83D;
    font-weight: bold;
}
.text-light ul.pg-check li:before { color: #F7C763; }

/* ---------- hero ---------- */
.pg-hero {
    /* header is position:absolute and floats over the page (~150px tall
       with topbar) - hero padding must clear it plus breathing room */
    padding: 200px 0 60px 0;
    background: linear-gradient(180deg, #faf5fb 0%, #ffffff 100%);
    overflow: hidden;
}
.pg-hero h1 {
    font-size: 52px;
    line-height: 1.1;
    margin-bottom: 20px;
}
.pg-hero h1 span { color: #672B69; }
.pg-hero .lead { font-size: 18px; }
.pg-hero .hero-badge {
    display: inline-block;
    background: rgba(103, 43, 105, .08);
    color: #672B69;
    border: 1px solid rgba(103, 43, 105, .25);
    border-radius: 30px;
    padding: 6px 18px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 24px;
}
@media only screen and (max-width: 992px) {
    .pg-hero h1 { font-size: 38px; }
    .pg-hero { padding-top: 120px; } /* mobile header overlay is ~100px */
}

/* mobile: side-by-side CTA buttons wrap mid-text - stack them full width */
@media only screen and (max-width: 767px) {
    #content a.btn-custom,
    #content button.btn-custom {
        display: block;
        width: 100%;
        margin: 0 0 12px 0;
        text-align: center;
    }
}

/* ---------- industry tiles ---------- */
.pg-industry {
    text-align: center;
    background: #fff;
    border: 1px solid #eee3ef;
    border-radius: 10px;
    padding: 30px 15px;
    margin-bottom: 30px;
    transition: all .3s ease;
}
.pg-industry i {
    font-size: 36px;
    color: #672B69;
    margin-bottom: 14px;
    display: block;
    transition: all .3s ease;
}
.pg-industry h4 { margin-bottom: 4px; font-size: 16px; }
.pg-industry p { font-size: 13px; margin: 0; color: #888; }
.pg-industry:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 30px rgba(103, 43, 105, .15);
    border-color: #EEA83D;
}
.pg-industry:hover i { color: #EEA83D; }

/* ---------- product cards (shop) ---------- */
.pg-product {
    background: #fff;
    border: 1px solid #eee3ef;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    height: calc(100% - 30px);
    transition: all .3s ease;
}
.pg-product:hover {
    box-shadow: 0 18px 40px rgba(103, 43, 105, .16);
    transform: translateY(-4px);
}
.pg-product .pp-img {
    position: relative;
    background: #fff;
    height: 230px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #f3ecf4;
}
.pg-product .pp-img img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    padding: 12px;
}
.pg-product .pp-cat {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #672B69;
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 20px;
}
.pg-product .pp-featured {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #EEA83D;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
}
.pg-product .pp-body {
    padding: 22px 22px 24px 22px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.pg-product .pp-body h3 { font-size: 19px; margin-bottom: 8px; }
.pg-product .pp-body p.desc { font-size: 14px; color: #777; flex-grow: 1; }
.pg-product .pp-price {
    font-size: 26px;
    font-weight: 700;
    color: #672B69;
    margin-bottom: 14px;
}
.pg-product .pp-price small { font-size: 13px; color: #999; font-weight: 400; }
.pg-product .btn-custom { width: 100%; text-align: center; }
.pg-product .sold-out {
    display: block;
    text-align: center;
    background: #f2f2f2;
    color: #999;
    border-radius: 4px;
    padding: 8px 0;
    font-weight: 600;
}

/* shop category filter */
.pg-filter { text-align: center; margin-bottom: 40px; }
.pg-filter a {
    display: inline-block;
    padding: 8px 22px;
    margin: 4px;
    border-radius: 30px;
    border: 1px solid #e5d5e6;
    color: #672B69;
    font-weight: 600;
    font-size: 14px;
    transition: all .25s ease;
}
.pg-filter a:hover,
.pg-filter a.active {
    background: linear-gradient(to right, #672B69, #9C4098);
    border-color: #672B69;
    color: #fff;
}

/* ---------- topbar cart ---------- */
.snipcart-items-count:not(:empty) {
    display: inline-block;
    background: #EEA83D;
    color: #fff;
    min-width: 18px;
    height: 18px;
    line-height: 18px;
    border-radius: 9px;
    font-size: 11px;
    text-align: center;
    margin-left: 5px;
    padding: 0 4px;
}

/* ---------- pricing extras ---------- */
.table-pricing .fa-check { color: #4caf50; }
.table-pricing .fa-times { color: #d9534f; }

/* ---------- package comparison ---------- */
.pg-compare-section {
    padding-top: 88px;
    padding-bottom: 92px;
    scroll-margin-top: 120px;
}
.pg-compare-section h2 { margin-bottom: 8px; }
.pg-compare-intro {
    margin: 0 0 32px;
    color: #756c79;
    font-size: 17px;
}
.pg-compare-table-wrap {
    overflow: hidden;
    border: 1px solid rgba(103, 43, 105, .1);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 18px 48px rgba(65, 30, 67, .1);
}
.pg-compare-table-wrap .table-pricing {
    margin: 0;
    table-layout: fixed;
    border-collapse: collapse;
    border-radius: 0;
    background: #fff;
    background-image: none;
    font-size: 15px;
}
.pg-compare-table-wrap .table-pricing thead tr {
    background: linear-gradient(90deg, #672B69, #A75E67 55%, #F3AA27);
}
.pg-compare-table-wrap .table-pricing thead th {
    padding: 20px 16px;
    border: 0;
    line-height: 1.3;
    vertical-align: middle;
}
.pg-compare-table-wrap .table-pricing thead th:first-child,
.pg-compare-table-wrap .table-pricing tbody th { width: 37%; }
.pg-compare-table-wrap .table-pricing tbody tr {
    background: #fff;
    border-top: 1px solid #eee8ef;
}
.pg-compare-table-wrap .table-pricing tbody tr:nth-child(even) { background: #fbf8fb; }
.pg-compare-table-wrap .table-pricing tbody tr:hover { background: #f6eff7; }
.pg-compare-table-wrap .table-pricing tbody th,
.pg-compare-table-wrap .table-pricing tbody td {
    padding: 19px 16px;
    border: 0;
    line-height: 1.4;
    vertical-align: middle;
}
.pg-compare-table-wrap .table-pricing tbody th {
    color: #342d36;
    font-weight: 650;
}
.pg-compare-table-wrap .table-pricing .fa-check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 27px;
    height: 27px;
    border-radius: 50%;
    color: #fff;
    background: #54ad63;
    font-size: 12px;
}
.pg-mobile-package-compare { display: none; }

/* ---------- page header (subheader) ---------- */
.pg-subheader { padding: 120px 0 70px 0; }
.pg-subheader h1 { margin-bottom: 5px; }
.pg-subheader .lead { margin-bottom: 0; }

/* ---------- header fixes ---------- */
/* solid readable nav over purple hero images (nav style is solid, this is a safety net
   in case the template's transparent mode is ever re-enabled) */
body:not(.side-layout) header:not(.smaller):not(.header-mobile).header-light.transparent {
    background: #fff;
}
header.header-light:not(.smaller) {
    border-bottom: 1px solid rgba(103, 43, 105, .08);
}
/* mobile: hide the header CTA button - it wraps over the menu button;
   phone + cart stay in the topbar and Contact is in the menu */
header.header-mobile .col-right { display: none; }
header.header-mobile .pg-portal-link { display: none; }

.pg-mobile-only { display: none; }
#mainmenu li.pg-mobile-demo { display: none; }
#mainmenu li.pg-mobile-login { display: none; }
.pg-brand-link {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    height: 70px;
    text-decoration: none !important;
}
.pg-brand-copy {
    display: none;
    flex-direction: column;
    line-height: 1.05;
    text-align: left;
}
.pg-brand-copy strong {
    color: #451a4b;
    font-size: 16px;
    letter-spacing: .01em;
}
.pg-brand-copy small {
    margin-top: 5px;
    color: #7b6f7e;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: .025em;
}

@media only screen and (min-width: 993px) {
    header.header-light {
        background: rgba(255, 255, 255, .96);
        box-shadow: 0 8px 30px rgba(65, 27, 68, .07);
        backdrop-filter: blur(14px);
    }
    header:not(.header-mobile) .header-row {
        display: flex;
        align-items: center;
        min-height: 68px;
        text-align: left;
    }
    header:not(.header-mobile) .header-col.left {
        display: flex;
        align-items: center;
        flex: 0 0 auto;
        float: none;
        padding: 0 20px 0 0;
    }
    header:not(.header-mobile) .header-col.mid {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        flex: 1 1 auto;
        min-width: 0;
        float: none;
    }
    header div#logo { height: 68px; padding-top: 0; line-height: 1; }
    header:not(.header-mobile) .pg-brand-link { height: 68px; }
    header:not(.header-mobile) #mainmenu {
        display: flex;
        align-items: center;
        flex: 0 1 auto;
        margin: 0;
        white-space: nowrap;
    }
    header:not(.header-mobile) #mainmenu > li > a {
        margin: 0 1px;
        padding: 9px 9px;
        line-height: 22px;
        border-radius: 9px;
        transition: color .2s ease, background-color .2s ease, transform .2s ease;
    }
    header:not(.header-mobile) #mainmenu > li > a:hover {
        color: #672B69;
        background: #fff7e9;
        transform: translateY(-1px);
    }
    header:not(.header-mobile) #mainmenu > li > a.active {
        color: #672B69;
        background: #f3eaf4;
        font-weight: 700;
    }
    header:not(.header-mobile) .col-right {
        flex: 0 0 auto;
        float: none;
        margin: 0 0 0 10px;
    }
    header:not(.header-mobile) .col-right .btn-custom { border-radius: 10px; }
}

@media only screen and (min-width: 993px) and (max-width: 1199px) {
    header:not(.header-mobile) .pg-brand-copy { display: none; }
    header:not(.header-mobile) .header-col.left { padding-right: 12px; }
    header:not(.header-mobile) #mainmenu > li > a {
        padding-right: 7px;
        padding-left: 7px;
        font-size: 13px;
    }
    header:not(.header-mobile) .col-right .btn-custom { padding-right: 14px; padding-left: 14px; }
}

@media only screen and (min-width: 1200px) {
    .pg-brand-copy { display: flex; }
}

/* keep the menu "Sale" badge chip-sized on the active page
   (style.css stretches a.active span to 100% width) */
#mainmenu a.active span {
    width: auto;
    margin-left: 10px;
}

/* ---------- perks strip (shop) ---------- */
.pg-perks [class*="col-"] {
    padding-top: 20px;
    padding-bottom: 20px;
}
.pg-perks i {
    display: block;
    margin: 0 auto 15px auto;
}
/* gold links vanish on the gold end of the gradient - keep them white */
.pg-perks a,
.pg-perks a.text-gold {
    color: #fff !important;
    text-decoration: underline;
}

/* ---------- logo ---------- */
#logo img.logo,
#logo img.logo-2 { height: 52px; width: auto; }
footer img.logo { height: 64px; width: auto; }

/* ---------- misc ---------- */
.pg-step-num {
    display: inline-block;
    width: 46px;
    height: 46px;
    line-height: 46px;
    text-align: center;
    border-radius: 50%;
    background: linear-gradient(to right, #672B69, #9C4098);
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}
footer .social-icons a:hover i { color: #EEA83D; }

/* ============================================================
   Friendly refresh: softer surfaces, organic spacing and motion
   ============================================================ */
:root {
    --pg-purple: #672B69;
    --pg-purple-dark: #451a4b;
    --pg-purple-soft: #f3eaf4;
    --pg-gold: #EEA83D;
    --pg-cream: #fffaf2;
    --pg-ink: #2d2330;
    --pg-muted: #716875;
    --pg-shadow: 0 20px 55px rgba(71, 30, 75, .12);
}

body {
    color: var(--pg-ink);
    background: #fffdfb;
}

#content section { position: relative; }
#content p { color: var(--pg-muted); }
#content .text-light p,
#content .text-light li { color: rgba(255, 255, 255, .9); }

h1, h2, h3, h4 { letter-spacing: -.02em; }
h2 { line-height: 1.18; }

.btn-custom,
a.btn-custom {
    border-radius: 12px;
    padding-left: 25px;
    padding-right: 25px;
    box-shadow: 0 10px 24px rgba(103, 43, 105, .18);
    transition: transform .25s ease, box-shadow .25s ease, background-color .25s ease;
}
.btn-custom:hover,
a.btn-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(103, 43, 105, .24);
}

/* Hero */
.pg-hero {
    min-height: 780px;
    display: flex;
    align-items: center;
    padding: 190px 0 95px;
    background:
        radial-gradient(circle at 5% 30%, rgba(238, 168, 61, .16), transparent 28%),
        radial-gradient(circle at 92% 12%, rgba(103, 43, 105, .13), transparent 30%),
        linear-gradient(155deg, #fffaf2 0%, #fbf5fc 55%, #ffffff 100%);
}
.pg-hero:after {
    content: "";
    position: absolute;
    width: 160px;
    height: 160px;
    right: -70px;
    bottom: 35px;
    border-radius: 44% 56% 63% 37%;
    background: rgba(238, 168, 61, .14);
    transform: rotate(24deg);
}
.pg-hero h1 { max-width: 660px; font-size: 58px; }
.pg-hero h1 span {
    color: var(--pg-purple);
    position: relative;
    z-index: 1;
}
.pg-hero h1 span:after {
    content: "";
    position: absolute;
    left: 0;
    right: 6%;
    bottom: 4px;
    height: 11px;
    z-index: -1;
    border-radius: 50%;
    background: rgba(238, 168, 61, .32);
    transform: rotate(-1deg);
}
.pg-hero .lead { max-width: 610px; font-size: 20px; line-height: 1.65; }
.pg-hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
    margin-bottom: 28px;
}
.pg-hero-actions .btn-custom { margin: 0; }
.pg-hero .hero-badge {
    background: rgba(255, 255, 255, .75);
    box-shadow: 0 8px 24px rgba(103, 43, 105, .08);
    backdrop-filter: blur(8px);
}
.pg-hero-visual {
    position: relative;
    padding: 44px 18px;
    isolation: isolate;
    transition: transform .25s ease-out;
}
.pg-hero-visual > img {
    position: relative;
    z-index: 2;
    border-radius: 38% 62% 45% 55% / 54% 42% 58% 46%;
    filter: drop-shadow(0 28px 30px rgba(57, 26, 60, .2));
}
.pg-orbit {
    position: absolute;
    display: block;
    border-radius: 50%;
    z-index: 1;
}
.pg-orbit-one {
    width: 88%;
    height: 88%;
    top: 5%;
    left: 8%;
    background: linear-gradient(135deg, rgba(103, 43, 105, .12), rgba(238, 168, 61, .22));
    animation: pg-blob 10s ease-in-out infinite alternate;
}
.pg-orbit-two {
    width: 110px;
    height: 110px;
    right: 0;
    top: 5px;
    border: 18px solid rgba(103, 43, 105, .1);
}
.pg-float-note {
    position: absolute;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 999px;
    color: var(--pg-purple-dark);
    background: rgba(255, 255, 255, .94);
    box-shadow: var(--pg-shadow);
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
    animation: pg-float 4.6s ease-in-out infinite;
}
.pg-float-note i { color: var(--pg-gold); }
.pg-note-top { top: 8%; left: -2%; }
.pg-note-bottom { right: 0; bottom: 8%; animation-delay: -2.2s; }

/* Cards and proof */
#section-highlight { margin-top: -44px; z-index: 4; }
.feature-box-type-1 {
    min-height: 170px;
    border: 1px solid rgba(103, 43, 105, .08);
    border-radius: 24px;
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 16px 40px rgba(70, 30, 73, .09);
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.feature-box-type-1:hover {
    transform: translateY(-8px) rotate(-.35deg);
    border-color: rgba(238, 168, 61, .55);
    box-shadow: var(--pg-shadow);
}
.feature-box-type-1 i { border-radius: 18px; }

.pg-proof-wrap { padding: 35px 0 75px; }
.pg-proof {
    overflow: hidden;
    padding: 30px 24px;
    color: #fff;
    border-radius: 30px;
    background: linear-gradient(115deg, var(--pg-purple-dark), var(--pg-purple) 58%, #a56a26 135%);
    box-shadow: var(--pg-shadow);
}
.pg-proof-item { text-align: center; padding: 8px 20px; }
.pg-proof-item strong { display: block; color: #fff; font-size: 34px; line-height: 1.1; }
.pg-proof-item span { display: block; margin-top: 7px; color: rgba(255,255,255,.78); font-size: 14px; }
.pg-proof .col-md-4 + .col-md-4 .pg-proof-item { border-left: 1px solid rgba(255,255,255,.17); }

#section-industries { padding-top: 75px; }
.pg-industry {
    min-height: 178px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 0;
    border-radius: 24px;
    background: linear-gradient(145deg, #fff, #fcf7fd);
    box-shadow: 0 12px 32px rgba(82, 44, 84, .08);
}
.pg-industry:nth-child(even) { background: linear-gradient(145deg, #fff, #fff9ed); }
.pg-industry i {
    width: 62px;
    height: 62px;
    line-height: 62px;
    margin: 0 auto 15px;
    border-radius: 22px 18px 24px 16px;
    background: var(--pg-purple-soft);
}
.pg-industry:hover { transform: translateY(-7px) rotate(.5deg); }
.pg-industry:hover i { transform: rotate(-6deg) scale(1.05); }

.img-shadow,
img.img-shadow { border-radius: 28px 18px 34px 20px; }

.pg-family-card {
    padding: 48px 52px;
    border-radius: 34px;
    background: linear-gradient(120deg, #fff6e8, #f4eaf5);
    box-shadow: var(--pg-shadow);
    overflow: hidden;
}
.pg-family-card img {
    border-radius: 22px;
    box-shadow: 0 18px 40px rgba(73, 32, 76, .14);
}
.pg-family-card .pg-family-visual {
    display: block;
    width: 100%;
    max-width: 580px;
    margin: 0 auto;
    border: 1px solid rgba(103, 43, 105, .08);
    object-fit: cover;
}

/* Real-world imagery */
.pg-photo-story { padding-top: 10px; }
.pg-photo-story .row p { margin-bottom: 26px; }
.pg-photo-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.65fr) minmax(250px, .85fr);
    grid-template-rows: repeat(2, 250px);
    gap: 18px;
}
.pg-photo-card {
    position: relative;
    overflow: hidden;
    margin: 0;
    border-radius: 24px;
    background: var(--pg-purple-soft);
    box-shadow: 0 15px 38px rgba(65, 31, 68, .11);
}
.pg-photo-card.pg-photo-wide { grid-row: 1 / span 2; }
.pg-photo-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .65s cubic-bezier(.2,.7,.2,1);
}
.pg-photo-card:hover img { transform: scale(1.035); }
.pg-photo-card:after {
    content: "";
    position: absolute;
    inset: 45% 0 0;
    background: linear-gradient(transparent, rgba(38, 17, 40, .76));
    pointer-events: none;
}
.pg-photo-card figcaption {
    position: absolute;
    z-index: 2;
    left: 18px;
    bottom: 15px;
    padding: 8px 12px;
    border-radius: 9px;
    color: #fff;
    background: rgba(45, 20, 48, .72);
    backdrop-filter: blur(7px);
    font-size: 13px;
    font-weight: 700;
}

.pg-story-photo,
.pg-restaurant-photo { margin: 0; }
.pg-story-photo figcaption,
.pg-restaurant-photo figcaption {
    max-width: 84%;
    margin: -18px auto 0;
    padding: 12px 16px;
    position: relative;
    border-radius: 12px;
    color: var(--pg-purple-dark);
    background: #fff;
    box-shadow: 0 12px 28px rgba(64, 29, 67, .14);
    font-size: 13px;
    font-weight: 600;
    text-align: center;
}
.pg-story-photo img { width: 100%; max-height: 620px; object-fit: cover; object-position: center; }
.pg-restaurant-photo img {
    width: 100%;
    max-height: 610px;
    object-fit: cover;
    border-radius: 24px 18px 30px 20px;
    box-shadow: 0 22px 45px rgba(39, 14, 42, .22);
}

.pg-hardware-pair {
    position: relative;
    min-height: 470px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.pg-hardware-pair img:first-child {
    width: 76%;
    position: relative;
    z-index: 2;
    background: #fff;
}
.pg-hardware-pair img:last-child {
    position: absolute;
    width: 42%;
    right: 0;
    bottom: 18px;
    z-index: 3;
    border: 8px solid #fff;
    border-radius: 18px;
    box-shadow: 0 18px 38px rgba(54, 24, 57, .17);
}

.pg-hardware-showcase { padding-top: 15px; }
.pg-hardware-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}
.pg-hardware-grid figure {
    margin: 0;
    padding: 18px 18px 14px;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 12px 30px rgba(68, 30, 71, .09);
}
.pg-hardware-grid img {
    width: 100%;
    height: 210px;
    object-fit: contain;
    transition: transform .35s ease;
}
.pg-hardware-grid figure:hover img { transform: translateY(-5px) scale(1.02); }
.pg-hardware-grid figcaption {
    margin-top: 7px;
    color: var(--pg-purple-dark);
    font-size: 13px;
    font-weight: 700;
    text-align: center;
}

.pg-feature-panel {
    height: calc(100% - 20px);
    margin-bottom: 20px;
    padding: 30px;
    border-radius: 26px;
    background: #fff;
    box-shadow: 0 15px 40px rgba(75, 35, 77, .09);
}
.pg-feature-panel h3 { margin-bottom: 18px; color: var(--pg-purple); font-size: 21px; }
.pg-feature-panel h3 i { margin-right: 8px; color: var(--pg-gold); }
.pg-restaurant-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5px 28px; }

.pricing-s2,
.de_testi blockquote,
.accordion-section-title { border-radius: 22px; }

/* CTA and pricing layout safeguards */
.pg-values-section { padding-bottom: 60px; }
.pg-brochure-strip { padding-top: 68px; padding-bottom: 68px; }
.pg-brochure-row { row-gap: 26px; }
.pg-brochure-actions,
.pg-social-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}
.pg-brochure-actions { justify-content: flex-end; }
.pg-social-actions { justify-content: center; }
.pg-brochure-actions .btn-custom,
.pg-social-actions .btn-custom,
.pg-cta-action .btn-custom {
    margin: 0;
    white-space: nowrap;
}
.pg-cta-row { row-gap: 22px; }
.pg-contact-strip h2 { margin-top: 0; }

/* Keep CTA phone links readable across every point of the purple-gold gradient. */
.pg-cta-phone {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 10px;
    border: 1px solid rgba(255, 255, 255, .72);
    border-radius: 6px;
    color: #fff;
    background: rgba(55, 20, 57, .72);
    box-shadow: 0 5px 14px rgba(40, 14, 42, .14);
    line-height: 1.35;
}
.pg-cta-phone a {
    color: #fff !important;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 2px;
}
.pg-cta-phone a:hover { color: #fff3d7 !important; }

/* Keep calls to action distinct from purple-to-gold section backgrounds. */
.bg-gradient-to-right .btn-custom.secondary,
.pg-brochure-strip .btn-custom.secondary {
    border: 1px solid rgba(255, 255, 255, .82);
    color: #672B69 !important;
    background: #fff !important;
    background-image: none !important;
    box-shadow: 0 10px 24px rgba(61, 25, 63, .16);
}
.bg-gradient-to-right .btn-custom.secondary:hover,
.pg-brochure-strip .btn-custom.secondary:hover {
    border-color: #fff;
    color: #4f2052 !important;
    background: #fff8ed !important;
    transform: translateY(-2px);
}
.pg-social-actions .btn-custom {
    border: 1px solid #672B69;
    color: #fff !important;
    background: #672B69 !important;
    background-image: none !important;
    box-shadow: 0 9px 20px rgba(103, 43, 105, .15);
}
.pg-social-actions .btn-custom.secondary {
    color: #672B69 !important;
    background: #fff !important;
}
.pg-social-actions .btn-custom:hover {
    color: #fff !important;
    background: #7c357e !important;
    transform: translateY(-2px);
}
.pg-social-actions .btn-custom.secondary:hover {
    color: #4f2052 !important;
    background: #f8f1f8 !important;
}

#pricing-table .row > .col-lg-4 { display: flex; }
#pricing-table .pricing-s2 {
    width: 100%;
    display: flex;
}
#pricing-table .pricing-s2 > .inner {
    width: 100%;
    display: flex;
}
#pricing-table .pricing-s2 .top {
    width: 100%;
    display: flex;
    flex-direction: column;
}
#pricing-table .pricing-s2 .top > p:not(.price) { flex-grow: 1; }

header { transition: box-shadow .3s ease, transform .3s ease; }
header.pg-scrolled { box-shadow: 0 12px 35px rgba(60, 25, 63, .12); }

/* JS-enhanced reveal. Content remains visible when JavaScript is unavailable. */
.motion-ready [data-pg-reveal] {
    opacity: 0;
    transform: translateY(28px) scale(.985);
    transition: opacity .72s ease, transform .72s cubic-bezier(.2,.7,.2,1);
    transition-delay: var(--pg-delay, 0ms);
}
.motion-ready [data-pg-reveal].is-visible { opacity: 1; transform: none; }

@keyframes pg-blob {
    0% { transform: rotate(0deg) scale(1); border-radius: 42% 58% 65% 35% / 52% 40% 60% 48%; }
    100% { transform: rotate(8deg) scale(1.035); border-radius: 60% 40% 42% 58% / 38% 57% 43% 62%; }
}
@keyframes pg-float {
    0%, 100% { transform: translateY(0) rotate(-1deg); }
    50% { transform: translateY(-9px) rotate(1deg); }
}

@media only screen and (max-width: 992px) {
    header.header-mobile {
        position: relative !important;
        top: auto !important;
        box-shadow: 0 10px 28px rgba(62, 26, 65, .1);
    }
    header.header-mobile.has-topbar { height: 105px; }
    header.header-mobile.has-topbar #topbar {
        height: 35px;
        margin-top: -15px;
        padding: 0;
    }
    header.header-mobile #topbar .container { padding-right: 15px; padding-left: 15px; }
    header.header-mobile .topbar-left { display: none; }
    header.header-mobile .topbar-right {
        width: 100%;
        height: 35px;
        float: none;
        justify-content: flex-end;
    }
    header.header-mobile .topbar-widget {
        height: 35px;
        align-items: center;
        padding: 6px 13px;
        font-size: 12px;
        font-weight: 500;
    }
    header.header-mobile .topbar-widget:first-child {
        flex: 1;
        justify-content: flex-end;
        border-left: 0 !important;
    }
    header.header-mobile .topbar-widget:last-child { border-right: 0 !important; }
    header.header-mobile .topbar-widget a {
        display: inline-flex;
        align-items: center;
        white-space: nowrap;
    }
    header.header-mobile .topbar-widget i { margin-top: 0; margin-right: 7px; }
    header.header-mobile .pg-mobile-only { display: inline; }
    header.header-mobile.has-topbar .header-row,
    header.header-mobile.has-topbar .header-col { margin-top: 0; }
    header.header-mobile .header-col.left {
        top: 0;
        left: 15px;
        height: 70px;
        padding: 0;
    }
    header.header-mobile div#logo {
        height: 70px;
        margin-top: 0;
        padding-top: 0;
        line-height: 1;
    }
    header.header-mobile .pg-brand-link { height: 70px; gap: 10px; }
    header.header-mobile #logo img.logo,
    header.header-mobile #logo img.logo-2 { width: 52px; height: 52px; }
    header.header-mobile .pg-brand-copy { display: flex; }
    header.header-mobile .header-col.mid {
        top: 70px;
        left: 0;
        padding: 0;
    }
    header.header-mobile #mainmenu {
        height: auto;
        padding: 12px 15px 20px;
        background: #fff;
        border-top: 1px solid #f0e7f1;
        box-shadow: 0 22px 34px rgba(54, 22, 57, .12);
    }
    header.header-mobile #mainmenu li {
        margin: 3px 0;
        border: 0;
        border-radius: 10px;
    }
    header.header-mobile #mainmenu li:last-child { margin-bottom: 0; }
    header.header-mobile #mainmenu li.pg-mobile-demo {
        display: block;
        margin-top: 10px;
    }
    header.header-mobile #mainmenu li.pg-mobile-login {
        display: block;
        margin-top: 8px;
        border-top: 1px solid #f0e7f1;
        padding-top: 8px;
    }
    header.header-mobile #mainmenu li.pg-mobile-login a {
        color: #672B69;
        background: #f8f2f8;
    }
    header.header-mobile #mainmenu li a {
        padding: 12px 14px;
        color: #403642;
        line-height: 1.25;
        border-radius: 10px;
        font-size: 15px;
        font-weight: 600;
    }
    header.header-mobile #mainmenu li a:hover,
    header.header-mobile #mainmenu li a.active {
        color: #672B69;
        background: #f5edf6;
    }
    header.header-mobile #mainmenu li.pg-mobile-demo a,
    header.header-mobile #mainmenu li.pg-mobile-demo a:hover {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        color: #fff;
        background: linear-gradient(90deg, #672B69, #812B7F 56%, #F3AA27);
        box-shadow: 0 10px 22px rgba(103, 43, 105, .18);
    }
    header.header-mobile #mainmenu a span {
        float: right;
        margin-left: 8px;
    }
    header.header-mobile #menu-btn {
        position: absolute;
        z-index: 10;
        top: 13px;
        right: 15px;
        display: flex;
        align-items: center;
        justify-content: center;
        float: none;
        width: 44px;
        height: 44px;
        margin: 0;
        padding: 0;
        border: 1px solid rgba(103, 43, 105, .12);
        border-radius: 12px;
        color: #672B69;
        background: #f5edf6 !important;
        box-shadow: none;
    }
    header.header-mobile #menu-btn:before { font-size: 19px; }
    header.header-mobile.pg-menu-open #menu-btn:before { content: "\f00d"; }
    .pg-hero { min-height: auto; padding: 80px 0 72px; }
    .pg-hero h1 { font-size: 44px; }
    .pg-hero-visual { margin-top: 20px; }
    .pg-note-top { left: 4%; }
    .pg-family-card { padding: 38px 32px; }
    .pg-photo-grid { grid-template-rows: repeat(2, 220px); }
    .pg-brochure-actions { justify-content: flex-start; }
}

@media only screen and (max-width: 767px) {
    .pg-contact-strip { padding-top: 46px; padding-bottom: 46px; }

    .pg-compare-section { padding-top: 62px; padding-bottom: 68px; }
    .pg-compare-intro { margin-bottom: 24px; font-size: 15px; }
    .pg-compare-table-wrap { display: none; }
    .pg-mobile-package-compare {
        display: grid;
        gap: 16px;
    }
    .pg-mobile-package-card {
        overflow: hidden;
        border: 1px solid rgba(103, 43, 105, .1);
        border-radius: 16px;
        background: #fff;
        box-shadow: 0 12px 30px rgba(65, 30, 67, .08);
    }
    .pg-mobile-package-card.is-featured {
        border-color: rgba(238, 168, 61, .48);
        box-shadow: 0 14px 34px rgba(103, 43, 105, .13);
    }
    .pg-mobile-package-head {
        padding: 19px 18px 17px;
        color: #fff;
        background: linear-gradient(100deg, #672B69, #8D4775 63%, #E49A30);
    }
    .pg-mobile-package-head span,
    .pg-mobile-package-head strong,
    .pg-mobile-package-head small { display: block; }
    .pg-mobile-package-head span {
        margin-bottom: 8px;
        font-size: 16px;
        font-weight: 700;
    }
    .pg-mobile-package-head strong { font-size: 30px; line-height: 1.05; }
    .pg-mobile-package-head small {
        margin-top: 5px;
        color: rgba(255,255,255,.82);
        font-size: 12px;
    }
    .pg-mobile-package-card ul {
        margin: 0;
        padding: 10px 18px 6px;
        list-style: none;
    }
    .pg-mobile-package-card li {
        position: relative;
        margin: 0;
        padding: 10px 0 10px 28px;
        border-bottom: 1px solid #f1ebf1;
        color: #4c434f;
        font-size: 14px;
        line-height: 1.4;
    }
    .pg-mobile-package-card li:last-child { border-bottom: 0; }
    .pg-mobile-package-card li::before {
        position: absolute;
        top: 10px;
        left: 0;
        width: 20px;
        color: #54ad63;
        font-family: FontAwesome;
        content: "\f00c";
    }
    .pg-mobile-package-card li.is-note::before {
        color: #9a8f9c;
        content: "\f05a";
    }
    #content .pg-mobile-package-card .btn-custom {
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 48px;
        width: auto;
        margin: 8px 18px 18px;
    }

    .pg-hero {
        padding: 52px 0 62px;
        text-align: left;
    }
    .pg-hero .container { padding-right: 22px; padding-left: 22px; }
    .pg-hero h1 { font-size: 38px; }
    .pg-hero .lead { font-size: 17px; line-height: 1.58; }
    .pg-hero .hero-badge {
        max-width: 100%;
        margin-bottom: 20px;
        padding: 9px 14px;
        font-size: 11px;
        line-height: 1.25;
        letter-spacing: .9px;
        text-align: center;
    }
    .pg-hero-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 11px;
        margin-top: 22px;
        margin-bottom: 21px;
    }
    #content .pg-hero-actions .btn-custom {
        min-height: 52px;
        margin: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
    }
    .pg-hero ul.pg-check { display: grid; gap: 8px; }
    .pg-hero ul.pg-check li {
        padding: 10px 12px 10px 36px;
        border: 1px solid rgba(103, 43, 105, .07);
        border-radius: 11px;
        background: rgba(255, 255, 255, .64);
        font-size: 14px;
        line-height: 1.45;
    }
    .pg-hero ul.pg-check li:before { left: 12px; top: 10px; }
    .pg-hero-visual { margin-top: 28px; padding: 28px 12px; }
    .pg-hero-visual > img { border-radius: 24px; }
    .pg-orbit-two { width: 78px; height: 78px; border-width: 13px; }
    .pg-float-note { padding: 8px 12px; font-size: 11px; }
    .pg-note-top { top: 3%; }
    .pg-note-bottom { bottom: 2%; }
    .pg-proof { padding: 18px 16px; border-radius: 24px; }
    .pg-proof-item { padding: 17px 12px; }
    .pg-proof .col-md-4 + .col-md-4 .pg-proof-item { border-left: 0; border-top: 1px solid rgba(255,255,255,.17); }
    .pg-industry { min-height: 164px; padding: 22px 10px; }
    .pg-industry i { width: 54px; height: 54px; line-height: 54px; }
    .pg-family-card { padding: 30px 22px; }
    .pg-restaurant-grid { grid-template-columns: 1fr; gap: 0; }
    .pg-photo-grid { display: block; }
    .pg-photo-card { height: 280px; margin-bottom: 16px; }
    .pg-photo-card.pg-photo-wide { height: 340px; }
    .pg-hardware-pair { min-height: 360px; }
    .pg-hardware-pair img:first-child { width: 82%; }
    .pg-hardware-pair img:last-child { width: 44%; border-width: 5px; }
    .pg-hardware-grid { grid-template-columns: 1fr; }
    .pg-hardware-grid img { height: 230px; }
    .pg-values-section { padding-bottom: 45px; }
    .pg-brochure-strip { padding-top: 52px; padding-bottom: 52px; }
    .pg-brochure-actions,
    .pg-social-actions { flex-direction: column; gap: 10px; }
    .pg-brochure-actions .btn-custom,
    .pg-social-actions .btn-custom { width: 100%; }
    .pg-cta-action { text-align: left !important; }
}

/* Keep the highlighted testimonial readable on its white center card. */
#section-testimonial #testimonial-carousel .owl-item.active.center .de_testi.opt-2 blockquote,
#section-testimonial #testimonial-carousel .owl-item.active.center .de_testi.opt-2 blockquote p,
#section-testimonial #testimonial-carousel .owl-item.active.center .de_testi.opt-2 .de_testi_by,
#section-testimonial #testimonial-carousel .owl-item.active.center .de_testi.opt-2 .de_testi_by span {
    color: #342d36 !important;
    opacity: 1;
    visibility: visible;
}

/* Production-safe business use cases: factual cards, not unverified quotes. */
#section-testimonial .pg-use-case-card {
    min-height: 350px;
    margin: 0 10px;
    padding: 44px 36px 38px;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 12px;
    background: rgba(28, 18, 29, .62);
    color: rgba(255, 255, 255, .84);
    text-align: left;
    box-shadow: 0 18px 48px rgba(27, 12, 29, .16);
    transition: transform .3s ease, background-color .3s ease, color .3s ease;
}

#section-testimonial .pg-use-case-card > i {
    display: inline-flex;
    width: 48px;
    height: 48px;
    margin-bottom: 28px;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: var(--pg-purple, #702675);
    color: #fff;
    font-size: 20px;
}

#section-testimonial .pg-use-case-card h3 {
    margin-bottom: 16px;
    color: #fff;
}

#section-testimonial .pg-use-case-card p {
    min-height: 102px;
    margin-bottom: 24px;
    color: inherit;
    font-size: 16px;
    line-height: 1.65;
}

#section-testimonial .pg-use-case-card span {
    color: rgba(255, 255, 255, .72);
    font-size: 14px;
    font-weight: 600;
}

#section-testimonial #testimonial-carousel .owl-item.active.center .pg-use-case-card {
    background: #fff;
    color: #5f5662;
    transform: translateY(-8px);
}

#section-testimonial #testimonial-carousel .owl-item.active.center .pg-use-case-card h3 {
    color: #241f28;
}

#section-testimonial #testimonial-carousel .owl-item.active.center .pg-use-case-card span {
    color: #702675;
}

@media (max-width: 767px) {
    #section-testimonial .pg-use-case-card {
        min-height: 330px;
        margin: 0 6px;
        padding: 34px 28px;
    }

    #section-testimonial .pg-use-case-card p { min-height: 0; }
}

@media (prefers-reduced-motion: reduce) {
    *, *:before, *:after { scroll-behavior: auto !important; animation: none !important; transition-duration: .01ms !important; }
    .motion-ready [data-pg-reveal] { opacity: 1; transform: none; }
}
