/* ================================
   FILTER BAR
   ================================ */

.ccpc-filter-bar {
    position: relative;
    z-index: 20;
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    width: 100%;
    margin: 0 0 24px;
}

/* Zoekveld + 1 dropdown */
.ccpc-filter-bar:has(> :nth-child(2):last-child) {
    grid-template-columns: minmax(0, 2fr) minmax(180px, 1fr);
}

/* Zoekveld + 2 dropdowns */
.ccpc-filter-bar:has(> :nth-child(3):last-child) {
    grid-template-columns:
        minmax(0, 2fr)
        minmax(180px, 1fr)
        minmax(180px, 1fr);
}

/* Zoekveld + 3 dropdowns */
.ccpc-filter-bar:has(> :nth-child(4):last-child) {
    grid-template-columns:
        minmax(0, 2fr)
        minmax(180px, 1fr)
        minmax(180px, 1fr)
        minmax(180px, 1fr);
}

.ccpc-filter-bar input,
.ccpc-filter-bar select {
    display: block;
    width: 100%;
    min-width: 0;
    height: 46px;
    margin: 0;
    padding: 0 13px;
    border: 1px solid #dcdcdc;
    border-radius: 8px;
    outline: none;
    background-color: #fff;
    color: #222;
    font-size: 14px;
    box-sizing: border-box;
}

.ccpc-filter-bar input:focus,
.ccpc-filter-bar select:focus {
    border-color: #1687ff;
    box-shadow: 0 0 0 3px rgba(22, 135, 255, 0.12);
}

#ccpc-search {
    width: 100%;
    min-width: 0;
    margin: 0;
}

/* Tablet */
@media (max-width: 900px) {

    .ccpc-filter-bar,
    .ccpc-filter-bar:has(> :nth-child(2):last-child),
    .ccpc-filter-bar:has(> :nth-child(3):last-child),
    .ccpc-filter-bar:has(> :nth-child(4):last-child) {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ccpc-filter-bar > :first-child {
        grid-column: 1 / -1;
    }
}

/* Mobiel */
@media (max-width: 520px) {

    .ccpc-filter-bar,
    .ccpc-filter-bar:has(> :nth-child(2):last-child),
    .ccpc-filter-bar:has(> :nth-child(3):last-child),
    .ccpc-filter-bar:has(> :nth-child(4):last-child) {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .ccpc-filter-bar > :first-child {
        grid-column: auto;
    }
}

/* ================================
   PRODUCT GRID
   ================================ */

.ccpc-frontpage-products {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-rows: auto;
    align-items: stretch;
    gap: 24px;
    width: 100%;
}


/* ================================
   PRODUCT CARD
   ================================ */

.ccpc-product-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
    border: 1px solid #ececec;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.035);
    box-sizing: border-box;
    transform: none !important;
    transition: none !important;
}

.ccpc-product-card:hover {
    border-color: #dedede;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.07);
    transform: none !important;
}


/* ================================
   PRODUCT IMAGE / SLIDER
   ================================ */

.ccpc-product-media {
    position: relative;
    flex: 0 0 auto;
    width: 100%;
    min-width: 0;
    overflow: hidden;
    background: #f7f7f7;
}

.ccpc-product-slider,
.ccpc-product-image {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #f7f7f7;
    touch-action: pan-y;
    line-height: 0;
}

.ccpc-product-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.ccpc-product-slide,
.ccpc-product-image {
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 14px;
    box-sizing: border-box;
}

.ccpc-product-image {
    display: flex;
}

.ccpc-product-slide {
    position: absolute;
    inset: 0;
    display: flex;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.ccpc-product-slide.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.ccpc-product-slide img,
.ccpc-product-image img,
.ccpc-product-thumbnail {
    display: block;
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
    max-height: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    object-fit: contain;
    transform: none !important;
    transition: none !important;
}


/* ================================
   SLIDER BUTTONS
   ================================ */
.ccpc-slider-button {
    position: absolute;
    top: 50%;
    z-index: 8;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    min-width: 48px;
    height: 48px;
    min-height: 48px;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.94);
    color: #222;
    font-size: 28px;
    font-weight: 400;
    line-height: 1;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
    box-sizing: border-box;
    cursor: pointer;
    transform: translateY(-50%);
    appearance: none;
    -webkit-appearance: none;
}

.ccpc-slider-prev {
    left: 6px;
}

.ccpc-slider-next {
    right: 6px;
}

.ccpc-slider-button:hover {
    background: #fff;
    color: #1687ff;
}

.ccpc-slider-button:focus-visible {
    outline: 2px solid #1687ff;
    outline-offset: 2px;
}

@media (hover: hover) {
    .ccpc-slider-button {
        opacity: 0;
        visibility: hidden;
    }

    .ccpc-product-card:hover .ccpc-slider-button {
        opacity: 1;
        visibility: visible;
    }
}


/* ================================
   BRAND LOGO
   ================================ */

.ccpc-brand-logo {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 7;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 88px;
    min-height: 34px;
    padding: 5px 8px;
    border-radius: 7px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    box-sizing: border-box;
    pointer-events: none;
}

.ccpc-brand-logo img,
.ccpc-brand-logo-image {
    display: block;
    width: auto !important;
    height: auto !important;
    max-width: 72px !important;
    max-height: 32px !important;
    margin: 0 !important;
    padding: 0 !important;
    object-fit: contain;
}


/* ================================
   PRODUCT CONTENT
   ================================ */

.ccpc-product-content {
    display: grid;
    grid-template-rows: 72px 1fr;
    flex: 1 1 auto;
    min-width: 0;
    width: 100%;
    padding: 18px;
    box-sizing: border-box;
}


/* ================================
   PRODUCT TITLE
   ================================ */

.ccpc-product-title {
    display: -webkit-box;
    width: 100%;
    height: 72px;
    min-height: 72px;
    max-height: 72px;
    margin: 0;
    padding: 0;
    overflow: hidden;
    color: #242424;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.45;
    text-align: center;
    text-transform: none;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.ccpc-product-title a {
    color: inherit;
    text-decoration: none;
}

.ccpc-product-title a:hover {
    color: #1687ff;
}


/* ================================
   PURCHASE AREA
   ================================ */

.ccpc-product-purchase {
    display: grid;
    grid-template-rows: 62px 46px;
    grid-template-areas:
        "certificate"
        "bottom";
    align-content: end;
    gap: 12px;
    min-width: 0;
    width: 100%;
    min-height: 120px;
    margin: 0;
    padding: 12px 0 0;
    box-sizing: border-box;
}


/* ================================
   CERTIFICATE AREA
   ================================ */

.ccpc-cert-field {
    grid-area: certificate;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-width: 0;
    width: 100%;
    height: 62px;
    min-height: 62px;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.ccpc-cert-label {
    display: block;
    flex: 0 0 auto;
    margin: 0 0 6px;
    padding: 0;
    color: #777;
    font-size: 11px;
    font-weight: 600;
    line-height: 1.2;
    text-align: left;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}


/* ================================
   CERTIFICATE SELECT
   ================================ */

.ccpc-variation-select {
    display: block;
    width: 100%;
    min-width: 0;
    height: 40px;
    min-height: 40px;
    margin: 0;
    padding: 0 34px 0 11px;
    border: 1px solid #d8d8d8;
    border-radius: 7px;
    outline: none;
    background-color: #fff;
    color: #333;
    font-size: 13px;
    line-height: 40px;
    box-sizing: border-box;
    cursor: pointer;
}

.ccpc-variation-select:hover {
    border-color: #bdbdbd;
}

.ccpc-variation-select:focus {
    border-color: #1687ff;
    box-shadow: 0 0 0 3px rgba(22, 135, 255, 0.12);
}

.ccpc-variation-select option:disabled {
    color: #999;
}


/* ================================
   SINGLE CERTIFICATE
   ================================ */

.ccpc-single-cert,
.ccpc-no-cert {
    display: flex;
    align-items: center;
    width: 100%;
    min-width: 0;
    height: 40px;
    min-height: 40px;
    margin: 0;
    padding: 8px 11px;
    overflow: hidden;
    border: 1px solid #e1e1e1;
    border-radius: 7px;
    background: #f8f8f8;
    font-size: 13px;
    line-height: 1.3;
    text-align: left;
    box-sizing: border-box;
}

.ccpc-single-cert {
    color: #444;
    font-weight: 500;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ccpc-no-cert {
    color: #888;
    font-size: 12px;
}


/* ================================
   PRICE + CART ROW
   ================================ */

.ccpc-product-bottom {
    grid-area: bottom;
    display: flex;
    align-items: center;
    justify-content: space-between;
    align-self: end;
    gap: 14px;
    min-width: 0;
    width: 100%;
    height: 46px;
    min-height: 46px;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.ccpc-product-price,
.ccpc-product-card .price {
    min-width: 0;
    margin: 0;
    padding: 0;
    color: #222;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.3;
    text-align: left;
}

.ccpc-product-price .amount,
.ccpc-product-card .price .amount {
    color: inherit;
}

.ccpc-product-price del,
.ccpc-product-card .price del {
    display: block;
    margin: 0 0 2px;
    color: #999;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.2;
}

.ccpc-product-price ins,
.ccpc-product-card .price ins {
    color: #222;
    text-decoration: none;
}


/* ================================
   CART BUTTON
   ================================ */

.ccpc-product-card .ccpc-addcart {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 46px;
    width: 46px;
    min-width: 46px;
    max-width: 46px;
    height: 46px;
    min-height: 46px;
    max-height: 46px;
    margin: 0;
    padding: 0;
    overflow: hidden;
    border: 1px solid #1687ff;
    border-radius: 9px;
    outline: none;
    background: #1687ff;
    color: #fff;
    font-family: inherit;
    font-size: 18px;
    font-weight: 400;
    line-height: 1;
    text-align: center;
    text-decoration: none;
    text-transform: none;
    box-shadow: none;
    box-sizing: border-box;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    transform: none !important;
    transition: none !important;
}

.ccpc-product-card .ccpc-addcart:hover {
    border-color: #006edb;
    background: #006edb;
    color: #fff;
    transform: none !important;
}

.ccpc-product-card .ccpc-addcart:focus {
    outline: none;
}

.ccpc-product-card .ccpc-addcart:focus-visible {
    box-shadow: 0 0 0 3px rgba(22, 135, 255, 0.22);
}

.ccpc-product-card .ccpc-addcart:disabled {
    cursor: not-allowed;
}

.ccpc-cart-default,
.ccpc-cart-success {
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.ccpc-cart-default svg {
    display: block;
    width: 20px;
    height: 20px;
}

.ccpc-cart-success {
    display: none;
    font-size: 21px;
    font-weight: 700;
}


/* ================================
   CART BUTTON LOADING
   ================================ */

.ccpc-addcart.is-loading {
    opacity: 0.7;
    pointer-events: none;
}

.ccpc-addcart.is-loading .ccpc-cart-default,
.ccpc-addcart.is-loading .ccpc-cart-success {
    visibility: hidden;
}

.ccpc-addcart.is-loading::after {
    position: absolute;
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255, 255, 255, 0.45);
    border-top-color: #fff;
    border-radius: 50%;
    content: "";
    animation: ccpc-spin 0.7s linear infinite;
}

@keyframes ccpc-spin {
    to {
        transform: rotate(360deg);
    }
}


/* ================================
   CART BUTTON SUCCESS / IN CART
   ================================ */

.ccpc-addcart.is-added,
.ccpc-product-card .ccpc-addcart.is-in-cart,
.ccpc-product-card .ccpc-addcart.is-in-cart:hover {
    border-color: #279d56;
    background: #279d56;
    color: #fff;
    transform: none !important;
}

.ccpc-product-card .ccpc-addcart.is-in-cart,
.ccpc-product-card .ccpc-addcart.is-in-cart:hover {
    cursor: not-allowed;
    opacity: 1;
}

.ccpc-addcart.is-added .ccpc-cart-default,
.ccpc-addcart.is-in-cart .ccpc-cart-default {
    display: none;
}

.ccpc-addcart.is-added .ccpc-cart-success,
.ccpc-addcart.is-in-cart .ccpc-cart-success {
    display: flex;
}


/* ================================
   HIDE WOOCOMMERCE CART LINK
   ================================ */

.ccpc-product-card .added_to_cart,
.ccpc-product-card .added_to_cart.wc-forward,
.ccpc-product-card .wc-forward {
    display: none !important;
}


/* ================================
   STOCK + BADGES
   ================================ */

.ccpc-product-card .stock {
    margin: 5px 0 0;
    font-size: 13px;
    line-height: 1.3;
    opacity: 0.8;
}

.ccpc-outofstock {
    display: inline-block;
    margin-top: 8px;
    padding: 6px 10px;
    border-radius: 4px;
    background: #d63638;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
}

.ccpc-badge-out {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 7;
    padding: 6px 9px;
    border-radius: 6px;
    background: #d63638;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.2;
}


/* ================================
   TOAST
   ================================ */


.ccpc-toast {
    position: fixed;
    right: 28px;
    bottom: 28px;
    z-index: 99999;
    max-width: 360px;
    margin: 0;
    padding: 14px 18px;
    border-radius: 9px;
    background: #171717;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    text-align: left;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(18px);
    box-sizing: border-box;
    transition:
        opacity 0.25s ease,
        visibility 0.25s ease,
        transform 0.25s ease;
}

.ccpc-toast.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.ccpc-toast.ccpc-toast-error {
    background: #c92d32;
}


/* ================================
   CARD & CONQUER FULL HEADER
   ================================ */

.cc-full-header,
.cc-full-header * {
    box-sizing: border-box;
}

body.cc-has-full-header {
    overflow-x: clip;
}

.cc-full-header {
    position: relative;
    z-index: 9999;
    width: 100vw;
    max-width: none !important;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    background:
        radial-gradient(circle at 75% 0%, rgba(194, 143, 35, .08), transparent 28%),
        linear-gradient(180deg, #070808 0%, #030404 100%);
    border-bottom: 1px solid rgba(194, 143, 35, .34);
    color: #fff;
    box-shadow: 0 8px 26px rgba(0, 0, 0, .28);
}

.cc-full-header a {
    text-decoration: none !important;
}

.cc-full-header-inner {
    display: grid;
    grid-template-columns: 182px minmax(0, 1fr);
    grid-template-areas:
        "logo top"
        "logo main";
    column-gap: 30px;
    row-gap: 3px;
    align-items: center;
    width: 100%;
    max-width: 1500px;
    min-height: 104px;
    margin: 0 auto;
    padding: 8px 28px 9px;
}

.cc-full-header-logo {
    grid-area: logo;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    min-width: 0;
    color: #d8b55f !important;
}

.cc-full-header-logo-picture {
    display: block;
    line-height: 0;
}

.cc-full-header-logo img {
    display: block;
    width: auto;
    max-width: 172px;
    max-height: 88px;
    object-fit: contain;
}

.cc-full-header-logo-fallback {
    display: inline-block;
    max-width: 172px;
    color: #d8b55f;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.cc-full-header-top {
    grid-area: top;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    width: 100%;
    min-width: 0;
    min-height: 42px;
}

.cc-full-header-main {
    grid-area: main;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(310px, 430px);
    align-items: center;
    gap: 28px;
    width: 100%;
    min-width: 0;
    min-height: 50px;
}


/* ================================
   HEADER USP BAR
   ================================ */

.cc-header-usps {
    display: flex;
    flex: 1 1 auto;
    align-items: center;
    justify-content: flex-start;
    gap: clamp(14px, 2.1vw, 30px);
    min-width: 0;
}

.cc-header-usp {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-width: 0;
    color: rgba(255,255,255,.82);
    font-size: 12px;
    font-weight: 400;
    line-height: 1.2;
    white-space: nowrap;
}

.cc-header-usp-icon {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    width: 19px;
    height: 19px;
    color: #c99a2e;
}

.cc-header-usp-icon svg {
    display: block;
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.55;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.cc-header-usps-mobile {
    display: none;
}


/* ================================
   HEADER ACTIONS
   ================================ */

.cc-header-actions {
    display: flex;
    flex: 0 0 auto;
    align-items: flex-start;
    justify-content: flex-end;
    gap: 1px;
}

.cc-account-link,
.cc-cart-link,
.cc-whatsapp-link,
.cc-reviews-link {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 72px;
    color: #fff !important;
    text-decoration: none !important;
    transition: color .2s ease, transform .2s ease;
}

.cc-account-link:hover,
.cc-cart-link:hover,
.cc-whatsapp-link:hover,
.cc-reviews-link:hover,
.cc-account-link:focus-visible,
.cc-cart-link:focus-visible,
.cc-whatsapp-link:focus-visible,
.cc-reviews-link:focus-visible {
    color: #d6aa45 !important;
    transform: translateY(-1px);
}

.cc-account-icon,
.cc-cart-icon,
.cc-whatsapp-icon,
.cc-reviews-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 27px;
}

.cc-account-icon svg,
.cc-cart-icon svg,
.cc-whatsapp-icon svg,
.cc-reviews-icon svg {
    display: block;
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.cc-reviews-icon svg {
    fill: rgba(201,154,46,.08);
}

.cc-account-label,
.cc-cart-label,
.cc-whatsapp-label,
.cc-reviews-label {
    display: block;
    margin-top: 2px;
    color: inherit;
    font-size: 10px;
    font-weight: 400;
    line-height: 1.15;
    white-space: nowrap;
}

.cc-reviews-label strong {
    color: #d5a943;
    font-weight: 600;
}

.cc-reviews-link:hover .cc-reviews-label strong,
.cc-reviews-link:focus-visible .cc-reviews-label strong {
    color: inherit;
}

.cc-cart-count {
    position: absolute;
    top: -6px;
    right: -9px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    border: 2px solid #050505;
    border-radius: 50px;
    background: #c8912d;
    color: #050505;
    font-size: 10px;
    font-weight: 800;
    line-height: 1;
    text-align: center;
}

.cc-header-actions-mobile {
    display: none;
}


/* ================================
   MAIN NAVIGATION
   ================================ */

.cc-full-header-nav {
    min-width: 0;
}

.cc-full-header-nav ul,
.cc-full-header-nav li {
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
}

.cc-full-header-menu {
    display: flex;
    align-items: center;
    gap: clamp(15px, 1.65vw, 28px);
    width: 100%;
}

.cc-full-header-menu > li {
    position: relative;
    flex: 0 0 auto;
}

.cc-full-header-menu a {
    display: flex;
    align-items: center;
    min-height: 42px;
    padding: 0 !important;
    color: rgba(255,255,255,.94) !important;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: .02em;
    text-transform: uppercase;
    transition: color .2s ease;
}

.cc-full-header-menu a:hover,
.cc-full-header-menu a:focus-visible,
.cc-full-header-menu .current-menu-item > a,
.cc-full-header-menu .current-menu-ancestor > a {
    color: #d8ab45 !important;
}

.cc-full-header-menu > .menu-item-has-children > a::after {
    content: "";
    width: 6px;
    height: 6px;
    margin-left: 7px;
    margin-top: -4px;
    border-right: 1px solid currentColor;
    border-bottom: 1px solid currentColor;
    transform: rotate(45deg);
}

.cc-full-header-menu .sub-menu {
    position: absolute;
    z-index: 50;
    top: calc(100% - 2px);
    left: -16px;
    display: block;
    min-width: 230px;
    padding: 9px !important;
    visibility: hidden;
    opacity: 0;
    transform: translateY(7px);
    border: 1px solid rgba(201,154,46,.32);
    background: rgba(5,6,6,.985);
    box-shadow: 0 16px 35px rgba(0,0,0,.5);
    transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}

.cc-full-header-menu .sub-menu li {
    position: relative;
    width: 100%;
}

.cc-full-header-menu .sub-menu a {
    min-height: 37px;
    padding: 8px 10px !important;
    font-size: 11px;
    font-weight: 600;
    text-transform: none;
}

.cc-full-header-menu .sub-menu .sub-menu {
    top: -10px;
    left: calc(100% + 9px);
}

.cc-full-header-menu li:hover > .sub-menu,
.cc-full-header-menu li:focus-within > .sub-menu {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.cc-header-submenu-toggle {
    display: none;
}


/* ================================
   HEADER SEARCH
   ================================ */

.cc-header-search {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 430px;
    height: 43px;
    margin: 0 0 0 auto !important;
    overflow: hidden;
    border: 1px solid #9c7428;
    border-radius: 50px;
    background: linear-gradient(90deg, rgba(255,255,255,.025), rgba(255,255,255,.01));
    box-shadow: 0 0 18px rgba(200,154,46,.07), inset 0 0 15px rgba(255,255,255,.01);
    transition: border-color .2s ease, box-shadow .2s ease;
}

.cc-header-search:focus-within {
    border-color: #d2a641;
    box-shadow: 0 0 22px rgba(200,154,46,.15);
}

.cc-header-search-button {
    display: flex !important;
    align-items: center;
    justify-content: center;
    flex: 0 0 48px;
    width: 48px;
    height: 41px;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
    color: #c99a2e !important;
    box-shadow: none !important;
    cursor: pointer;
}

.cc-header-search-button svg {
    display: block;
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
}

.cc-header-search-input {
    flex: 1;
    width: 100%;
    min-width: 0;
    height: 41px;
    margin: 0 !important;
    padding: 0 17px 0 0 !important;
    border: 0 !important;
    outline: 0 !important;
    background: transparent !important;
    color: #fff !important;
    font-size: 13px !important;
    font-weight: 400;
    box-shadow: none !important;
    appearance: none;
    -webkit-appearance: none;
}

.cc-header-search-input::placeholder {
    color: rgba(255,255,255,.48);
    opacity: 1;
}

.cc-header-search-input::-webkit-search-cancel-button {
    display: none;
}


/* ================================
   MOBILE TOGGLE / EXTRAS
   ================================ */

.cc-full-header-toggle {
    display: none;
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    margin: 0 !important;
    padding: 9px !important;
    border: 1px solid rgba(201,154,46,.46) !important;
    border-radius: 0 !important;
    background: rgba(255,255,255,.025) !important;
    box-shadow: none !important;
    cursor: pointer;
}

.cc-full-header-toggle span {
    display: block;
    width: 21px;
    height: 1px;
    margin: 4px auto;
    background: #d7ab47;
    transform-origin: center;
    transition: transform .2s ease, opacity .2s ease;
}

.cc-full-header-mobile-extras {
    display: none;
}


/* ================================
   TABLET
   ================================ */

@media (max-width: 1240px) and (min-width: 981px) {
    .cc-full-header-inner {
        grid-template-columns: 150px minmax(0, 1fr);
        column-gap: 22px;
        padding-left: 20px;
        padding-right: 20px;
    }

    .cc-full-header-logo img {
        max-width: 145px;
        max-height: 78px;
    }

    .cc-header-usps {
        gap: 12px;
    }

    .cc-header-usp {
        font-size: 10px;
    }

    .cc-account-link,
    .cc-cart-link,
    .cc-whatsapp-link,
    .cc-reviews-link {
        min-width: 61px;
    }

    .cc-account-label,
    .cc-cart-label,
    .cc-whatsapp-label,
    .cc-reviews-label {
        font-size: 9px;
    }

    .cc-full-header-main {
        grid-template-columns: minmax(0, 1fr) minmax(270px, 350px);
        gap: 18px;
    }

    .cc-full-header-menu {
        gap: 15px;
    }

    .cc-full-header-menu a {
        font-size: 11px;
    }
}


/* ================================
   MOBILE HEADER
   ================================ */

@media (max-width: 980px) {
    .cc-full-header {
        box-shadow: 0 5px 18px rgba(0,0,0,.34);
    }

    .cc-full-header-inner {
        grid-template-columns: minmax(0, 1fr) auto;
        grid-template-areas:
            "logo top"
            "main main";
        column-gap: 10px;
        row-gap: 0;
        min-height: 72px;
        padding: 7px 14px;
    }

    .cc-full-header-logo {
        min-height: 58px;
    }

    .cc-full-header-logo img {
        max-width: 128px;
        max-height: 60px;
    }

    .cc-full-header-logo-fallback {
        max-width: 132px;
        font-size: 14px;
    }

    .cc-full-header-top {
        justify-content: flex-end;
        gap: 5px;
        min-height: 58px;
    }

    .cc-header-usps-desktop {
        display: none;
    }

    .cc-header-actions-top {
        gap: 1px;
    }

    .cc-header-actions-top .cc-account-link,
    .cc-header-actions-top .cc-cart-link,
    .cc-header-actions-top .cc-whatsapp-link {
        min-width: 38px;
        width: 38px;
    }

    .cc-header-actions-top .cc-reviews-link {
        display: none;
    }

    .cc-header-actions-top .cc-account-label,
    .cc-header-actions-top .cc-cart-label,
    .cc-header-actions-top .cc-whatsapp-label {
        display: none;
    }

    .cc-header-actions-top .cc-account-icon,
    .cc-header-actions-top .cc-cart-icon,
    .cc-header-actions-top .cc-whatsapp-icon {
        width: 31px;
        height: 31px;
    }

    .cc-header-actions-top .cc-account-icon svg,
    .cc-header-actions-top .cc-cart-icon svg,
    .cc-header-actions-top .cc-whatsapp-icon svg {
        width: 21px;
        height: 21px;
    }

    .cc-full-header-toggle {
        display: block;
    }

    .cc-full-header.is-menu-open .cc-full-header-toggle span:nth-child(1) {
        transform: translateY(5px) rotate(45deg);
    }

    .cc-full-header.is-menu-open .cc-full-header-toggle span:nth-child(2) {
        opacity: 0;
    }

    .cc-full-header.is-menu-open .cc-full-header-toggle span:nth-child(3) {
        transform: translateY(-5px) rotate(-45deg);
    }

    .cc-full-header-main {
        display: none;
        grid-area: main;
        grid-template-columns: 1fr;
        gap: 13px;
        min-height: 0;
        padding: 14px 0 8px;
        border-top: 1px solid rgba(201,154,46,.25);
    }

    .cc-full-header.is-menu-open .cc-full-header-main {
        display: flex;
        flex-direction: column;
    }

    .cc-header-search-main {
        order: 1;
        max-width: none;
        height: 44px;
        margin: 0 !important;
        border-radius: 0;
    }

    .cc-full-header-nav {
        order: 2;
        width: 100%;
    }

    .cc-full-header-menu {
        display: block;
        width: 100%;
        border-top: 1px solid rgba(255,255,255,.06);
    }

    .cc-full-header-menu > li,
    .cc-full-header-menu .sub-menu li {
        position: relative;
        width: 100%;
        border-bottom: 1px solid rgba(255,255,255,.07);
    }

    .cc-full-header-menu a,
    .cc-full-header-menu .sub-menu a {
        min-height: 45px;
        padding: 10px 46px 10px 2px !important;
        font-size: 11px;
        font-weight: 650;
        text-transform: uppercase;
    }

    .cc-full-header-menu > .menu-item-has-children > a::after {
        display: none;
    }

    .cc-full-header-menu .sub-menu,
    .cc-full-header-menu .sub-menu .sub-menu {
        position: static;
        display: none;
        min-width: 0;
        padding: 0 0 0 14px !important;
        visibility: visible;
        opacity: 1;
        transform: none;
        border: 0;
        border-top: 1px solid rgba(201,154,46,.18);
        background: rgba(255,255,255,.025);
        box-shadow: none;
    }

    .cc-full-header-menu li.cc-submenu-open > .sub-menu {
        display: block;
    }

    .cc-full-header-menu .sub-menu a {
        min-height: 42px;
        font-size: 10px;
        font-weight: 500;
        text-transform: none;
    }

    .cc-header-submenu-toggle {
        position: absolute;
        z-index: 2;
        top: 5px;
        right: 0;
        display: flex !important;
        align-items: center;
        justify-content: center;
        width: 38px;
        height: 35px;
        margin: 0 !important;
        padding: 0 !important;
        border: 0 !important;
        border-left: 1px solid rgba(255,255,255,.08) !important;
        border-radius: 0 !important;
        background: transparent !important;
        color: #cda13c !important;
        box-shadow: none !important;
        cursor: pointer;
    }

    .cc-header-submenu-toggle::before {
        content: "";
        width: 8px;
        height: 8px;
        margin-top: -4px;
        border-right: 1px solid currentColor;
        border-bottom: 1px solid currentColor;
        transform: rotate(45deg);
        transition: transform .18s ease, margin-top .18s ease;
    }

    .cc-full-header-menu li.cc-submenu-open > .cc-header-submenu-toggle::before {
        margin-top: 4px;
        transform: rotate(225deg);
    }

    .cc-full-header-mobile-extras {
        order: 3;
        display: block;
        width: 100%;
    }

    .cc-header-actions-mobile {
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 6px;
        width: 100%;
        margin-top: 2px;
    }

    .cc-header-actions-mobile .cc-account-link,
    .cc-header-actions-mobile .cc-cart-link,
    .cc-header-actions-mobile .cc-whatsapp-link,
    .cc-header-actions-mobile .cc-reviews-link {
        min-width: 0;
        min-height: 64px;
        padding: 7px 3px;
        border: 1px solid rgba(201,154,46,.18);
        background: rgba(255,255,255,.018);
    }

    .cc-header-actions-mobile .cc-account-label,
    .cc-header-actions-mobile .cc-cart-label,
    .cc-header-actions-mobile .cc-whatsapp-label,
    .cc-header-actions-mobile .cc-reviews-label {
        font-size: 9px;
    }

    .cc-header-usps-mobile {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 6px;
        width: 100%;
        margin-top: 9px;
        padding-top: 9px;
        border-top: 1px solid rgba(255,255,255,.07);
    }

    .cc-header-usps-mobile .cc-header-usp {
        justify-content: center;
        padding: 5px 2px;
        font-size: 9px;
        white-space: normal;
        text-align: center;
    }
}

@media (max-width: 620px) {
    .cc-full-header-inner {
        padding-left: 10px;
        padding-right: 10px;
    }

    .cc-full-header-logo img {
        max-width: 116px;
        max-height: 55px;
    }

    .cc-header-actions-mobile {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .cc-header-usps-mobile {
        grid-template-columns: 1fr;
        gap: 2px;
    }

    .cc-header-usps-mobile .cc-header-usp {
        justify-content: flex-start;
        padding-left: 5px;
        text-align: left;
    }
}

@media (max-width: 370px) {
    .cc-header-actions-top .cc-account-link,
    .cc-header-actions-top .cc-whatsapp-link {
        display: none;
    }
}


/* ================================
   TAG PAGE
   ================================ */

.ccpc-tag-wrapper {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
}

.ccpc-tag-wrapper .ccpc-tag-header {
    display: grid;
    grid-template-columns: minmax(280px, 420px) minmax(0, 1fr);
    align-items: start;
    gap: 32px;
    margin-bottom: 40px;
}

.ccpc-tag-wrapper .ccpc-tag-image img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.ccpc-tag-wrapper .ccpc-tag-text {
    min-width: 0;
    max-width: 760px;
}

.ccpc-tag-wrapper .ccpc-tag-header-no-image {
    grid-template-columns: minmax(0, 1fr);
}

.ccpc-tag-wrapper .ccpc-tag-header-no-image .ccpc-tag-text {
    max-width: none;
}

.ccpc-tag-wrapper .ccpc-tag-text h1 {
    margin: 0 0 12px;
    font-size: 28px;
}

.ccpc-tag-wrapper .ccpc-tag-text h2 {
    margin: 20px 0 10px;
    font-size: 20px;
}

.ccpc-tag-wrapper .ccpc-tag-products {
    margin-top: 20px;
    margin-bottom: 20px;
}

.ccpc-category-description-intro {
    max-width: 760px;
}

.ccpc-category-description-intro > :first-child,
.ccpc-category-description-long > :first-child {
    margin-top: 0;
}

.ccpc-category-description-long {
    max-width: 900px;
    margin: 48px auto 0;
    font-size: 15px;
    line-height: 1.8rem;
}


.ccpc-set-meta {
    margin-top: 18px;
}

.ccpc-set-release {
    margin-bottom: 12px;
}

.ccpc-set-navigation {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 12px;
    margin-top: 12px;
}

.ccpc-set-nav {
    display: flex;
    flex: 1 1 0;
    flex-direction: column;
    gap: 3px;
    max-width: calc(50% - 6px);
    padding: 12px 14px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 10px;
    text-decoration: none;
}

.ccpc-set-nav:hover,
.ccpc-set-nav:focus {
    text-decoration: none;
}

.ccpc-set-nav-next {
    align-items: flex-end;
    margin-left: auto;
    text-align: right;
}

.ccpc-set-nav-label {
    font-size: 0.85em;
    opacity: 0.7;
}

.ccpc-set-nav-name {
    font-weight: 700;
    line-height: 1.3;
}


/* ================================
   PAGINATION
   ================================ */

.ccpc-pagination-inner {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    width: 100%;
    margin-top: 32px;
}

.ccpc-pagination-inner .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    height: 38px;
    margin: 0;
    padding: 0 11px;
    border: 1px solid #ddd;
    border-radius: 7px;
    background: #fff;
    color: #222;
    font-size: 14px;
    line-height: 1;
    text-decoration: none;
    box-sizing: border-box;
}

.ccpc-pagination-inner .page-numbers:hover,
.ccpc-pagination-inner .current {
    border-color: #1687ff;
    background: #1687ff;
    color: #fff;
}

.ccpc-pagination-inner .current,
.ccpc-pagination-inner .next,
.ccpc-pagination-inner .prev {
    font-weight: 700;
}


/* ================================
   PRODUCT PLACEHOLDERS
   ================================ */

.ccpc-product-placeholder {
    pointer-events: none;
    box-shadow: none;
    transform: none !important;
    transition: none !important;
}

.ccpc-product-placeholder:hover {
    box-shadow: none;
    transform: none !important;
}

.ccpc-placeholder-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    background: #f1f1f1;
}

.ccpc-placeholder-content {
    display: grid;
    grid-template-rows: 72px 1fr;
    flex: 1 1 auto;
    width: 100%;
    min-width: 0;
    padding: 18px;
    box-sizing: border-box;
}

.ccpc-placeholder-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 7px;
    padding-top: 4px;
}

.ccpc-placeholder-title span {
    display: block;
    height: 10px;
    border-radius: 4px;
    background: #ededed;
}

.ccpc-placeholder-title span:nth-child(1) {
    width: 82%;
}

.ccpc-placeholder-title span:nth-child(2) {
    width: 68%;
}

.ccpc-placeholder-title span:nth-child(3) {
    width: 48%;
}

.ccpc-placeholder-purchase {
    display: grid;
    grid-template-rows: 62px 46px;
    align-content: end;
    gap: 12px;
    min-height: 120px;
    padding-top: 12px;
    box-sizing: border-box;
}

.ccpc-placeholder-cert {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 62px;
}

.ccpc-placeholder-label {
    display: block;
    width: 78px;
    height: 8px;
    margin-bottom: 7px;
    border-radius: 3px;
    background: #ededed;
}

.ccpc-placeholder-field {
    display: block;
    width: 100%;
    height: 40px;
    border: 1px solid #e5e5e5;
    border-radius: 7px;
    background: #f4f4f4;
    box-sizing: border-box;
}

.ccpc-placeholder-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    width: 100%;
    height: 46px;
}

.ccpc-placeholder-price {
    display: block;
    width: 65px;
    height: 13px;
    border-radius: 4px;
    background: #ededed;
}

.ccpc-placeholder-button {
    display: block;
    flex: 0 0 46px;
    width: 46px;
    height: 46px;
    border-radius: 9px;
    background: #e9e9e9;
}


/* ================================
   SKELETON SHIMMER
   ================================ */

@keyframes ccpc-skeleton-shimmer {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

.ccpc-product-placeholder .ccpc-placeholder-image,
.ccpc-product-placeholder .ccpc-placeholder-title span,
.ccpc-product-placeholder .ccpc-placeholder-label,
.ccpc-product-placeholder .ccpc-placeholder-field,
.ccpc-product-placeholder .ccpc-placeholder-price,
.ccpc-product-placeholder .ccpc-placeholder-button {
    background-image: linear-gradient(
        90deg,
        #eeeeee 0%,
        #eeeeee 35%,
        #f8f8f8 50%,
        #eeeeee 65%,
        #eeeeee 100%
    );
    background-size: 220% 100%;
    animation: ccpc-skeleton-shimmer 1.4s ease-in-out infinite;
}

.ccpc-product-placeholder .ccpc-placeholder-field {
    border-color: #e7e7e7;
}


/* ================================
   TABLET
   ================================ */

@media (max-width: 1100px) {
    .ccpc-frontpage-products {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 18px;
    }
}

@media (max-width: 768px) {

    .ccpc-frontpage-products {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .ccpc-tag-wrapper .ccpc-tag-header {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .ccpc-tag-wrapper .ccpc-tag-text {
        max-width: 100%;
    }

    .ccpc-product-content,
    .ccpc-placeholder-content {
        grid-template-rows: 68px 1fr;
        padding: 14px;
    }

    .ccpc-product-title {
        height: 68px;
        min-height: 68px;
        max-height: 68px;
        font-size: 14px;
    }
}


/* ================================
   MOBILE - ALWAYS TWO COLUMNS
   ================================ */

@media (max-width: 520px) {

    .ccpc-filter-bar input,
    .ccpc-filter-bar select {
        height: 42px;
        padding: 0 11px;
        font-size: 13px;
        line-height: 42px;
    }

    .ccpc-frontpage-products {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .ccpc-product-card {
        border-radius: 12px;
    }

    .ccpc-product-slide,
    .ccpc-product-image {
        padding: 7px;
    }

    .ccpc-slider-button {
       
        border-radius: 5px;
        font-size: 22px;
    }

    .ccpc-slider-prev {
        left: 5px;
    }

    .ccpc-slider-next {
        right: 5px;
    }

    .ccpc-slider-dots {
        bottom: 6px;
        gap: 4px;
    }

    .ccpc-slider-dot {
        width: 6px;
        min-width: 6px;
        height: 6px;
    }

    .ccpc-product-content,
    .ccpc-placeholder-content {
        grid-template-rows: 60px 1fr;
        padding: 9px;
    }

    .ccpc-product-title {
        height: 60px;
        min-height: 60px;
        max-height: 60px;
        font-size: 12px;
        line-height: 1.42;
        -webkit-line-clamp: 3;
    }

    .ccpc-product-purchase,
    .ccpc-placeholder-purchase {
        grid-template-rows: 54px 40px;
        gap: 7px;
        min-height: 101px;
        padding-top: 7px;
    }

    .ccpc-cert-field,
    .ccpc-placeholder-cert {
        height: 54px;
        min-height: 54px;
    }

    .ccpc-cert-label {
        margin-bottom: 4px;
        font-size: 8px;
        letter-spacing: 0.025em;
    }

    .ccpc-single-cert,
    .ccpc-no-cert,
    .ccpc-variation-select,
    .ccpc-placeholder-field {
        height: 34px;
        min-height: 34px;
        font-size: 10px;
    }

    .ccpc-variation-select {
        padding-right: 24px;
        padding-left: 7px;
        line-height: 34px;
    }

    .ccpc-single-cert,
    .ccpc-no-cert {
        padding: 6px 7px;
    }

    .ccpc-product-bottom,
    .ccpc-placeholder-bottom {
        height: 40px;
        min-height: 40px;
        gap: 6px;
    }

    .ccpc-product-price,
    .ccpc-product-card .price {
        font-size: 12px;
        line-height: 1.2;
    }

    .ccpc-product-price del,
    .ccpc-product-card .price del {
        font-size: 9px;
    }

    .ccpc-product-card .ccpc-addcart,
    .ccpc-placeholder-button {
        flex-basis: 40px;
        width: 40px;
        min-width: 40px;
        max-width: 40px;
        height: 40px;
        min-height: 40px;
        max-height: 40px;
        border-radius: 8px;
    }

    .ccpc-cart-default svg {
        width: 18px;
        height: 18px;
    }

    .ccpc-cart-success {
        font-size: 18px;
    }

    .ccpc-brand-logo {
        top: 6px;
        left: 6px;
        max-width: 60px;
        min-height: 25px;
        padding: 3px 5px;
        border-radius: 5px;
    }

    .ccpc-brand-logo img,
    .ccpc-brand-logo-image {
        max-width: 50px !important;
        max-height: 22px !important;
    }

    .ccpc-badge-out {
        top: 6px;
        right: 6px;
        padding: 4px 6px;
        border-radius: 4px;
        font-size: 8px;
    }

    .ccpc-placeholder-title {
        gap: 5px;
        padding-top: 2px;
    }

    .ccpc-placeholder-title span {
        height: 7px;
    }

    .ccpc-placeholder-label {
        width: 55px;
        height: 6px;
        margin-bottom: 5px;
    }

    .ccpc-placeholder-price {
        width: 45px;
        height: 10px;
    }

    .ccpc-toast {
        right: 12px;
        bottom: 12px;
        left: 12px;
        max-width: none;
        padding: 12px 14px;
        font-size: 13px;
        text-align: center;
    }

    .ccpc-pagination-inner {
        gap: 6px;
        margin-top: 22px;
    }

    .ccpc-pagination-inner .page-numbers {
        min-width: 34px;
        height: 34px;
        padding: 0 8px;
        font-size: 12px;
    }
}


/* ================================
   VERY SMALL MOBILE - STILL TWO COLUMNS
   ================================ */

@media (max-width: 360px) {
    .ccpc-frontpage-products {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 6px;
    }

    .ccpc-product-card {
        border-radius: 10px;
    }

    .ccpc-product-slide,
    .ccpc-product-image {
        padding: 5px;
    }

    .ccpc-product-content,
    .ccpc-placeholder-content {
        grid-template-rows: 58px 1fr;
        padding: 7px;
    }

    .ccpc-product-title {
        height: 58px;
        min-height: 58px;
        max-height: 58px;
        font-size: 11px;
        line-height: 1.4;
    }

    .ccpc-product-purchase,
    .ccpc-placeholder-purchase {
        grid-template-rows: 50px 36px;
        gap: 6px;
        min-height: 92px;
        padding-top: 6px;
    }

    .ccpc-cert-field,
    .ccpc-placeholder-cert {
        height: 50px;
        min-height: 50px;
    }

    .ccpc-single-cert,
    .ccpc-no-cert,
    .ccpc-variation-select,
    .ccpc-placeholder-field {
        height: 32px;
        min-height: 32px;
        font-size: 9px;
    }

    .ccpc-variation-select {
        padding-right: 20px;
        padding-left: 6px;
        line-height: 32px;
    }

    .ccpc-product-bottom,
    .ccpc-placeholder-bottom {
        height: 36px;
        min-height: 36px;
        gap: 4px;
    }

    .ccpc-product-price,
    .ccpc-product-card .price {
        font-size: 11px;
    }

    .ccpc-product-card .ccpc-addcart,
    .ccpc-placeholder-button {
        flex-basis: 36px;
        width: 36px;
        min-width: 36px;
        max-width: 36px;
        height: 36px;
        min-height: 36px;
        max-height: 36px;
        border-radius: 7px;
    }

    .ccpc-cart-default svg {
        width: 16px;
        height: 16px;
    }

    .ccpc-brand-logo {
        top: 4px;
        left: 4px;
        max-width: 52px;
        min-height: 22px;
        padding: 3px 4px;
    }

    .ccpc-brand-logo img,
    .ccpc-brand-logo-image {
        max-width: 44px !important;
        max-height: 18px !important;
    }

    .ccpc-slider-button {
       font-size: 19px;
    }

    .ccpc-slider-prev {
        left: 3px;
    }

    .ccpc-slider-next {
        right: 3px;
    }
}


/* ================================
   REDUCED MOTION
   ================================ */

@media (prefers-reduced-motion: reduce) {
    .ccpc-product-placeholder .ccpc-placeholder-image,
    .ccpc-product-placeholder .ccpc-placeholder-title span,
    .ccpc-product-placeholder .ccpc-placeholder-label,
    .ccpc-product-placeholder .ccpc-placeholder-field,
    .ccpc-product-placeholder .ccpc-placeholder-price,
    .ccpc-product-placeholder .ccpc-placeholder-button {
        animation: none;
        background-image: none;
        background-color: #eeeeee;
    }

    .ccpc-addcart.is-loading::after {
        animation: none;
    }

    .ccpc-toast {
        transition: none;
    }
}

@media (max-width: 520px) {

    .ccpc-product-grid-wrapper {
        width: 100%;
        padding-left: 10px;
        padding-right: 10px;
        box-sizing: border-box;
    }
}

.ccpc-tag-text {
    font-size: 15px;
    line-height: 1.8rem;
}


/* ==================================================
   CCPC GERELATEERDE PRODUCTEN SHORTCODE
   Shortcode: [ccpc_related_products]
   ================================================== */

.ccpc-related-shortcode {
    display: block;
    width: 100%;
    margin: 45px 0 0;
    padding: 0;
    box-sizing: border-box;
}

.ccpc-related-shortcode .ccpc-related-title {
    display: block;
    width: 100%;
    margin: 0 0 24px;
    padding: 0;
    color: #242424;
    font-size: 28px;
    font-weight: 400;
    line-height: 1.25;
    text-align: left;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .ccpc-related-shortcode {
        margin-top: 35px;
    }

    .ccpc-related-shortcode .ccpc-related-title {
        margin-bottom: 18px;
        font-size: 23px;
    }
}

@media (max-width: 520px) {
    .ccpc-related-shortcode {
        margin-top: 30px;
        padding-right: 10px;
        padding-left: 10px;
    }

    .ccpc-related-shortcode .ccpc-related-title {
        margin-bottom: 16px;
        font-size: 20px;
    }
}

@media (max-width: 360px) {
    .ccpc-related-shortcode {
        padding-right: 6px;
        padding-left: 6px;
    }

    .ccpc-related-shortcode .ccpc-related-title {
        font-size: 18px;
    }
}

@media (max-width: 600px) {
    .ccpc-set-navigation {
        flex-direction: column;
    }

    .ccpc-set-nav {
        width: 100%;
        max-width: none;
    }

    .ccpc-set-nav-next {
        align-items: flex-start;
        margin-left: 0;
        text-align: left;
    }
}
/* ================================
   SINGLE PRODUCT LAYOUT
   ================================ */

body.cc-product-layout #main-content {
    background:
        radial-gradient(circle at 90% 7%, rgba(194, 143, 35, .08), transparent 28%),
        radial-gradient(circle at 10% 35%, rgba(160, 105, 27, .06), transparent 24%),
        #050606;
    color: #f6f2e9;
}

body.cc-product-layout #main-content .container {
    width: min(94%, 1460px);
    max-width: 1460px;
    padding-top: 34px;
}

body.cc-product-layout #main-content .container::before {
    display: none !important;
}

body.cc-product-layout #left-area {
    width: 100% !important;
    padding-right: 0 !important;
}

body.cc-product-layout div.product.type-product {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(390px, .95fr);
    gap: 38px 46px;
    width: 100%;
    margin: 0;
}

body.cc-product-layout div.product.type-product > .woocommerce-product-gallery,
body.cc-product-layout div.product.type-product > .summary {
    float: none !important;
    width: 100% !important;
    margin: 0 !important;
}

body.cc-product-layout div.product.type-product > .woocommerce-product-gallery {
    grid-column: 1;
    grid-row: 1;
    align-self: start;
}

body.cc-product-layout div.product.type-product > .summary {
    grid-column: 2;
    grid-row: 1;
    min-width: 0;
    align-self: start;
    padding-top: 2px;
}

body.cc-product-layout div.product.type-product > .woocommerce-tabs,
body.cc-product-layout div.product.type-product > .related,
body.cc-product-layout div.product.type-product > .upsells,
body.cc-product-layout div.product.type-product > section.related,
body.cc-product-layout div.product.type-product > section.upsells {
    grid-column: 1 / -1;
    width: 100%;
    margin: 0;
}

body.cc-product-layout .woocommerce-product-gallery {
    display: grid !important;
    grid-template-columns: 92px minmax(0, 1fr);
    grid-template-rows: auto;
    gap: 12px;
    min-width: 0;
}

body.cc-product-layout .woocommerce-product-gallery .flex-viewport,
body.cc-product-layout .woocommerce-product-gallery > .woocommerce-product-gallery__wrapper {
    grid-column: 2;
    grid-row: 1;
    min-width: 0;
    margin: 0 !important;
    overflow: hidden;
    border: 1px solid rgba(206, 157, 55, .72);
    background:
        radial-gradient(circle at 50% 38%, rgba(212, 166, 72, .18), transparent 48%),
        linear-gradient(160deg, #111313 0%, #070808 100%);
    box-shadow: inset 0 0 32px rgba(0,0,0,.5), 0 14px 35px rgba(0,0,0,.24);
}

body.cc-product-layout .woocommerce-product-gallery__wrapper {
    margin: 0 !important;
}

body.cc-product-layout .woocommerce-product-gallery__image,
body.cc-product-layout .woocommerce-product-gallery__image a {
    display: flex !important;
    align-items: center;
    justify-content: center;
    min-height: 620px;
    background: transparent;
}

body.cc-product-layout .woocommerce-product-gallery__image img {
    display: block;
    width: 100% !important;
    max-width: 640px;
    max-height: 700px;
    height: auto !important;
    margin: 0 auto !important;
    padding: 28px;
    object-fit: contain;
}

body.cc-product-layout .woocommerce-product-gallery .flex-control-thumbs {
    grid-column: 1;
    grid-row: 1;
    display: flex !important;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    margin: 0 !important;
    padding: 0 !important;
}

body.cc-product-layout .woocommerce-product-gallery .flex-control-thumbs li {
    float: none !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 1px solid rgba(206, 157, 55, .24);
    background: #0c0d0d;
}

body.cc-product-layout .woocommerce-product-gallery .flex-control-thumbs img {
    width: 100%;
    min-height: 82px;
    padding: 6px;
    object-fit: contain;
    opacity: .72;
    transition: opacity .18s ease, border-color .18s ease, box-shadow .18s ease;
}

body.cc-product-layout .woocommerce-product-gallery .flex-control-thumbs img.flex-active,
body.cc-product-layout .woocommerce-product-gallery .flex-control-thumbs img:hover {
    opacity: 1;
    box-shadow: inset 0 0 0 1px #d7aa46, 0 0 14px rgba(215,170,70,.16);
}

body.cc-product-layout .woocommerce-product-gallery__trigger {
    top: 14px !important;
    right: 14px !important;
    width: 42px !important;
    height: 42px !important;
    border: 1px solid rgba(215,170,70,.38) !important;
    border-radius: 0 !important;
    background: rgba(5,6,6,.85) !important;
}

body.cc-product-layout .summary .cc-product-kicker {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    margin-bottom: 12px;
    padding: 5px 11px;
    border: 1px solid rgba(213, 169, 67, .78);
    background: rgba(213, 169, 67, .06);
    color: #e5bd62;
    font-size: 11px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: .08em;
    text-transform: uppercase;
}

body.cc-product-layout .summary h1.product_title {
    margin: 0 0 10px !important;
    color: #f7f2e9 !important;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(34px, 3vw, 49px) !important;
    font-weight: 500 !important;
    line-height: 1.05 !important;
    letter-spacing: -.02em;
}

body.cc-product-layout .summary .woocommerce-product-rating {
    margin: 0 0 10px !important;
}

body.cc-product-layout .summary .woocommerce-product-details__short-description,
body.cc-product-layout .summary .woocommerce-product-details__short-description p {
    color: rgba(255,255,255,.68) !important;
    font-size: 15px;
    line-height: 1.65;
}

body.cc-product-layout .summary p.price,
body.cc-product-layout .summary span.price,
body.cc-product-layout .summary .price,
body.cc-product-layout .summary .woocommerce-Price-amount {
    color: #f0c35f !important;
}

body.cc-product-layout .summary p.price,
body.cc-product-layout .summary > .price {
    margin: 18px 0 7px !important;
    font-size: clamp(29px, 2.4vw, 40px) !important;
    font-weight: 800;
    line-height: 1.1;
}

body.cc-product-layout .summary p.stock {
    margin: 4px 0 14px !important;
    color: #45cf82 !important;
    font-size: 13px !important;
    font-weight: 700;
}

body.cc-product-layout .summary form.cart,
body.cc-product-layout .summary form.variations_form {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    gap: 10px;
    margin: 18px 0 16px !important;
}

body.cc-product-layout .summary form.variations_form .variations,
body.cc-product-layout .summary form.variations_form .single_variation_wrap {
    flex: 1 1 100%;
    width: 100%;
}

body.cc-product-layout .summary form.variations_form .woocommerce-variation-add-to-cart {
    display: flex;
    align-items: stretch;
    gap: 10px;
    width: 100%;
}

body.cc-product-layout .summary .quantity {
    float: none !important;
    display: flex;
    align-items: stretch;
    width: 88px;
    margin: 0 !important;
}

body.cc-product-layout .summary .quantity .qty {
    width: 88px !important;
    min-height: 52px;
    border: 1px solid rgba(255,255,255,.18) !important;
    border-radius: 0 !important;
    background: #080909 !important;
    color: #fff !important;
    font-size: 15px !important;
    font-weight: 700;
    box-shadow: none !important;
}

body.cc-product-layout .summary button.single_add_to_cart_button,
body.cc-product-layout .summary .single_add_to_cart_button.button {
    flex: 1 1 260px;
    min-height: 52px;
    margin: 0 !important;
    padding: 13px 24px !important;
    border: 1px solid #f0cb75 !important;
    border-radius: 0 !important;
    background: linear-gradient(180deg, #f3cf78 0%, #d7a642 100%) !important;
    color: #090909 !important;
    font-size: 13px !important;
    font-weight: 850 !important;
    line-height: 1.15 !important;
    letter-spacing: .015em;
    text-transform: uppercase;
    box-shadow: 0 8px 24px rgba(211,161,60,.16) !important;
}

body.cc-product-layout .summary button.single_add_to_cart_button:hover,
body.cc-product-layout .summary .single_add_to_cart_button.button:hover {
    background: linear-gradient(180deg, #f7d98e 0%, #e2b44f 100%) !important;
}

body.cc-product-layout .summary .product_meta {
    margin-top: 14px;
    color: rgba(255,255,255,.5);
    font-size: 12px;
}

body.cc-product-layout .summary .product_meta a {
    color: #d6ac51 !important;
}

body.cc-product-layout .cc-product-benefits {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    margin: 14px 0 18px;
    border: 1px solid rgba(211,164,65,.27);
    background: rgba(255,255,255,.035);
}

body.cc-product-layout .cc-product-benefit {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
    min-height: 74px;
    padding: 11px 10px;
    border-right: 1px solid rgba(255,255,255,.07);
}

body.cc-product-layout .cc-product-benefit:last-child {
    border-right: 0;
}

body.cc-product-layout .cc-product-benefit-icon {
    display: flex;
    flex: 0 0 30px;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    color: #d9aa43;
}

body.cc-product-layout .cc-product-benefit-icon svg {
    width: 26px;
    height: 26px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

body.cc-product-layout .cc-product-benefit > span:last-child {
    display: block;
    min-width: 0;
}

body.cc-product-layout .cc-product-benefit strong,
body.cc-product-layout .cc-product-benefit small {
    display: block;
}

body.cc-product-layout .cc-product-benefit strong {
    color: #f4efe5;
    font-size: 11px;
    font-weight: 750;
    line-height: 1.2;
}

body.cc-product-layout .cc-product-benefit small {
    margin-top: 3px;
    color: rgba(255,255,255,.52);
    font-size: 9px;
    line-height: 1.25;
}

body.cc-product-layout .cc-product-details-card {
    margin-top: 10px;
    padding: 17px 19px 11px;
    border: 1px solid rgba(214,169,67,.55);
    background: linear-gradient(145deg, rgba(255,255,255,.025), rgba(255,255,255,.008));
    box-shadow: inset 0 0 28px rgba(210,160,55,.025);
}

body.cc-product-layout .cc-product-details-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,.09);
}

body.cc-product-layout .cc-product-details-card h2 {
    margin: 0 !important;
    padding: 0 !important;
    color: #f7f2e9 !important;
    font-size: 14px !important;
    font-weight: 800 !important;
    letter-spacing: .02em;
    text-transform: uppercase;
}

body.cc-product-layout .cc-product-psa-mark {
    color: #f2f2f2;
    font-size: 15px;
    font-style: italic;
    font-weight: 900;
    letter-spacing: -.04em;
}

body.cc-product-layout .cc-product-psa-mark strong {
    color: #d73939;
}

body.cc-product-layout .cc-product-details-card dl {
    margin: 0;
}

body.cc-product-layout .cc-product-details-card dl > div {
    display: grid;
    grid-template-columns: minmax(100px, .8fr) minmax(0, 1.5fr);
    gap: 16px;
    padding: 9px 0;
    border-bottom: 1px solid rgba(255,255,255,.07);
}

body.cc-product-layout .cc-product-details-card dl > div:last-child {
    border-bottom: 0;
}

body.cc-product-layout .cc-product-details-card dt,
body.cc-product-layout .cc-product-details-card dd {
    margin: 0;
    font-size: 12px;
    line-height: 1.35;
}

body.cc-product-layout .cc-product-details-card dt {
    color: rgba(255,255,255,.56);
}

body.cc-product-layout .cc-product-details-card dd {
    color: #f3eee5;
    font-weight: 600;
}

body.cc-product-layout .woocommerce-tabs {
    margin-top: 8px !important;
    padding-top: 8px;
    border-top: 1px solid rgba(214,169,67,.30);
}

body.cc-product-layout .woocommerce-tabs ul.tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    margin: 0 0 18px !important;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
}

body.cc-product-layout .woocommerce-tabs ul.tabs::before,
body.cc-product-layout .woocommerce-tabs ul.tabs li::before,
body.cc-product-layout .woocommerce-tabs ul.tabs li::after {
    display: none !important;
}

body.cc-product-layout .woocommerce-tabs ul.tabs li {
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
}

body.cc-product-layout .woocommerce-tabs ul.tabs li a {
    display: block;
    padding: 10px 1px !important;
    border-bottom: 2px solid transparent;
    color: rgba(255,255,255,.62) !important;
    font-size: 12px;
    font-weight: 700 !important;
    letter-spacing: .02em;
    text-transform: uppercase;
}

body.cc-product-layout .woocommerce-tabs ul.tabs li.active a,
body.cc-product-layout .woocommerce-tabs ul.tabs li a:hover {
    border-bottom-color: #e2b653;
    color: #f1c867 !important;
}

body.cc-product-layout .woocommerce-tabs .panel {
    margin: 0 !important;
    padding: 0 0 26px !important;
    color: rgba(255,255,255,.72);
    font-size: 14px;
    line-height: 1.7;
}

body.cc-product-layout .woocommerce-tabs .panel h2:first-child {
    display: none;
}

body.cc-product-layout .related.products,
body.cc-product-layout .upsells.products {
    margin-top: 10px !important;
    padding-top: 24px;
    border-top: 1px solid rgba(214,169,67,.30);
}

body.cc-product-layout .related.products > h2,
body.cc-product-layout .upsells.products > h2 {
    margin: 0 0 20px !important;
    color: #f7f1e7 !important;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 30px !important;
    font-weight: 500 !important;
}

body.cc-product-layout .related.products ul.products,
body.cc-product-layout .upsells.products ul.products {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin: 0 !important;
}

body.cc-product-layout .related.products ul.products::before,
body.cc-product-layout .related.products ul.products::after,
body.cc-product-layout .upsells.products ul.products::before,
body.cc-product-layout .upsells.products ul.products::after {
    display: none !important;
}

body.cc-product-layout .related.products ul.products li.product,
body.cc-product-layout .upsells.products ul.products li.product {
    float: none !important;
    width: auto !important;
    margin: 0 !important;
    padding: 13px !important;
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 0 !important;
    background: linear-gradient(160deg, rgba(255,255,255,.035), rgba(255,255,255,.012));
}

body.cc-product-layout .related.products ul.products li.product img,
body.cc-product-layout .upsells.products ul.products li.product img {
    margin: 0 0 13px !important;
    background: #0b0c0c;
}

body.cc-product-layout .related.products ul.products li.product .woocommerce-loop-product__title,
body.cc-product-layout .upsells.products ul.products li.product .woocommerce-loop-product__title {
    min-height: 3.2em;
    color: #f6f2e9 !important;
    font-size: 14px !important;
    line-height: 1.45;
}

body.cc-product-layout .related.products ul.products li.product .price,
body.cc-product-layout .upsells.products ul.products li.product .price {
    color: #efc35f !important;
    font-size: 16px !important;
    font-weight: 800;
}

body.cc-product-layout .related.products ul.products li.product .button,
body.cc-product-layout .upsells.products ul.products li.product .button {
    width: 100%;
    margin-top: 10px !important;
    padding: 10px 12px !important;
    border: 1px solid rgba(224,177,75,.65) !important;
    border-radius: 0 !important;
    background: rgba(224,177,75,.08) !important;
    color: #e8bf65 !important;
    font-size: 11px !important;
    text-align: center;
}

@media (max-width: 1180px) {
    body.cc-product-layout div.product.type-product {
        grid-template-columns: minmax(0, 1fr) minmax(350px, .9fr);
        gap: 32px;
    }

    body.cc-product-layout .woocommerce-product-gallery__image,
    body.cc-product-layout .woocommerce-product-gallery__image a {
        min-height: 520px;
    }

    body.cc-product-layout .cc-product-benefits {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    body.cc-product-layout .cc-product-benefit:nth-child(2) {
        border-right: 0;
    }

    body.cc-product-layout .cc-product-benefit:nth-child(-n+2) {
        border-bottom: 1px solid rgba(255,255,255,.07);
    }
}

@media (max-width: 980px) {
    body.cc-product-layout #main-content .container {
        width: min(94%, 920px);
        padding-top: 22px;
    }

    body.cc-product-layout div.product.type-product {
        display: grid;
        grid-template-columns: minmax(0, 1fr);
        gap: 24px;
    }

    body.cc-product-layout div.product.type-product > .woocommerce-product-gallery,
    body.cc-product-layout div.product.type-product > .summary,
    body.cc-product-layout div.product.type-product > .woocommerce-tabs,
    body.cc-product-layout div.product.type-product > .related,
    body.cc-product-layout div.product.type-product > .upsells,
    body.cc-product-layout div.product.type-product > section.related,
    body.cc-product-layout div.product.type-product > section.upsells {
        grid-column: 1;
        grid-row: auto;
    }

    body.cc-product-layout .woocommerce-product-gallery {
        grid-template-columns: minmax(0, 1fr);
        gap: 10px;
    }

    body.cc-product-layout .woocommerce-product-gallery .flex-viewport,
    body.cc-product-layout .woocommerce-product-gallery > .woocommerce-product-gallery__wrapper {
        grid-column: 1;
        grid-row: 1;
    }

    body.cc-product-layout .woocommerce-product-gallery .flex-control-thumbs {
        grid-column: 1;
        grid-row: 2;
        display: grid !important;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 8px;
    }

    body.cc-product-layout .woocommerce-product-gallery .flex-control-thumbs img {
        min-height: 0;
        aspect-ratio: 1 / 1;
    }

    body.cc-product-layout .woocommerce-product-gallery__image,
    body.cc-product-layout .woocommerce-product-gallery__image a {
        min-height: 0;
    }

    body.cc-product-layout .woocommerce-product-gallery__image img {
        max-height: 620px;
        padding: 20px;
    }

    body.cc-product-layout .summary h1.product_title {
        font-size: clamp(30px, 8vw, 42px) !important;
    }

    body.cc-product-layout .related.products ul.products,
    body.cc-product-layout .upsells.products ul.products {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 560px) {
    body.cc-product-layout #main-content .container {
        width: calc(100% - 24px);
    }

    body.cc-product-layout .summary form.variations_form .woocommerce-variation-add-to-cart,
    body.cc-product-layout .summary form.cart {
        align-items: stretch;
    }

    body.cc-product-layout .summary .quantity {
        width: 76px;
    }

    body.cc-product-layout .summary .quantity .qty {
        width: 76px !important;
    }

    body.cc-product-layout .summary button.single_add_to_cart_button,
    body.cc-product-layout .summary .single_add_to_cart_button.button {
        min-width: 0;
        padding-left: 14px !important;
        padding-right: 14px !important;
        font-size: 11px !important;
    }

    body.cc-product-layout .cc-product-benefits {
        grid-template-columns: 1fr;
    }

    body.cc-product-layout .cc-product-benefit,
    body.cc-product-layout .cc-product-benefit:nth-child(2) {
        border-right: 0;
        border-bottom: 1px solid rgba(255,255,255,.07);
    }

    body.cc-product-layout .cc-product-benefit:last-child {
        border-bottom: 0;
    }

    body.cc-product-layout .cc-product-details-card dl > div {
        grid-template-columns: 100px minmax(0, 1fr);
        gap: 10px;
    }

    body.cc-product-layout .related.products ul.products,
    body.cc-product-layout .upsells.products ul.products {
        grid-template-columns: 1fr;
    }
}

/* ================================
   1.0.5 HEADER REFINEMENT
   ================================ */
@media (min-width: 1241px) {
    .cc-full-header-inner {
        grid-template-columns: 220px minmax(0, 1fr);
        column-gap: 34px;
        min-height: 118px;
        max-width: 1600px;
        padding-top: 7px;
        padding-bottom: 9px;
    }

    .cc-full-header-logo img {
        max-width: 208px;
        max-height: 104px;
    }

    .cc-full-header-top {
        position: relative;
        justify-content: center;
        min-height: 46px;
        padding-right: 310px;
    }

    .cc-header-usps-desktop {
        width: 100%;
        justify-content: center;
        gap: clamp(28px, 3vw, 54px);
    }

    .cc-header-usp {
        gap: 9px;
        font-size: 13px;
        font-weight: 500;
    }

    .cc-header-usp-icon {
        width: 21px;
        height: 21px;
    }

    .cc-header-usp-icon svg {
        width: 20px;
        height: 20px;
    }

    .cc-header-actions-top {
        position: absolute;
        top: 50%;
        right: 0;
        transform: translateY(-50%);
    }

    .cc-account-link,
    .cc-cart-link,
    .cc-whatsapp-link,
    .cc-reviews-link {
        min-width: 76px;
    }

    .cc-account-label,
    .cc-cart-label,
    .cc-whatsapp-label,
    .cc-reviews-label {
        font-size: 11px;
    }

    .cc-full-header-main {
        grid-template-columns: minmax(0, 1fr) minmax(360px, 455px);
        gap: 34px;
    }

    .cc-full-header-menu {
        gap: clamp(18px, 1.7vw, 31px);
    }

    .cc-full-header-menu a {
        font-size: 13px;
    }

    .cc-header-search {
        max-width: 455px;
        height: 45px;
    }

    .cc-header-search-input {
        font-size: 14px !important;
    }
}

@media (max-width: 1240px) and (min-width: 981px) {
    .cc-full-header-inner {
        grid-template-columns: 170px minmax(0, 1fr);
    }

    .cc-full-header-logo img {
        max-width: 165px;
        max-height: 86px;
    }

    .cc-header-usp {
        font-size: 11px;
    }

    .cc-full-header-menu a {
        font-size: 12px;
    }
}

@media (max-width: 980px) {
    .cc-full-header-logo img {
        max-width: 144px;
        max-height: 67px;
    }
}

@media (max-width: 620px) {
    .cc-full-header-logo img {
        max-width: 132px;
        max-height: 63px;
    }
}

/* ================================
   1.0.5 PRODUCT PAGE - FIXED TEMPLATE
   ================================ */
body.cc-product-layout #main-content {
    background:
        radial-gradient(circle at 90% 4%, rgba(190, 137, 42, .11), transparent 26%),
        radial-gradient(circle at 7% 32%, rgba(175, 113, 24, .07), transparent 24%),
        #050606 !important;
    color: #f5f0e7;
}

body.cc-product-layout #main-content > .container,
body.cc-product-layout #main-content .container {
    width: 100% !important;
    max-width: none !important;
    padding: 0 !important;
}

body.cc-product-layout #main-content .container::before,
body.cc-product-layout #sidebar {
    display: none !important;
}

body.cc-product-layout #left-area {
    float: none !important;
    width: 100% !important;
    padding: 0 !important;
}

body.cc-product-layout .woocommerce-breadcrumb {
    display: none !important;
}

body.cc-product-layout .cc-product-breadcrumb .woocommerce-breadcrumb {
    display: flex !important;
}

body.cc-product-layout .cc-product-page-shell {
    position: relative;
    isolation: isolate;
    width: min(94%, 1460px);
    margin: 0 auto;
    padding: 22px 0 46px;
}

/* Giant, low-contrast version of the actual product card behind the page. */
body.cc-product-layout .cc-product-page-shell::before {
    content: "";
    position: absolute;
    z-index: 0;
    top: 80px;
    left: 50%;
    width: min(82vw, 1040px);
    height: min(1180px, 105vw);
    transform: translateX(-50%) scale(1.08);
    background-image: var(--cc-product-bg-image, none);
    background-repeat: no-repeat;
    background-position: center top;
    background-size: contain;
    opacity: .035;
    filter: saturate(.55) blur(1.2px);
    pointer-events: none;
    -webkit-mask-image: linear-gradient(to bottom, transparent 0, #000 8%, #000 72%, transparent 100%);
    mask-image: linear-gradient(to bottom, transparent 0, #000 8%, #000 72%, transparent 100%);
}

body.cc-product-layout .cc-product-page-shell > * {
    position: relative;
    z-index: 1;
}

body.cc-product-layout .cc-product-breadcrumb {
    margin: 0 0 24px;
}

body.cc-product-layout .cc-product-breadcrumb .woocommerce-breadcrumb {
    align-items: center;
    flex-wrap: wrap;
    gap: 7px;
    margin: 0 !important;
    color: rgba(255, 255, 255, .48) !important;
    font-size: 12px !important;
    line-height: 1.45;
}

body.cc-product-layout .cc-product-breadcrumb a {
    color: rgba(255, 255, 255, .58) !important;
}

body.cc-product-layout .cc-product-breadcrumb a:hover {
    color: #e0b457 !important;
}

body.cc-product-layout .cc-breadcrumb-separator {
    color: rgba(224, 180, 87, .55);
}

body.cc-product-layout div.product.type-product.cc-product-single {
    display: block !important;
    width: 100%;
    margin: 0 !important;
}

body.cc-product-layout .cc-product-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.06fr) minmax(420px, .94fr);
    gap: 40px 46px;
    align-items: start;
    width: 100%;
}

body.cc-product-layout .cc-product-gallery-column,
body.cc-product-layout .cc-product-summary {
    min-width: 0;
}

body.cc-product-layout .cc-product-summary {
    float: none !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

body.cc-product-layout .cc-product-gallery-column .onsale {
    z-index: 5;
    top: 12px !important;
    left: 112px !important;
    min-width: 0 !important;
    min-height: 0 !important;
    padding: 7px 11px !important;
    border: 1px solid rgba(229, 185, 88, .68) !important;
    border-radius: 2px !important;
    background: rgba(5, 6, 6, .9) !important;
    color: #e5bd62 !important;
    font-size: 11px !important;
    line-height: 1 !important;
}

body.cc-product-layout .cc-product-gallery-column .woocommerce-product-gallery {
    float: none !important;
    display: grid !important;
    grid-template-columns: 1fr;
    gap: 12px;
    width: 100% !important;
    margin: 0 !important;
}

body.cc-product-layout .cc-product-gallery-column .woocommerce-product-gallery:has(.flex-control-thumbs) {
    grid-template-columns: 96px minmax(0, 1fr);
}

body.cc-product-layout .cc-product-gallery-column .woocommerce-product-gallery .flex-viewport,
body.cc-product-layout .cc-product-gallery-column .woocommerce-product-gallery > .woocommerce-product-gallery__wrapper {
    grid-column: 1;
    grid-row: 1;
    min-width: 0;
    overflow: hidden;
    border: 1px solid rgba(214, 169, 67, .70);
    border-radius: 7px;
    background:
        radial-gradient(circle at 50% 38%, rgba(219, 173, 79, .18), transparent 46%),
        linear-gradient(160deg, #131515 0%, #070808 100%);
    box-shadow: inset 0 0 34px rgba(0, 0, 0, .55), 0 15px 38px rgba(0, 0, 0, .25);
}

body.cc-product-layout .cc-product-gallery-column .woocommerce-product-gallery:has(.flex-control-thumbs) .flex-viewport,
body.cc-product-layout .cc-product-gallery-column .woocommerce-product-gallery:has(.flex-control-thumbs) > .woocommerce-product-gallery__wrapper {
    grid-column: 2;
}

body.cc-product-layout .cc-product-gallery-column .woocommerce-product-gallery__wrapper {
    margin: 0 !important;
}

body.cc-product-layout .cc-product-gallery-column .woocommerce-product-gallery__image,
body.cc-product-layout .cc-product-gallery-column .woocommerce-product-gallery__image a {
    display: flex !important;
    align-items: center;
    justify-content: center;
    min-height: 620px;
    background: transparent !important;
}

body.cc-product-layout .cc-product-gallery-column .woocommerce-product-gallery__image img {
    display: block;
    width: 100% !important;
    max-width: 620px !important;
    max-height: 700px;
    height: auto !important;
    margin: 0 auto !important;
    padding: 26px !important;
    object-fit: contain;
}

body.cc-product-layout .cc-product-gallery-column .flex-control-thumbs {
    grid-column: 1;
    grid-row: 1;
    display: flex !important;
    flex-direction: column;
    gap: 10px;
    width: 96px !important;
    margin: 0 !important;
    padding: 0 !important;
}

body.cc-product-layout .cc-product-gallery-column .flex-control-thumbs li {
    float: none !important;
    width: 96px !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden;
    border: 1px solid rgba(210, 164, 67, .26);
    border-radius: 6px;
    background: #0b0c0c;
}

body.cc-product-layout .cc-product-gallery-column .flex-control-thumbs img {
    display: block;
    width: 100% !important;
    min-height: 88px;
    padding: 6px !important;
    object-fit: contain;
    opacity: .70;
    transition: opacity .18s ease, box-shadow .18s ease;
}

body.cc-product-layout .cc-product-gallery-column .flex-control-thumbs img.flex-active,
body.cc-product-layout .cc-product-gallery-column .flex-control-thumbs img:hover {
    opacity: 1;
    box-shadow: inset 0 0 0 1px #d8aa45, 0 0 14px rgba(216, 170, 69, .18);
}

body.cc-product-layout .cc-product-gallery-column .woocommerce-product-gallery__trigger {
    top: 14px !important;
    right: 14px !important;
    width: 42px !important;
    height: 42px !important;
    border: 1px solid rgba(215, 170, 70, .40) !important;
    border-radius: 50% !important;
    background: rgba(5, 6, 6, .88) !important;
}

body.cc-product-layout .cc-product-summary .cc-product-kicker {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    margin: 0 0 12px;
    padding: 6px 12px;
    border: 1px solid rgba(213, 169, 67, .80);
    border-radius: 18px;
    background: rgba(213, 169, 67, .07);
    color: #e6bd61;
    font-size: 11px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: .08em;
    text-transform: uppercase;
}

body.cc-product-layout .cc-product-summary h1.product_title {
    margin: 0 0 9px !important;
    color: #f7f2e9 !important;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(34px, 2.8vw, 47px) !important;
    font-weight: 500 !important;
    line-height: 1.06 !important;
    letter-spacing: -.018em;
}

body.cc-product-layout .cc-product-subline {
    margin: 0 0 18px;
    color: rgba(255, 255, 255, .63);
    font-size: 14px;
    line-height: 1.5;
}

body.cc-product-layout .cc-product-price-stock {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px 18px;
    margin: 0 0 16px;
}

body.cc-product-layout .cc-product-price,
body.cc-product-layout .cc-product-price .price,
body.cc-product-layout .cc-product-price .woocommerce-Price-amount {
    color: #f2c35b !important;
    font-size: clamp(30px, 2.3vw, 40px) !important;
    font-weight: 850 !important;
    line-height: 1.05;
}

body.cc-product-layout .cc-product-stock {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    font-weight: 700;
}

body.cc-product-layout .cc-product-stock span {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: currentColor;
    box-shadow: 0 0 10px currentColor;
}

body.cc-product-layout .cc-product-stock.is-in-stock {
    color: #49d27d;
}

body.cc-product-layout .cc-product-stock.is-out-of-stock {
    color: #d76666;
}

body.cc-product-layout .cc-product-summary > p.stock,
body.cc-product-layout .cc-product-summary > .stock {
    display: none !important;
}

body.cc-product-layout .cc-product-summary form.cart,
body.cc-product-layout .cc-product-summary form.variations_form {
    display: flex !important;
    flex-wrap: wrap;
    align-items: stretch;
    gap: 12px;
    margin: 0 0 15px !important;
}

body.cc-product-layout .cc-product-summary form.variations_form .variations,
body.cc-product-layout .cc-product-summary form.variations_form .single_variation_wrap {
    flex: 1 1 100%;
    width: 100%;
}

body.cc-product-layout .cc-product-summary .quantity {
    float: none !important;
    display: grid !important;
    grid-template-columns: 36px 46px 36px;
    align-items: stretch;
    width: 118px !important;
    min-width: 118px;
    margin: 0 !important;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 5px;
    background: #080909;
}

body.cc-product-layout .cc-product-summary .quantity .qty {
    grid-column: 2;
    width: 46px !important;
    min-height: 54px;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    color: #fff !important;
    font-size: 15px !important;
    font-weight: 750;
    text-align: center;
    box-shadow: none !important;
    -moz-appearance: textfield;
}

body.cc-product-layout .cc-product-summary .quantity .qty::-webkit-outer-spin-button,
body.cc-product-layout .cc-product-summary .quantity .qty::-webkit-inner-spin-button {
    margin: 0;
    -webkit-appearance: none;
}

body.cc-product-layout .cc-qty-button {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 36px !important;
    min-width: 36px !important;
    min-height: 54px !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    color: rgba(255, 255, 255, .82) !important;
    font-size: 20px !important;
    font-weight: 400 !important;
    line-height: 1 !important;
    box-shadow: none !important;
    cursor: pointer;
}

body.cc-product-layout .cc-qty-minus {
    grid-column: 1;
    border-right: 1px solid rgba(255, 255, 255, .08) !important;
}

body.cc-product-layout .cc-qty-plus {
    grid-column: 3;
    border-left: 1px solid rgba(255, 255, 255, .08) !important;
}

body.cc-product-layout .cc-product-summary button.single_add_to_cart_button,
body.cc-product-layout .cc-product-summary .single_add_to_cart_button.button {
    flex: 1 1 270px;
    min-height: 54px;
    margin: 0 !important;
    padding: 14px 26px !important;
    border: 1px solid #f3cd74 !important;
    border-radius: 5px !important;
    background: linear-gradient(180deg, #f4d383 0%, #daa83f 100%) !important;
    color: #090909 !important;
    font-size: 13px !important;
    font-weight: 850 !important;
    line-height: 1.15 !important;
    letter-spacing: .015em;
    text-transform: uppercase;
    box-shadow: 0 8px 24px rgba(211, 161, 60, .16) !important;
}

body.cc-product-layout .cc-product-summary button.single_add_to_cart_button:hover,
body.cc-product-layout .cc-product-summary .single_add_to_cart_button.button:hover {
    background: linear-gradient(180deg, #f8dd95 0%, #e5b64e 100%) !important;
}

body.cc-product-layout .cc-product-benefits {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    margin: 0 0 15px;
    overflow: hidden;
    border: 1px solid rgba(211, 164, 65, .29);
    border-radius: 5px;
    background: rgba(255, 255, 255, .025);
}

body.cc-product-layout .cc-product-benefit {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-width: 0;
    min-height: 94px;
    padding: 12px 7px;
    border-right: 1px solid rgba(255, 255, 255, .07);
    text-align: center;
}

body.cc-product-layout .cc-product-benefit:last-child {
    border-right: 0;
}

body.cc-product-layout .cc-product-benefit-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 31px;
    height: 31px;
    color: #d9aa43;
}

body.cc-product-layout .cc-product-benefit-icon svg {
    width: 27px;
    height: 27px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

body.cc-product-layout .cc-product-benefit strong,
body.cc-product-layout .cc-product-benefit small {
    display: block;
}

body.cc-product-layout .cc-product-benefit strong {
    color: #f4efe5;
    font-size: 10px;
    font-weight: 750;
    line-height: 1.25;
}

body.cc-product-layout .cc-product-benefit small {
    margin-top: 3px;
    color: rgba(255, 255, 255, .50);
    font-size: 9px;
    line-height: 1.25;
}

body.cc-product-layout .cc-product-details-card {
    margin: 0 0 13px;
    padding: 16px 18px 10px;
    border: 1px solid rgba(214, 169, 67, .58);
    border-radius: 5px;
    background: linear-gradient(145deg, rgba(255, 255, 255, .026), rgba(255, 255, 255, .009));
    box-shadow: inset 0 0 28px rgba(210, 160, 55, .025);
}

body.cc-product-layout .cc-product-details-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, .09);
}

body.cc-product-layout .cc-product-details-card h2 {
    margin: 0 !important;
    padding: 0 !important;
    color: #f7f2e9 !important;
    font-size: 14px !important;
    font-weight: 800 !important;
    letter-spacing: .02em;
    text-transform: uppercase;
}

body.cc-product-layout .cc-product-psa-mark {
    color: #f1f1f1;
    font-size: 16px;
    font-style: italic;
    font-weight: 900;
    letter-spacing: -.04em;
}

body.cc-product-layout .cc-product-psa-mark strong {
    color: #d93d3d;
}

body.cc-product-layout .cc-product-details-card dl {
    margin: 0;
}

body.cc-product-layout .cc-product-details-card dl > div {
    display: grid;
    grid-template-columns: minmax(110px, .78fr) minmax(0, 1.5fr);
    gap: 16px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .07);
}

body.cc-product-layout .cc-product-details-card dl > div:last-child {
    border-bottom: 0;
}

body.cc-product-layout .cc-product-details-card dt,
body.cc-product-layout .cc-product-details-card dd {
    margin: 0;
    font-size: 11px;
    line-height: 1.35;
}

body.cc-product-layout .cc-product-details-card dt {
    color: rgba(255, 255, 255, .54);
}

body.cc-product-layout .cc-product-details-card dd {
    color: #f3eee5;
    font-weight: 600;
}

body.cc-product-layout .cc-product-highlight {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 11px;
    margin: 0;
    padding: 14px 16px;
    border: 1px solid rgba(217, 171, 68, .55);
    border-radius: 5px;
    background:
        radial-gradient(circle at 90% 0%, rgba(211, 163, 61, .10), transparent 42%),
        rgba(211, 163, 61, .035);
}

body.cc-product-layout .cc-product-highlight-icon {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    color: #e1b54e;
}

body.cc-product-layout .cc-product-highlight-icon svg {
    width: 28px;
    height: 28px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.45;
    stroke-linejoin: round;
}

body.cc-product-layout .cc-product-highlight strong {
    display: block;
    margin: 0 0 4px;
    color: #e9bd59;
    font-size: 12px;
    line-height: 1.35;
}

body.cc-product-layout .cc-product-highlight-copy,
body.cc-product-layout .cc-product-highlight-copy p {
    margin: 0 !important;
    color: rgba(255, 255, 255, .68) !important;
    font-size: 11px;
    line-height: 1.55;
}

body.cc-product-layout .cc-product-after-summary {
    width: 100%;
    margin-top: 28px;
}

body.cc-product-layout .cc-product-after-summary .woocommerce-tabs,
body.cc-product-layout .cc-product-after-summary .related.products,
body.cc-product-layout .cc-product-after-summary .upsells.products {
    float: none !important;
    width: 100% !important;
    clear: both !important;
}

body.cc-product-layout .cc-product-after-summary .woocommerce-tabs {
    margin: 0 !important;
    padding-top: 2px;
    border-top: 1px solid rgba(214, 169, 67, .30);
}

body.cc-product-layout .cc-product-after-summary .woocommerce-tabs ul.tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin: 0 0 15px !important;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
}

body.cc-product-layout .cc-product-after-summary .woocommerce-tabs ul.tabs::before,
body.cc-product-layout .cc-product-after-summary .woocommerce-tabs ul.tabs li::before,
body.cc-product-layout .cc-product-after-summary .woocommerce-tabs ul.tabs li::after {
    display: none !important;
}

body.cc-product-layout .cc-product-after-summary .woocommerce-tabs ul.tabs li {
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
}

body.cc-product-layout .cc-product-after-summary .woocommerce-tabs ul.tabs li a {
    display: block;
    padding: 11px 1px !important;
    border-bottom: 2px solid transparent;
    color: rgba(255, 255, 255, .58) !important;
    font-size: 12px;
    font-weight: 700 !important;
    letter-spacing: .02em;
    text-transform: uppercase;
}

body.cc-product-layout .cc-product-after-summary .woocommerce-tabs ul.tabs li.active a,
body.cc-product-layout .cc-product-after-summary .woocommerce-tabs ul.tabs li a:hover {
    border-bottom-color: #e2b653;
    color: #f1c867 !important;
}

body.cc-product-layout .cc-product-after-summary .woocommerce-tabs .panel {
    margin: 0 !important;
    padding: 0 0 25px !important;
    color: rgba(255, 255, 255, .70) !important;
    font-size: 13px;
    line-height: 1.7;
}

body.cc-product-layout .cc-product-after-summary .woocommerce-tabs .panel h2:first-child {
    display: none;
}

body.cc-product-layout .cc-product-after-summary .related.products,
body.cc-product-layout .cc-product-after-summary .upsells.products {
    margin: 8px 0 0 !important;
    padding-top: 24px;
    border-top: 1px solid rgba(214, 169, 67, .30);
}

body.cc-product-layout .cc-product-after-summary .related.products > h2,
body.cc-product-layout .cc-product-after-summary .upsells.products > h2 {
    margin: 0 0 18px !important;
    color: #f7f1e7 !important;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 31px !important;
    font-weight: 500 !important;
    line-height: 1.15;
}

body.cc-product-layout .cc-product-after-summary .related.products ul.products,
body.cc-product-layout .cc-product-after-summary .upsells.products ul.products {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 17px;
    margin: 0 !important;
}

body.cc-product-layout .cc-product-after-summary .related.products ul.products::before,
body.cc-product-layout .cc-product-after-summary .related.products ul.products::after,
body.cc-product-layout .cc-product-after-summary .upsells.products ul.products::before,
body.cc-product-layout .cc-product-after-summary .upsells.products ul.products::after {
    display: none !important;
}

body.cc-product-layout .cc-product-after-summary ul.products li.product {
    float: none !important;
    width: auto !important;
    margin: 0 !important;
    padding: 12px !important;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 6px !important;
    background:
        radial-gradient(circle at 80% 5%, rgba(210, 163, 66, .08), transparent 34%),
        linear-gradient(160deg, rgba(255, 255, 255, .035), rgba(255, 255, 255, .012));
}

body.cc-product-layout .cc-product-after-summary ul.products li.product img {
    margin: 0 0 12px !important;
    background: #0b0c0c;
}

body.cc-product-layout .cc-product-after-summary ul.products li.product .woocommerce-loop-product__title {
    min-height: 3.2em;
    color: #f6f2e9 !important;
    font-size: 14px !important;
    line-height: 1.45;
}

body.cc-product-layout .cc-product-after-summary ul.products li.product .price {
    color: #efc35f !important;
    font-size: 16px !important;
    font-weight: 800;
}

body.cc-product-layout .cc-product-after-summary ul.products li.product .button {
    width: 100%;
    margin-top: 10px !important;
    padding: 10px 12px !important;
    border: 1px solid rgba(224, 177, 75, .65) !important;
    border-radius: 4px !important;
    background: rgba(224, 177, 75, .08) !important;
    color: #e8bf65 !important;
    font-size: 11px !important;
    text-align: center;
}

@media (max-width: 1180px) {
    body.cc-product-layout .cc-product-hero {
        grid-template-columns: minmax(0, 1fr) minmax(370px, .90fr);
        gap: 32px;
    }

    body.cc-product-layout .cc-product-gallery-column .woocommerce-product-gallery__image,
    body.cc-product-layout .cc-product-gallery-column .woocommerce-product-gallery__image a {
        min-height: 520px;
    }

    body.cc-product-layout .cc-product-benefits {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    body.cc-product-layout .cc-product-benefit:nth-child(2) {
        border-right: 0;
    }

    body.cc-product-layout .cc-product-benefit:nth-child(-n+2) {
        border-bottom: 1px solid rgba(255, 255, 255, .07);
    }
}

@media (max-width: 980px) {
    body.cc-product-layout .cc-product-page-shell {
        width: min(94%, 920px);
        padding-top: 18px;
    }

    body.cc-product-layout .cc-product-page-shell::before {
        top: 120px;
        width: min(94vw, 760px);
        height: 980px;
        opacity: .028;
    }

    body.cc-product-layout .cc-product-hero {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    body.cc-product-layout .cc-product-gallery-column .woocommerce-product-gallery,
    body.cc-product-layout .cc-product-gallery-column .woocommerce-product-gallery:has(.flex-control-thumbs) {
        grid-template-columns: 1fr;
    }

    body.cc-product-layout .cc-product-gallery-column .woocommerce-product-gallery .flex-viewport,
    body.cc-product-layout .cc-product-gallery-column .woocommerce-product-gallery > .woocommerce-product-gallery__wrapper,
    body.cc-product-layout .cc-product-gallery-column .woocommerce-product-gallery:has(.flex-control-thumbs) .flex-viewport,
    body.cc-product-layout .cc-product-gallery-column .woocommerce-product-gallery:has(.flex-control-thumbs) > .woocommerce-product-gallery__wrapper {
        grid-column: 1;
        grid-row: 1;
    }

    body.cc-product-layout .cc-product-gallery-column .flex-control-thumbs {
        grid-column: 1;
        grid-row: 2;
        display: grid !important;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 8px;
        width: 100% !important;
    }

    body.cc-product-layout .cc-product-gallery-column .flex-control-thumbs li {
        width: 100% !important;
    }

    body.cc-product-layout .cc-product-gallery-column .flex-control-thumbs img {
        min-height: 0;
        aspect-ratio: 1 / 1;
    }

    body.cc-product-layout .cc-product-gallery-column .woocommerce-product-gallery__image,
    body.cc-product-layout .cc-product-gallery-column .woocommerce-product-gallery__image a {
        min-height: 0;
    }

    body.cc-product-layout .cc-product-gallery-column .woocommerce-product-gallery__image img {
        max-height: 610px;
        padding: 20px !important;
    }

    body.cc-product-layout .cc-product-summary h1.product_title {
        font-size: clamp(30px, 7vw, 42px) !important;
    }

    body.cc-product-layout .cc-product-after-summary .related.products ul.products,
    body.cc-product-layout .cc-product-after-summary .upsells.products ul.products {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 560px) {
    body.cc-product-layout .cc-product-page-shell {
        width: calc(100% - 24px);
        padding-bottom: 32px;
    }

    body.cc-product-layout .cc-product-breadcrumb {
        margin-bottom: 17px;
    }

    body.cc-product-layout .cc-product-summary h1.product_title {
        font-size: clamp(28px, 9vw, 36px) !important;
    }

    body.cc-product-layout .cc-product-summary .quantity {
        grid-template-columns: 34px 42px 34px;
        width: 110px !important;
        min-width: 110px;
    }

    body.cc-product-layout .cc-product-summary .quantity .qty {
        width: 42px !important;
    }

    body.cc-product-layout .cc-qty-button {
        width: 34px !important;
        min-width: 34px !important;
    }

    body.cc-product-layout .cc-product-summary button.single_add_to_cart_button,
    body.cc-product-layout .cc-product-summary .single_add_to_cart_button.button {
        min-width: 0;
        padding-left: 13px !important;
        padding-right: 13px !important;
        font-size: 11px !important;
    }

    body.cc-product-layout .cc-product-benefits {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    body.cc-product-layout .cc-product-benefit,
    body.cc-product-layout .cc-product-benefit:nth-child(2) {
        border-right: 1px solid rgba(255, 255, 255, .07);
        border-bottom: 1px solid rgba(255, 255, 255, .07);
    }

    body.cc-product-layout .cc-product-benefit:nth-child(2n) {
        border-right: 0;
    }

    body.cc-product-layout .cc-product-benefit:nth-last-child(-n+2) {
        border-bottom: 0;
    }

    body.cc-product-layout .cc-product-details-card dl > div {
        grid-template-columns: 100px minmax(0, 1fr);
        gap: 10px;
    }

    body.cc-product-layout .cc-product-highlight {
        grid-template-columns: 31px minmax(0, 1fr);
        padding: 13px;
    }

    body.cc-product-layout .cc-product-after-summary .related.products ul.products,
    body.cc-product-layout .cc-product-after-summary .upsells.products ul.products {
        grid-template-columns: 1fr;
    }
}

/* ================================
   1.0.8 PRODUCT GALLERY ZOOM + PSA STAMP
   ================================ */
body.cc-product-layout .cc-product-gallery-column {
    position: relative;
}

/* Replace WooCommerce/Divi's inconsistent zoom trigger with our own control. */
body.cc-product-layout .cc-product-gallery-column .woocommerce-product-gallery__trigger {
    display: none !important;
}

body.cc-product-layout .cc-product-zoom-button {
    position: absolute;
    z-index: 18;
    top: 16px;
    right: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin: 0;
    padding: 0;
    border: 1px solid rgba(216, 170, 69, .58);
    border-radius: 50%;
    background: rgba(5, 6, 6, .88);
    color: #e3b84f;
    box-shadow: 0 7px 24px rgba(0, 0, 0, .34), inset 0 0 0 1px rgba(255,255,255,.025);
    cursor: zoom-in;
    appearance: none;
    -webkit-appearance: none;
    transition: border-color .18s ease, background .18s ease, color .18s ease, transform .18s ease;
}

body.cc-product-layout .cc-product-zoom-button:hover,
body.cc-product-layout .cc-product-zoom-button:focus-visible {
    border-color: #e4b950;
    background: #101111;
    color: #ffd66d;
    transform: scale(1.04);
}

body.cc-product-layout .cc-product-zoom-button:focus-visible {
    outline: 2px solid rgba(228, 185, 80, .38);
    outline-offset: 3px;
}

body.cc-product-layout .cc-product-zoom-button svg {
    width: 23px;
    height: 23px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* PSA Gem Mint stamp: only rendered for CACSlabs-managed products. */
body.cc-product-layout .cc-product-psa-stamp {
    position: absolute;
    z-index: 15;
    top: 28px;
    left: 28px;
    display: block;
    width: clamp(112px, 10.5vw, 154px) !important;
    max-width: 154px !important;
    height: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    opacity: .92;
    object-fit: contain;
    filter: drop-shadow(0 8px 17px rgba(0, 0, 0, .48)) drop-shadow(0 0 8px rgba(226, 177, 48, .08));
    pointer-events: none;
    user-select: none;
}

body.cc-product-layout .cc-product-gallery-column:has(.flex-control-thumbs) .cc-product-psa-stamp {
    left: 136px;
}

/* Full-screen product image viewer. */
body.cc-product-zoom-open {
    overflow: hidden !important;
}

.cc-product-zoom-modal {
    position: fixed;
    z-index: 2147483000;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    background: rgba(0, 0, 0, .92);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.cc-product-zoom-stage {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    overflow: auto;
    overscroll-behavior: contain;
}

.cc-product-zoom-image {
    display: block;
    width: auto;
    height: auto;
    max-width: min(92vw, 1500px);
    max-height: 90vh;
    margin: auto;
    object-fit: contain;
    cursor: zoom-in;
    transition: width .18s ease, max-width .18s ease, max-height .18s ease;
    user-select: none;
    -webkit-user-drag: none;
}

.cc-product-zoom-image.is-zoomed {
    width: min(1550px, 145vw);
    max-width: none;
    max-height: none;
    cursor: zoom-out;
}

.cc-product-zoom-close {
    position: fixed;
    z-index: 2;
    top: 20px;
    right: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin: 0;
    padding: 0 0 4px;
    border: 1px solid rgba(222, 177, 73, .62);
    border-radius: 50%;
    background: rgba(8, 9, 9, .92);
    color: #f2cb70;
    font-size: 32px;
    font-weight: 300;
    line-height: 1;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
}

.cc-product-zoom-close:hover,
.cc-product-zoom-close:focus-visible {
    background: #151616;
    color: #fff0bc;
}

@media (max-width: 980px) {
    body.cc-product-layout .cc-product-gallery-column:has(.flex-control-thumbs) .cc-product-psa-stamp,
    body.cc-product-layout .cc-product-psa-stamp {
        top: 22px;
        left: 22px;
        width: clamp(94px, 20vw, 132px) !important;
    }

    body.cc-product-layout .cc-product-zoom-button {
        top: 14px;
        right: 14px;
        width: 46px;
        height: 46px;
    }
}

@media (max-width: 560px) {
    body.cc-product-layout .cc-product-gallery-column:has(.flex-control-thumbs) .cc-product-psa-stamp,
    body.cc-product-layout .cc-product-psa-stamp {
        top: 16px;
        left: 16px;
        width: 90px !important;
    }

    body.cc-product-layout .cc-product-zoom-button {
        top: 12px;
        right: 12px;
        width: 42px;
        height: 42px;
    }

    body.cc-product-layout .cc-product-zoom-button svg {
        width: 20px;
        height: 20px;
    }

    .cc-product-zoom-modal {
        padding: 14px;
    }

    .cc-product-zoom-close {
        top: 12px;
        right: 12px;
        width: 44px;
        height: 44px;
    }

    .cc-product-zoom-image {
        max-width: 96vw;
        max-height: 88vh;
    }

    .cc-product-zoom-image.is-zoomed {
        width: 175vw;
    }
}


/* ================================
   1.0.9 PRODUCT BACKDROP + DESCRIPTION CARD
   ================================ */
/* Bring the oversized product watermark closer so the artwork/slab reads as
 * atmosphere instead of a small full-product silhouette. */
body.cc-product-layout .cc-product-page-shell::before {
    top: 28px;
    left: 50%;
    width: min(118vw, 1760px);
    height: min(1460px, 118vw);
    transform: translateX(-50%) scale(1.22);
    background-position: center 9%;
    background-size: 142% auto;
    opacity: .042;
    filter: saturate(.5) blur(1.35px);
    -webkit-mask-image: linear-gradient(to bottom, transparent 0, #000 5%, #000 76%, transparent 100%);
    mask-image: linear-gradient(to bottom, transparent 0, #000 5%, #000 76%, transparent 100%);
}

/* Description now uses the same premium dark card language as Productdetails. */
body.cc-product-layout .cc-product-after-summary .woocommerce-tabs {
    margin-top: 0 !important;
    padding: 0 20px 20px !important;
    overflow: hidden;
    border: 1px solid rgba(214, 169, 67, .58) !important;
    border-radius: 6px !important;
    background:
        radial-gradient(circle at 88% 0%, rgba(211, 163, 61, .055), transparent 36%),
        linear-gradient(145deg, rgba(255, 255, 255, .026), rgba(255, 255, 255, .009)) !important;
    box-shadow: inset 0 0 28px rgba(210, 160, 55, .025);
}

body.cc-product-layout .cc-product-after-summary .woocommerce-tabs ul.tabs {
    gap: 26px;
    margin: 0 -20px 18px !important;
    padding: 0 20px !important;
    border-bottom: 1px solid rgba(255, 255, 255, .08) !important;
}

body.cc-product-layout .cc-product-after-summary .woocommerce-tabs ul.tabs li,
body.cc-product-layout .cc-product-after-summary .woocommerce-tabs ul.tabs li.active {
    border: 0 !important;
    background: transparent !important;
}

body.cc-product-layout .cc-product-after-summary .woocommerce-tabs ul.tabs li a {
    padding: 14px 2px 12px !important;
    border-bottom: 2px solid transparent !important;
    background: transparent !important;
    color: rgba(255, 255, 255, .62) !important;
}

body.cc-product-layout .cc-product-after-summary .woocommerce-tabs ul.tabs li.active a,
body.cc-product-layout .cc-product-after-summary .woocommerce-tabs ul.tabs li a:hover {
    border-bottom-color: #e2b653 !important;
    background: transparent !important;
    color: #f1c867 !important;
}

body.cc-product-layout .cc-product-after-summary .woocommerce-tabs .panel {
    margin: 0 !important;
    padding: 0 0 2px !important;
    color: rgba(255, 255, 255, .76) !important;
    font-size: 13px;
    line-height: 1.75;
}

body.cc-product-layout .cc-product-after-summary .woocommerce-tabs .panel > *:first-child {
    margin-top: 0 !important;
}

body.cc-product-layout .cc-product-after-summary .woocommerce-tabs .panel > *:last-child {
    margin-bottom: 0 !important;
}

body.cc-product-layout .cc-product-after-summary .woocommerce-tabs .graded-card-copy {
    margin: 0 0 18px;
}

body.cc-product-layout .cc-product-after-summary .woocommerce-tabs .graded-card-copy p {
    margin: 0 0 10px !important;
    color: rgba(255, 255, 255, .76) !important;
}

/* Override CACSlabs' light warning panel on the dark Card & Conquer layout. */
body.cc-product-layout .cc-product-after-summary .woocommerce-tabs .graded-card-condition-notice {
    margin: 18px 0 0 !important;
    padding: 16px 18px !important;
    border: 1px solid rgba(217, 171, 68, .52) !important;
    border-left: 3px solid #d8aa45 !important;
    border-radius: 5px !important;
    background:
        radial-gradient(circle at 92% 0%, rgba(211, 163, 61, .09), transparent 40%),
        rgba(211, 163, 61, .035) !important;
    color: rgba(255, 255, 255, .72) !important;
    box-shadow: inset 0 0 22px rgba(210, 160, 55, .025);
}

body.cc-product-layout .cc-product-after-summary .woocommerce-tabs .graded-card-condition-notice strong {
    display: block;
    margin: 0 0 7px !important;
    color: #e9bd59 !important;
    font-size: 12px;
    line-height: 1.35;
}

body.cc-product-layout .cc-product-after-summary .woocommerce-tabs .graded-card-condition-notice p {
    margin: 0 !important;
    color: rgba(255, 255, 255, .68) !important;
    line-height: 1.65;
}

/* The same slab facts are already shown in the dedicated Productdetails card. */
body.cc-product-layout .cc-product-after-summary .woocommerce-tabs .graded-card-details {
    display: none !important;
}

@media (max-width: 980px) {
    body.cc-product-layout .cc-product-page-shell::before {
        top: 66px;
        width: 132vw;
        height: 1180px;
        transform: translateX(-50%) scale(1.16);
        background-size: 150% auto;
        background-position: center 7%;
        opacity: .033;
    }

    body.cc-product-layout .cc-product-after-summary .woocommerce-tabs {
        padding: 0 16px 17px !important;
    }

    body.cc-product-layout .cc-product-after-summary .woocommerce-tabs ul.tabs {
        margin-left: -16px !important;
        margin-right: -16px !important;
        padding-left: 16px !important;
        padding-right: 16px !important;
    }
}

@media (max-width: 560px) {
    body.cc-product-layout .cc-product-page-shell::before {
        top: 88px;
        width: 162vw;
        height: 980px;
        transform: translateX(-50%) scale(1.1);
        background-size: 158% auto;
        opacity: .026;
    }

    body.cc-product-layout .cc-product-after-summary .woocommerce-tabs {
        padding: 0 13px 15px !important;
    }

    body.cc-product-layout .cc-product-after-summary .woocommerce-tabs ul.tabs {
        gap: 18px;
        margin-left: -13px !important;
        margin-right: -13px !important;
        padding-left: 13px !important;
        padding-right: 13px !important;
    }

    body.cc-product-layout .cc-product-after-summary .woocommerce-tabs .graded-card-condition-notice {
        padding: 14px !important;
    }
}


/* ================================================================
   PRODUCT VARIATION PICKER - Card & Conquer styled dropdown
   Keeps the native WooCommerce select in sync but replaces the OS
   dropdown visually, so PSA certificate choices stay dark/gold.
   ================================================================ */
body.cc-product-layout .cc-product-summary form.variations_form table.variations {
    width: 100% !important;
    margin: 2px 0 4px !important;
    border: 0 !important;
    border-collapse: separate !important;
    border-spacing: 0 12px !important;
    background: transparent !important;
}

body.cc-product-layout .cc-product-summary form.variations_form table.variations tbody,
body.cc-product-layout .cc-product-summary form.variations_form table.variations tr {
    width: 100%;
}

body.cc-product-layout .cc-product-summary form.variations_form table.variations tr {
    display: grid;
    grid-template-columns: minmax(150px, 220px) minmax(250px, 1fr);
    align-items: center;
    gap: 18px;
}

body.cc-product-layout .cc-product-summary form.variations_form table.variations th,
body.cc-product-layout .cc-product-summary form.variations_form table.variations td {
    width: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
    vertical-align: middle !important;
}

body.cc-product-layout .cc-product-summary form.variations_form table.variations th.label {
    text-align: left !important;
}

body.cc-product-layout .cc-product-summary form.variations_form table.variations th.label label {
    display: block;
    margin: 0;
    color: #fff !important;
    font-size: 15px;
    font-weight: 800;
    line-height: 1.3;
}

body.cc-product-layout .cc-product-summary form.variations_form table.variations td.value {
    position: relative;
    min-width: 0;
}

body.cc-product-layout .cc-product-summary select.cc-enhanced-variation-native {
    position: absolute !important;
    left: 0 !important;
    bottom: 0 !important;
    width: 1px !important;
    height: 1px !important;
    min-width: 1px !important;
    min-height: 1px !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
    clip: rect(0 0 0 0) !important;
    clip-path: inset(50%) !important;
}

body.cc-product-layout .cc-variation-picker {
    position: relative;
    z-index: 40;
    width: min(100%, 390px);
}

body.cc-product-layout .cc-variation-picker.is-open {
    z-index: 120;
}

body.cc-product-layout .cc-variation-picker-toggle {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    width: 100%;
    min-height: 54px;
    margin: 0;
    padding: 0 48px 0 17px;
    border: 1px solid rgba(216, 169, 65, .72);
    border-radius: 6px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .035), transparent),
        #0b0d0d;
    color: #f6f2e8;
    font: inherit;
    font-size: 14px;
    font-weight: 650;
    line-height: 1.2;
    text-align: left;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .015), 0 8px 22px rgba(0, 0, 0, .22);
    cursor: pointer;
    transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

body.cc-product-layout .cc-variation-picker-toggle::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 18px;
    width: 9px;
    height: 9px;
    margin-top: -7px;
    border-right: 2px solid #d7a83f;
    border-bottom: 2px solid #d7a83f;
    transform: rotate(45deg);
    transition: transform .18s ease, margin .18s ease;
}

body.cc-product-layout .cc-variation-picker.is-open .cc-variation-picker-toggle,
body.cc-product-layout .cc-variation-picker-toggle:hover,
body.cc-product-layout .cc-variation-picker-toggle:focus-visible {
    border-color: #f0c45f;
    background:
        linear-gradient(180deg, rgba(214, 166, 57, .08), transparent),
        #0d0f0f;
    outline: 0;
    box-shadow: 0 0 0 2px rgba(216, 169, 65, .12), 0 10px 28px rgba(0, 0, 0, .34);
}

body.cc-product-layout .cc-variation-picker.is-open .cc-variation-picker-toggle::after {
    margin-top: -2px;
    transform: rotate(225deg);
}

body.cc-product-layout .cc-variation-picker-toggle.is-placeholder {
    color: rgba(255, 255, 255, .66);
    font-weight: 550;
}

body.cc-product-layout .cc-variation-picker-panel {
    position: absolute;
    top: calc(100% + 7px);
    left: 0;
    right: 0;
    display: none;
    max-height: 290px;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 7px;
    border: 1px solid rgba(216, 169, 65, .72);
    border-radius: 7px;
    background: rgba(8, 10, 10, .985);
    box-shadow: 0 20px 46px rgba(0, 0, 0, .58), inset 0 0 0 1px rgba(255, 255, 255, .02);
    backdrop-filter: blur(14px);
}

body.cc-product-layout .cc-variation-picker.is-open .cc-variation-picker-panel {
    display: block;
}

body.cc-product-layout .cc-variation-picker-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
    min-height: 43px;
    margin: 0;
    padding: 10px 12px;
    border: 0;
    border-radius: 4px;
    background: transparent;
    color: rgba(255, 255, 255, .84);
    font: inherit;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;
    text-align: left;
    cursor: pointer;
    transition: color .14s ease, background .14s ease;
}

body.cc-product-layout .cc-variation-picker-option::after {
    content: '';
    flex: 0 0 auto;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: transparent;
    box-shadow: 0 0 0 1px rgba(216, 169, 65, .35);
}

body.cc-product-layout .cc-variation-picker-option:hover,
body.cc-product-layout .cc-variation-picker-option:focus-visible {
    outline: 0;
    background: rgba(216, 169, 65, .11);
    color: #f5ce70;
}

body.cc-product-layout .cc-variation-picker-option.is-selected {
    background: linear-gradient(90deg, rgba(216, 169, 65, .18), rgba(216, 169, 65, .045));
    color: #f5ce70;
}

body.cc-product-layout .cc-variation-picker-option.is-selected::after {
    background: #e0ad42;
    box-shadow: 0 0 9px rgba(224, 173, 66, .55);
}

body.cc-product-layout .cc-variation-picker-option:disabled {
    display: none;
}

body.cc-product-layout .cc-variation-picker-panel::-webkit-scrollbar {
    width: 8px;
}

body.cc-product-layout .cc-variation-picker-panel::-webkit-scrollbar-track {
    background: #0a0b0b;
}

body.cc-product-layout .cc-variation-picker-panel::-webkit-scrollbar-thumb {
    border: 2px solid #0a0b0b;
    border-radius: 8px;
    background: #8f6b22;
}

body.cc-product-layout .cc-product-summary form.variations_form .reset_variations {
    display: inline-block;
    margin-top: 8px;
    color: #c9a953 !important;
    font-size: 12px;
    font-weight: 650;
    text-decoration: none !important;
}

body.cc-product-layout .cc-product-summary form.variations_form .reset_variations:hover {
    color: #f0c45f !important;
}

body.cc-product-layout .cc-product-summary .woocommerce-variation-description {
    margin: 3px 0 12px;
    color: rgba(255, 255, 255, .76);
    font-size: 13px;
    line-height: 1.5;
}

body.cc-product-layout .cc-product-summary .woocommerce-variation-description p {
    margin: 0;
}

@media (max-width: 680px) {
    body.cc-product-layout .cc-product-summary form.variations_form table.variations tr {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    body.cc-product-layout .cc-variation-picker {
        width: 100%;
        max-width: none;
    }
}

/* ================================================================
   1.0.11 ATMOSPHERIC PRODUCT BACKDROP
   The supplied Card & Conquer scene is the primary atmosphere layer.
   The actual product image remains as a second, very subtle watermark,
   now center/center, closer and a little more visible as requested.
   ================================================================ */
body.cc-product-layout .cc-product-page-shell {
    z-index: 0;
}

/* Full-width black/gold scene behind the complete upper product experience. */
body.cc-product-layout .cc-product-page-shell::after {
    content: "";
    position: absolute;
    z-index: 0;
    top: -34px;
    left: 50%;
    width: 100vw;
    height: 1180px;
    transform: translateX(-50%) scale(1.045);
    transform-origin: center center;
    background-image:
        linear-gradient(180deg, rgba(5, 6, 6, .12) 0%, rgba(5, 6, 6, .22) 45%, rgba(5, 6, 6, .70) 83%, #050606 100%),
        radial-gradient(circle at 50% 44%, rgba(215, 168, 67, .06), transparent 47%),
        var(--cc-product-scene-image, none);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    opacity: .78;
    filter: saturate(.90) contrast(1.02);
    pointer-events: none;
    -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 78%, rgba(0, 0, 0, .88) 88%, transparent 100%);
    mask-image: linear-gradient(to bottom, #000 0%, #000 78%, rgba(0, 0, 0, .88) 88%, transparent 100%);
}

/* Product-specific image: more centered, more zoomed and just more visible. */
body.cc-product-layout .cc-product-page-shell::before {
    z-index: 1;
    top: 12px;
    left: 50%;
    width: min(126vw, 1900px);
    height: 1320px;
    transform: translateX(-50%) scale(1.27);
    transform-origin: center center;
    background-position: center center;
    background-size: 158% auto;
    opacity: .062;
    filter: saturate(.66) contrast(1.04) blur(.65px);
    mix-blend-mode: screen;
    -webkit-mask-image: radial-gradient(ellipse at center, #000 0%, #000 46%, rgba(0,0,0,.78) 66%, transparent 88%);
    mask-image: radial-gradient(ellipse at center, #000 0%, #000 46%, rgba(0,0,0,.78) 66%, transparent 88%);
}

body.cc-product-layout .cc-product-page-shell > * {
    z-index: 2;
}

/* Make the foreground cards read cleanly on top of the new scene. */
body.cc-product-layout .cc-product-gallery-column .woocommerce-product-gallery .flex-viewport,
body.cc-product-layout .cc-product-gallery-column .woocommerce-product-gallery > .woocommerce-product-gallery__wrapper,
body.cc-product-layout .cc-product-details-card,
body.cc-product-layout .cc-product-highlight,
body.cc-product-layout .cc-product-benefits,
body.cc-product-layout .cc-product-after-summary .woocommerce-tabs {
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
}

@media (max-width: 980px) {
    body.cc-product-layout .cc-product-page-shell::after {
        top: -22px;
        width: 108vw;
        height: 1240px;
        transform: translateX(-50%) scale(1.06);
        background-position: center center;
        opacity: .70;
    }

    body.cc-product-layout .cc-product-page-shell::before {
        top: 48px;
        width: 148vw;
        height: 1180px;
        transform: translateX(-50%) scale(1.19);
        background-position: center center;
        background-size: 168% auto;
        opacity: .050;
    }
}

@media (max-width: 560px) {
    body.cc-product-layout .cc-product-page-shell::after {
        top: -12px;
        width: 118vw;
        height: 1080px;
        transform: translateX(-50%) scale(1.08);
        background-position: center center;
        opacity: .64;
    }

    body.cc-product-layout .cc-product-page-shell::before {
        top: 70px;
        width: 184vw;
        height: 980px;
        transform: translateX(-50%) scale(1.12);
        background-position: center center;
        background-size: 178% auto;
        opacity: .040;
    }
}


/* ================================================================
   1.0.12 PRODUCT POLISH + SEARCH + CART
   ================================================================ */

/* Variation row: line the certificate label and picker up as one deliberate row. */
body.cc-product-layout .cc-product-summary form.variations_form table.variations tr {
    grid-template-columns: minmax(190px, 220px) minmax(0, 1fr);
    gap: 22px;
    align-items: center;
}

body.cc-product-layout .cc-product-summary form.variations_form table.variations th.label {
    display: flex !important;
    align-items: center;
    min-height: 56px;
}

body.cc-product-layout .cc-product-summary form.variations_form table.variations th.label label {
    width: 100%;
    line-height: 1.25;
}

body.cc-product-layout .cc-product-summary form.variations_form table.variations td.value {
    display: flex !important;
    align-items: center;
    width: 100% !important;
    min-height: 56px;
}

body.cc-product-layout .cc-variation-picker {
    width: 100%;
    max-width: none;
}

body.cc-product-layout .cc-variation-picker-toggle {
    min-height: 56px;
    border-radius: 7px;
}

/* Put the slab condition notice in the natural empty area below the gallery. */
body.cc-product-layout .cc-slab-condition-card {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 13px;
    margin: 18px 0 0;
    padding: 17px 18px;
    border: 1px solid rgba(217, 171, 68, .52);
    border-radius: 6px;
    background:
        radial-gradient(circle at 92% 0%, rgba(211, 163, 61, .11), transparent 42%),
        linear-gradient(145deg, rgba(255,255,255,.028), rgba(211,163,61,.028));
    color: rgba(255, 255, 255, .72);
    box-shadow: inset 0 0 28px rgba(210,160,55,.026), 0 14px 36px rgba(0,0,0,.16);
    -webkit-backdrop-filter: blur(3px);
    backdrop-filter: blur(3px);
}

body.cc-product-layout .cc-slab-condition-icon {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    color: #e2b653;
}

body.cc-product-layout .cc-slab-condition-icon svg {
    width: 29px;
    height: 29px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.55;
    stroke-linecap: round;
    stroke-linejoin: round;
}

body.cc-product-layout .cc-slab-condition-card strong {
    display: block;
    margin: 0 0 6px;
    color: #edc261;
    font-size: 12px;
    line-height: 1.35;
}

body.cc-product-layout .cc-slab-condition-card p {
    margin: 0 !important;
    color: rgba(255,255,255,.69) !important;
    font-size: 11px;
    line-height: 1.65;
}

/* Description is now a content panel, not a tab with a redundant heading. */
body.cc-product-layout .cc-product-description-panel {
    margin: 0 0 34px;
    padding: 22px 24px;
    border: 1px solid rgba(214,169,67,.40);
    border-radius: 6px;
    background:
        radial-gradient(circle at 88% 0%, rgba(211,163,61,.055), transparent 38%),
        linear-gradient(145deg, rgba(255,255,255,.026), rgba(255,255,255,.009));
    color: rgba(255,255,255,.77);
    font-size: 13px;
    line-height: 1.8;
    box-shadow: inset 0 0 28px rgba(210,160,55,.022);
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
}

body.cc-product-layout .cc-product-description-panel > *:first-child,
body.cc-product-layout .cc-product-description-panel .graded-card-copy > *:first-child {
    margin-top: 0 !important;
}

body.cc-product-layout .cc-product-description-panel > *:last-child,
body.cc-product-layout .cc-product-description-panel .graded-card-copy > *:last-child {
    margin-bottom: 0 !important;
}

body.cc-product-layout .cc-product-description-panel p,
body.cc-product-layout .cc-product-description-panel li {
    color: rgba(255,255,255,.77) !important;
}

body.cc-product-layout .cc-product-description-panel .graded-card-condition-notice,
body.cc-product-layout .cc-product-description-panel .graded-card-details {
    display: none !important;
}

/* -------------------------------
   Product search results
   ------------------------------- */
body.cc-product-search-layout,
body.cc-product-search-layout #page-container,
body.cc-product-search-layout #main-content {
    background: #050606 !important;
    color: #f4efe5;
}

body.cc-product-search-layout #main-content {
    position: relative;
    overflow: hidden;
    min-height: 72vh;
}

body.cc-product-search-layout #main-content::before,
body.woocommerce-cart #main-content::before {
    content: '';
    position: absolute;
    z-index: 0;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(5,6,6,.30), #050606 820px),
        var(--ccpc-backdrop-image, url('https://cardandconquer.com/wp-content/uploads/2026/09/backdrop-cardandconquer.png')) center top / cover no-repeat;
    opacity: .62;
    pointer-events: none;
}

body.cc-product-search-layout #main-content > *,
body.woocommerce-cart #main-content > * {
    position: relative;
    z-index: 1;
}

.cc-search-page-shell {
    width: min(94%, 1380px);
    margin: 0 auto;
    padding: 50px 0 72px;
}

.cc-search-page-head {
    max-width: 820px;
    margin: 0 0 28px;
}

.cc-search-eyebrow {
    display: block;
    margin-bottom: 7px;
    color: #d9aa43;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.cc-search-page-head h1 {
    margin: 0 0 7px !important;
    padding: 0 !important;
    color: #f7f2e9 !important;
    font-size: clamp(30px, 4vw, 48px) !important;
    line-height: 1.08 !important;
}

.cc-search-page-head p {
    margin: 0;
    color: rgba(255,255,255,.58);
    font-size: 14px;
}

.cc-search-page-form {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr) auto;
    align-items: center;
    max-width: 820px;
    margin: 0 0 38px;
    overflow: hidden;
    border: 1px solid rgba(216,169,65,.58);
    border-radius: 7px;
    background: rgba(8,10,10,.88);
    box-shadow: 0 16px 36px rgba(0,0,0,.22);
}

.cc-search-page-form-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d9aa43;
}

.cc-search-page-form-icon svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
}

.cc-search-page-form input[type='search'] {
    width: 100%;
    min-height: 56px;
    margin: 0;
    padding: 0 12px;
    border: 0;
    outline: 0;
    background: transparent;
    color: #fff;
    font-size: 14px;
    box-shadow: none;
}

.cc-search-page-form input[type='search']::placeholder {
    color: rgba(255,255,255,.46);
}

.cc-search-page-form button {
    align-self: stretch;
    min-width: 122px;
    margin: 0;
    padding: 0 22px;
    border: 0;
    border-left: 1px solid rgba(216,169,65,.32);
    background: linear-gradient(180deg, #f3d17d 0%, #d9a53b 100%);
    color: #090909;
    font-size: 12px;
    font-weight: 850;
    text-transform: uppercase;
    cursor: pointer;
}

.cc-search-products.products {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
}

.cc-search-products.products::before,
.cc-search-products.products::after {
    display: none !important;
}

.cc-search-products.products li.product {
    float: none !important;
    display: flex;
    flex-direction: column;
    width: auto !important;
    min-width: 0;
    margin: 0 !important;
    padding: 12px 12px 14px !important;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 7px !important;
    background:
        radial-gradient(circle at 82% 2%, rgba(211,163,61,.09), transparent 34%),
        rgba(7,9,9,.90);
    box-shadow: 0 18px 44px rgba(0,0,0,.18);
}

.cc-search-products.products li.product a.woocommerce-loop-product__link {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    color: inherit;
}

.cc-search-products.products li.product img {
    width: 100% !important;
    height: 330px !important;
    margin: 0 0 14px !important;
    padding: 14px !important;
    object-fit: contain;
    border: 1px solid rgba(216,169,65,.18);
    border-radius: 5px;
    background: rgba(3,4,4,.80);
}

.cc-search-products.products li.product .woocommerce-loop-product__title {
    min-height: 3.25em;
    margin: 0 0 10px !important;
    padding: 0 !important;
    color: #f5f0e7 !important;
    font-size: 14px !important;
    line-height: 1.45 !important;
}

.cc-search-products.products li.product .price {
    margin-top: auto !important;
    color: #efc35f !important;
    font-size: 17px !important;
    font-weight: 850 !important;
}

.cc-search-products.products li.product .button,
.cc-search-products.products li.product .added_to_cart {
    width: 100%;
    margin: 12px 0 0 !important;
    padding: 12px 14px !important;
    border: 1px solid rgba(224,177,75,.62) !important;
    border-radius: 5px !important;
    background: rgba(224,177,75,.08) !important;
    color: #edc568 !important;
    font-size: 11px !important;
    font-weight: 800 !important;
    line-height: 1.2 !important;
    text-align: center;
    text-transform: uppercase;
}

.cc-search-products.products li.product .onsale {
    top: 20px !important;
    right: 20px !important;
    left: auto !important;
    min-width: 0 !important;
    min-height: 0 !important;
    padding: 6px 9px !important;
    border-radius: 4px !important;
    background: #d7a83f !important;
    color: #080909 !important;
    font-size: 10px !important;
    line-height: 1.2 !important;
}

.cc-search-pagination {
    margin-top: 36px;
}

.cc-search-pagination ul.page-numbers {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0;
    padding: 0;
    border: 0;
    list-style: none;
}

.cc-search-pagination .page-numbers li {
    border: 0;
}

.cc-search-pagination a.page-numbers,
.cc-search-pagination span.page-numbers {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    padding: 0 12px;
    border: 1px solid rgba(216,169,65,.35);
    border-radius: 5px;
    background: rgba(8,10,10,.78);
    color: #dcb257;
}

.cc-search-pagination span.current {
    border-color: #dfb34f;
    background: rgba(216,169,65,.15);
    color: #ffe09a;
}

.cc-search-empty {
    padding: 28px;
    border: 1px solid rgba(216,169,65,.38);
    border-radius: 7px;
    background: rgba(7,9,9,.82);
}

.cc-search-empty strong {
    display: block;
    margin-bottom: 5px;
    color: #f1c761;
    font-size: 18px;
}

.cc-search-empty p {
    margin: 0;
    color: rgba(255,255,255,.62);
}

/* -------------------------------
   WooCommerce cart
   ------------------------------- */
body.woocommerce-cart,
body.woocommerce-cart #page-container,
body.woocommerce-cart #main-content {
    background: #050606 !important;
    color: #f4efe5;
}

body.woocommerce-cart #main-content {
    position: relative;
    overflow: hidden;
    min-height: 72vh;
}

body.woocommerce-cart #main-content .container,
body.woocommerce-cart #main-content .et_pb_row,
body.woocommerce-cart #main-content .woocommerce {
    position: relative;
    z-index: 1;
}

body.woocommerce-cart #main-content .container {
    width: min(94%, 1380px) !important;
    max-width: 1380px !important;
    padding-top: 46px !important;
    padding-bottom: 70px !important;
}

body.woocommerce-cart #main-content .container::before {
    display: none !important;
}

body.woocommerce-cart #left-area {
    width: 100% !important;
    padding: 0 !important;
}

body.woocommerce-cart h1,
body.woocommerce-cart .entry-title {
    margin-bottom: 28px !important;
    color: #f7f2e9 !important;
    font-size: clamp(32px, 4vw, 48px) !important;
    line-height: 1.08 !important;
}

body.woocommerce-cart .woocommerce-cart-form,
body.woocommerce-cart .cart_totals,
body.woocommerce-cart .wc-block-cart-items,
body.woocommerce-cart .wc-block-cart__sidebar {
    border: 1px solid rgba(214,169,67,.40) !important;
    border-radius: 7px !important;
    background:
        radial-gradient(circle at 90% 0%, rgba(211,163,61,.055), transparent 36%),
        rgba(7,9,9,.88) !important;
    box-shadow: 0 18px 42px rgba(0,0,0,.18);
}

/* Classic cart table. */
body.woocommerce-cart table.shop_table {
    margin: 0 !important;
    border: 0 !important;
    border-collapse: collapse !important;
    background: transparent !important;
    color: #f2eee6;
}

body.woocommerce-cart table.shop_table th {
    padding: 16px 14px !important;
    border-bottom: 1px solid rgba(255,255,255,.09) !important;
    color: rgba(255,255,255,.56) !important;
    font-size: 11px !important;
    font-weight: 800 !important;
    text-transform: uppercase;
}

body.woocommerce-cart table.shop_table td {
    padding: 16px 14px !important;
    border-top: 1px solid rgba(255,255,255,.07) !important;
    color: #f0ece4 !important;
    vertical-align: middle !important;
}

body.woocommerce-cart table.shop_table .product-thumbnail img {
    width: 92px !important;
    max-width: 92px !important;
    height: 112px !important;
    padding: 6px;
    object-fit: contain;
    border: 1px solid rgba(216,169,65,.22);
    border-radius: 5px;
    background: #090b0b;
}

body.woocommerce-cart table.shop_table .product-name a {
    color: #f6f1e8 !important;
    font-weight: 750;
}

body.woocommerce-cart table.shop_table .product-name a:hover {
    color: #e6bb5b !important;
}

body.woocommerce-cart table.shop_table .product-price,
body.woocommerce-cart table.shop_table .product-subtotal,
body.woocommerce-cart .cart_totals .amount {
    color: #efc35f !important;
    font-weight: 800;
}

body.woocommerce-cart a.remove {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 34px !important;
    height: 34px !important;
    border: 1px solid rgba(216,169,65,.34);
    border-radius: 50% !important;
    background: rgba(216,169,65,.05) !important;
    color: #ddb04d !important;
    font-size: 22px !important;
    line-height: 1 !important;
}

body.woocommerce-cart a.remove:hover {
    border-color: #dfb34f;
    background: rgba(216,169,65,.13) !important;
    color: #f3cb70 !important;
}

body.woocommerce-cart .quantity .qty {
    min-height: 44px !important;
    border: 1px solid rgba(255,255,255,.15) !important;
    border-radius: 5px !important;
    background: #0a0c0c !important;
    color: #fff !important;
}

/* 1.0.75 - cart quantity control: wide enough for 100+ and visually aligned
   with the product-page +/- selector. */
body.woocommerce-cart table.shop_table td.product-quantity {
    min-width: 145px;
}

body.woocommerce-cart .product-quantity .quantity.cc-cart-quantity {
    float: none !important;
    display: grid !important;
    grid-template-columns: 34px minmax(48px, 1fr) 34px;
    align-items: stretch;
    width: 118px !important;
    min-width: 118px !important;
    min-height: 46px;
    margin: 0 auto !important;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.16) !important;
    border-radius: 5px !important;
    background: #080a0a !important;
}

body.woocommerce-cart .product-quantity .quantity.cc-cart-quantity .qty {
    width: 50px !important;
    min-width: 50px !important;
    min-height: 46px !important;
    margin: 0 !important;
    padding: 0 4px !important;
    border: 0 !important;
    border-left: 1px solid rgba(255,255,255,.08) !important;
    border-right: 1px solid rgba(255,255,255,.08) !important;
    border-radius: 0 !important;
    background: transparent !important;
    color: #fff !important;
    font-size: 14px !important;
    font-weight: 800 !important;
    text-align: center;
    box-shadow: none !important;
    -moz-appearance: textfield;
}

body.woocommerce-cart .product-quantity .quantity.cc-cart-quantity .qty::-webkit-outer-spin-button,
body.woocommerce-cart .product-quantity .quantity.cc-cart-quantity .qty::-webkit-inner-spin-button {
    margin: 0;
    -webkit-appearance: none;
}

body.woocommerce-cart .cc-cart-qty-button {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 34px !important;
    min-width: 34px !important;
    min-height: 46px !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    color: rgba(255,255,255,.74) !important;
    font-size: 18px !important;
    font-weight: 500 !important;
    line-height: 1 !important;
    box-shadow: none !important;
    cursor: pointer;
}

body.woocommerce-cart .cc-cart-qty-button:hover {
    background: rgba(229,185,88,.09) !important;
    color: #efc35f !important;
}

body.woocommerce-cart .cc-cart-qty-button:disabled {
    opacity: .3;
    cursor: default;
}

body.woocommerce-cart .coupon {
    display: flex;
    gap: 8px;
    align-items: center;
}

body.woocommerce-cart .coupon input.input-text {
    min-width: 210px !important;
    min-height: 46px !important;
    margin: 0 !important;
    padding: 0 13px !important;
    border: 1px solid rgba(255,255,255,.16) !important;
    border-radius: 5px !important;
    background: #0a0c0c !important;
    color: #fff !important;
}

body.woocommerce-cart button.button,
body.woocommerce-cart a.button,
body.woocommerce-cart .wc-proceed-to-checkout a.checkout-button {
    min-height: 46px;
    padding: 13px 20px !important;
    border: 1px solid rgba(226,181,82,.68) !important;
    border-radius: 5px !important;
    background: rgba(216,169,65,.08) !important;
    color: #e9bf61 !important;
    font-size: 12px !important;
    font-weight: 800 !important;
    line-height: 1.2 !important;
    text-transform: uppercase;
}

body.woocommerce-cart button.button:hover,
body.woocommerce-cart a.button:hover {
    background: rgba(216,169,65,.15) !important;
    color: #ffd879 !important;
}

body.woocommerce-cart .cart-collaterals {
    margin-top: 26px;
}

body.woocommerce-cart .cart-collaterals .cart_totals {
    float: right;
    width: min(100%, 520px) !important;
    padding: 22px !important;
}

body.woocommerce-cart .cart_totals h2 {
    margin: 0 0 13px !important;
    color: #f6f1e8 !important;
    font-size: 23px !important;
}

body.woocommerce-cart .cart_totals table th,
body.woocommerce-cart .cart_totals table td {
    padding: 12px 0 !important;
}

body.woocommerce-cart .wc-proceed-to-checkout {
    padding: 16px 0 0 !important;
}

body.woocommerce-cart .wc-proceed-to-checkout a.checkout-button {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 56px;
    margin: 0 !important;
    border-color: #f2cd74 !important;
    background: linear-gradient(180deg, #f4d383 0%, #daa83f 100%) !important;
    color: #090909 !important;
    font-size: 13px !important;
}

/* WooCommerce Cart Block support. */
body.woocommerce-cart .wc-block-cart {
    color: #f4efe5 !important;
}

body.woocommerce-cart .wc-block-cart-items {
    overflow: hidden;
    padding: 8px 16px;
}

body.woocommerce-cart .wc-block-cart-items__row {
    border-bottom-color: rgba(255,255,255,.08) !important;
}

body.woocommerce-cart .wc-block-components-product-name,
body.woocommerce-cart .wc-block-components-product-metadata,
body.woocommerce-cart .wc-block-components-totals-item__label,
body.woocommerce-cart .wc-block-components-totals-item__value {
    color: #f1ece4 !important;
}

body.woocommerce-cart .wc-block-formatted-money-amount,
body.woocommerce-cart .wc-block-components-product-price {
    color: #efc35f !important;
}

body.woocommerce-cart .wc-block-cart__sidebar {
    padding: 20px !important;
}

body.woocommerce-cart .wc-block-components-button.wc-block-cart__submit-button {
    border: 1px solid #f2cd74 !important;
    border-radius: 5px !important;
    background: linear-gradient(180deg, #f4d383 0%, #daa83f 100%) !important;
    color: #090909 !important;
    font-weight: 850 !important;
    text-transform: uppercase;
}

@media (max-width: 1080px) {
    .cc-search-products.products {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 780px) {
    body.cc-product-layout .cc-product-summary form.variations_form table.variations tr {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    body.cc-product-layout .cc-product-summary form.variations_form table.variations th.label,
    body.cc-product-layout .cc-product-summary form.variations_form table.variations td.value {
        min-height: 0;
    }

    body.cc-product-layout .cc-slab-condition-card {
        margin-top: 14px;
    }

    .cc-search-products.products {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    body.woocommerce-cart .coupon {
        flex-wrap: wrap;
    }

    body.woocommerce-cart .coupon input.input-text {
        flex: 1 1 180px;
        min-width: 0 !important;
    }
}

@media (max-width: 520px) {
    body.cc-product-layout .cc-slab-condition-card {
        grid-template-columns: 31px minmax(0, 1fr);
        padding: 14px;
    }

    body.cc-product-layout .cc-product-description-panel {
        padding: 16px;
        font-size: 12px;
    }

    .cc-search-page-shell {
        width: calc(100% - 24px);
        padding-top: 30px;
    }

    .cc-search-page-form {
        grid-template-columns: 42px minmax(0, 1fr);
    }

    .cc-search-page-form button {
        grid-column: 1 / -1;
        min-height: 48px;
        border-top: 1px solid rgba(216,169,65,.30);
        border-left: 0;
    }

    .cc-search-products.products {
        grid-template-columns: 1fr;
    }

    .cc-search-products.products li.product img {
        height: 360px !important;
    }

    body.woocommerce-cart #main-content .container {
        width: calc(100% - 24px) !important;
        padding-top: 30px !important;
    }

    body.woocommerce-cart table.shop_table_responsive tr td,
    body.woocommerce-cart table.shop_table_responsive tr th {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }

    body.woocommerce-cart .cart-collaterals .cart_totals {
        padding: 16px !important;
    }
}

/* Cart notices, empty states and block controls. */
body.woocommerce-cart .woocommerce-message,
body.woocommerce-cart .woocommerce-info,
body.woocommerce-cart .woocommerce-error,
body.woocommerce-cart .wc-block-components-notice-banner {
    border: 1px solid rgba(216,169,65,.40) !important;
    border-radius: 6px !important;
    background: rgba(8,10,10,.88) !important;
    color: #f1ece4 !important;
}

body.woocommerce-cart .cart-empty,
body.woocommerce-cart .wc-block-cart__empty-cart__title {
    color: #f7f2e9 !important;
}

body.woocommerce-cart .return-to-shop {
    margin-top: 18px;
}

body.woocommerce-cart .wc-block-components-quantity-selector {
    border: 1px solid rgba(255,255,255,.15) !important;
    border-radius: 5px !important;
    background: #0a0c0c !important;
}

body.woocommerce-cart .wc-block-components-quantity-selector input,
body.woocommerce-cart .wc-block-components-quantity-selector button {
    color: #fff !important;
}

body.woocommerce-cart .wc-block-components-text-input input,
body.woocommerce-cart .wc-block-components-combobox .wc-block-components-combobox-control input.components-combobox-control__input {
    border: 1px solid rgba(255,255,255,.16) !important;
    border-radius: 5px !important;
    background: #0a0c0c !important;
    color: #fff !important;
}

body.woocommerce-cart .wc-block-components-totals-wrapper,
body.woocommerce-cart .wc-block-cart__totals-title,
body.woocommerce-cart .wc-block-components-totals-item {
    border-color: rgba(255,255,255,.08) !important;
}

body.woocommerce-cart .wc-block-components-panel__button,
body.woocommerce-cart .wc-block-components-totals-coupon-link,
body.woocommerce-cart .wc-block-components-product-name {
    color: #e7bb59 !important;
}

/* ================================================================
   1.0.13 MULTI-SLAB PURCHASE FLOW
   Quantity now means separate physical PSA slabs. Each requested copy gets
   its own unique certificate selector and enters the cart as quantity 1.
   ================================================================ */
body.cc-product-layout .cc-product-summary form.cc-multi-slab-form {
    display: block !important;
    width: 100%;
    margin: 2px 0 18px !important;
    padding: 17px 18px 18px;
    border: 1px solid rgba(216, 169, 65, .34);
    border-radius: 7px;
    background:
        radial-gradient(circle at 92% 4%, rgba(216, 169, 65, .09), transparent 36%),
        linear-gradient(145deg, rgba(255,255,255,.022), rgba(216,169,65,.018));
    box-shadow: inset 0 0 26px rgba(216, 169, 65, .018), 0 12px 34px rgba(0,0,0,.16);
    -webkit-backdrop-filter: blur(3px);
    backdrop-filter: blur(3px);
}

body.cc-product-layout .cc-multi-slab-heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin: 0 0 15px;
}

body.cc-product-layout .cc-multi-slab-heading strong {
    display: block;
    margin: 0 0 3px;
    color: #f0c667;
    font-size: 14px;
    font-weight: 850;
    line-height: 1.3;
}

body.cc-product-layout .cc-multi-slab-heading small,
body.cc-product-layout .cc-multi-slab-in-cart {
    color: rgba(255,255,255,.60);
    font-size: 12px;
    line-height: 1.45;
}

body.cc-product-layout .cc-multi-slab-in-cart {
    flex: 0 1 auto;
    max-width: 220px;
    padding-top: 1px;
    color: rgba(240,198,103,.78);
    text-align: right;
}

body.cc-product-layout .cc-multi-slab-selectors {
    display: grid;
    gap: 9px;
    margin: 0 0 14px;
}

body.cc-product-layout .cc-multi-slab-selector-row,
body.cc-product-layout .cc-multi-slab-single-certificate {
    display: grid;
    grid-template-columns: minmax(190px, 220px) minmax(0, 1fr);
    gap: 22px;
    align-items: center;
    min-height: 56px;
}

body.cc-product-layout .cc-multi-slab-selector-label,
body.cc-product-layout .cc-multi-slab-single-certificate > span {
    margin: 0;
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.3;
}

body.cc-product-layout .cc-multi-slab-selector-control {
    position: relative;
    min-width: 0;
}

body.cc-product-layout .cc-multi-slab-selector-control .cc-variation-picker {
    width: 100%;
    max-width: none;
}

body.cc-product-layout .cc-multi-slab-single-certificate {
    margin: 0 0 14px;
}

body.cc-product-layout .cc-multi-slab-single-certificate strong {
    display: flex;
    align-items: center;
    min-height: 56px;
    padding: 0 16px;
    border: 1px solid rgba(216,169,65,.48);
    border-radius: 7px;
    background: linear-gradient(145deg, rgba(216,169,65,.10), rgba(255,255,255,.018));
    color: #f3cb70;
    font-size: 15px;
    font-weight: 850;
    letter-spacing: .02em;
}

body.cc-product-layout .cc-multi-slab-actions {
    display: flex;
    align-items: flex-end;
    gap: 12px;
    width: 100%;
}

body.cc-product-layout .cc-multi-slab-quantity-block {
    flex: 0 0 auto;
}

body.cc-product-layout .cc-multi-slab-quantity-label {
    display: block;
    margin: 0 0 6px;
    color: rgba(255,255,255,.62);
    font-size: 11px;
    font-weight: 750;
    letter-spacing: .04em;
    line-height: 1.2;
    text-transform: uppercase;
}

body.cc-product-layout .cc-multi-slab-form .quantity {
    margin: 0 !important;
}

body.cc-product-layout .cc-multi-slab-form .cc-qty-button:disabled {
    color: rgba(255,255,255,.24) !important;
    cursor: not-allowed;
}

body.cc-product-layout .cc-multi-slab-form .cc-qty-button:not(:disabled):hover {
    background: rgba(216,169,65,.08) !important;
    color: #f2c96c !important;
}

body.cc-product-layout .cc-product-summary form.cc-multi-slab-form .cc-multi-slab-submit {
    flex: 1 1 auto;
    width: auto;
}

body.cc-product-layout .cc-product-summary form.cc-multi-slab-form .cc-multi-slab-submit:disabled,
body.cc-product-layout .cc-product-summary form.cc-multi-slab-form .cc-multi-slab-submit.is-disabled {
    border-color: rgba(255,255,255,.12) !important;
    background: #252727 !important;
    color: rgba(255,255,255,.38) !important;
    cursor: not-allowed !important;
    box-shadow: none !important;
}

body.cc-product-layout .cc-multi-slab-feedback {
    min-height: 18px;
    margin: 9px 0 -2px;
    color: rgba(255,255,255,.62);
    font-size: 11px;
    font-weight: 600;
    line-height: 1.45;
}

body.cc-product-layout .cc-multi-slab-feedback.needs-choice {
    color: #e9bd59;
}

body.cc-product-layout .cc-multi-slab-unavailable {
    margin: 0 0 16px;
    padding: 14px 16px;
    border: 1px solid rgba(216,169,65,.34);
    border-radius: 7px;
    background: rgba(216,169,65,.055);
    color: rgba(255,255,255,.74);
    font-size: 13px;
    line-height: 1.5;
}

body.cc-product-layout .cc-multi-slab-unavailable a {
    color: #efc564;
    font-weight: 750;
    text-decoration: none;
}

@media (max-width: 680px) {
    body.cc-product-layout .cc-product-summary form.cc-multi-slab-form {
        padding: 15px;
    }

    body.cc-product-layout .cc-multi-slab-heading {
        display: block;
    }

    body.cc-product-layout .cc-multi-slab-in-cart {
        display: block;
        max-width: none;
        margin-top: 5px;
        text-align: left;
    }

    body.cc-product-layout .cc-multi-slab-selector-row,
    body.cc-product-layout .cc-multi-slab-single-certificate {
        grid-template-columns: 1fr;
        gap: 7px;
    }

    body.cc-product-layout .cc-multi-slab-selector-label,
    body.cc-product-layout .cc-multi-slab-single-certificate > span {
        font-size: 12px;
    }

    body.cc-product-layout .cc-multi-slab-actions {
        align-items: flex-end;
    }

    body.cc-product-layout .cc-multi-slab-quantity-block {
        flex: 0 0 118px;
    }

    body.cc-product-layout .cc-product-summary form.cc-multi-slab-form .cc-multi-slab-submit {
        min-width: 0;
        padding-left: 13px !important;
        padding-right: 13px !important;
    }
}

@media (max-width: 430px) {
    body.cc-product-layout .cc-multi-slab-actions {
        display: grid;
        grid-template-columns: 118px minmax(0, 1fr);
        gap: 10px;
    }
}

/* Make every physical PSA certificate obvious when several copies were added. */
body.woocommerce-cart table.shop_table dl.variation,
body.woocommerce-cart .wc-block-components-product-details {
    margin-top: 7px;
    color: rgba(255,255,255,.64);
    font-size: 12px;
    line-height: 1.45;
}

body.woocommerce-cart table.shop_table dl.variation dt,
body.woocommerce-cart table.shop_table dl.variation dd {
    display: inline;
    float: none;
    margin: 0 4px 0 0;
    color: rgba(255,255,255,.64);
}

body.woocommerce-cart table.shop_table dl.variation dd p,
body.woocommerce-cart .wc-block-components-product-details__value {
    display: inline;
    color: #e6b957;
    font-weight: 750;
}


/* ================================
   1.0.14 MOBILE PRODUCT PAGE HARDENING
   ================================ */
@media (max-width: 980px) {
    html,
    body,
    body.cc-product-layout,
    body.cc-product-layout #page-container,
    body.cc-product-layout #et-main-area,
    body.cc-product-layout #main-content {
        overflow-x: hidden !important;
    }

    body.cc-product-layout .cc-product-page-shell,
    body.cc-product-layout div.product.type-product.cc-product-single,
    body.cc-product-layout .cc-product-hero,
    body.cc-product-layout .cc-product-gallery-column,
    body.cc-product-layout .cc-product-summary,
    body.cc-product-layout .cc-product-after-summary {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
    }

    body.cc-product-layout .cc-product-hero {
        display: flex !important;
        flex-direction: column !important;
        gap: 22px !important;
    }

    body.cc-product-layout .cc-product-summary {
        order: 1;
    }

    body.cc-product-layout .cc-product-gallery-column {
        order: 2;
    }

    body.cc-product-layout .cc-product-gallery-column .woocommerce-product-gallery,
    body.cc-product-layout .cc-product-gallery-column .woocommerce-product-gallery .flex-viewport,
    body.cc-product-layout .cc-product-gallery-column .woocommerce-product-gallery > .woocommerce-product-gallery__wrapper {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
    }

    body.cc-product-layout .cc-product-gallery-column .woocommerce-product-gallery__image img {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
    }
}

@media (max-width: 640px) {
    body.cc-product-layout .cc-product-page-shell {
        width: calc(100% - 20px) !important;
        padding-top: 14px !important;
        padding-bottom: 28px !important;
    }

    body.cc-product-layout .cc-product-breadcrumb {
        margin-bottom: 14px !important;
    }

    body.cc-product-layout .cc-product-summary h1.product_title {
        margin-bottom: 8px !important;
        font-size: clamp(26px, 8.8vw, 34px) !important;
        line-height: 1.08 !important;
    }

    body.cc-product-layout .cc-product-subline {
        margin-bottom: 14px !important;
        font-size: 13px !important;
    }

    body.cc-product-layout .cc-product-price,
    body.cc-product-layout .cc-product-price .price,
    body.cc-product-layout .cc-product-price .woocommerce-Price-amount {
        font-size: clamp(28px, 8vw, 34px) !important;
    }

    body.cc-product-layout .cc-product-summary form.cart,
    body.cc-product-layout .cc-product-summary form.variations_form {
        gap: 10px !important;
    }

    body.cc-product-layout .cc-product-summary button.single_add_to_cart_button,
    body.cc-product-layout .cc-product-summary .single_add_to_cart_button.button {
        flex: 1 1 100% !important;
        width: 100% !important;
        min-height: 52px !important;
    }

    body.cc-product-layout .cc-product-benefits {
        margin-bottom: 12px !important;
    }

    body.cc-product-layout .cc-product-details-card,
    body.cc-product-layout .cc-product-highlight,
    body.cc-product-layout .cc-slab-condition-card,
    body.cc-product-layout .cc-product-description-panel {
        padding-left: 14px !important;
        padding-right: 14px !important;
    }

    body.cc-product-layout .cc-product-gallery-column .woocommerce-product-gallery__image img {
        padding: 14px !important;
    }

    body.cc-product-layout .cc-product-gallery-column .flex-control-thumbs {
        gap: 7px !important;
    }

    body.cc-product-layout .cc-product-gallery-column .flex-control-thumbs li {
        border-radius: 5px !important;
    }

    body.cc-product-layout .cc-product-gallery-column:has(.flex-control-thumbs) .cc-product-psa-stamp,
    body.cc-product-layout .cc-product-psa-stamp {
        top: 14px !important;
        left: 14px !important;
        width: 78px !important;
    }

    body.cc-product-layout .cc-product-zoom-button {
        top: 10px !important;
        right: 10px !important;
        width: 40px !important;
        height: 40px !important;
    }
}


/* ================================================================
   1.0.15 SEARCH, CART + PURCHASE CONTROL POLISH
   ================================================================ */

/* Search: denser premium cards and a clearer hover state. */
.cc-search-products.products li.product {
    padding: 14px 14px 16px !important;
    border-color: rgba(216,169,65,.24) !important;
    transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

.cc-search-products.products li.product:hover {
    transform: translateY(-3px);
    border-color: rgba(225,181,78,.62) !important;
    background:
        radial-gradient(circle at 82% 2%, rgba(211,163,61,.14), transparent 36%),
        rgba(8,10,10,.96);
    box-shadow: 0 22px 52px rgba(0,0,0,.30), 0 0 0 1px rgba(216,169,65,.04);
}

.cc-search-products.products li.product img {
    height: auto !important;
    aspect-ratio: 4 / 5;
    padding: 16px !important;
    transition: transform .2s ease;
}

.cc-search-products.products li.product:hover img {
    transform: scale(1.018);
}

.cc-search-products.products li.product .woocommerce-loop-product__title {
    min-height: 3em;
    font-size: 15px !important;
}

.cc-search-products.products li.product .price {
    padding-top: 2px;
    font-size: 18px !important;
}

/* The cart is now rendered by the plugin instead of a Divi body. */
body.woocommerce-cart .cc-cart-page-main {
    position: relative;
    overflow: hidden;
    min-height: 72vh;
    background: #050606 !important;
    color: #f4efe5;
}

body.woocommerce-cart .cc-cart-page-main::before {
    content: '';
    position: absolute;
    z-index: 0;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(5,6,6,.34), #050606 920px),
        var(--ccpc-backdrop-image, url('https://cardandconquer.com/wp-content/uploads/2026/09/backdrop-cardandconquer.png')) center top / cover no-repeat;
    opacity: .64;
    pointer-events: none;
}

body.woocommerce-cart .cc-cart-page-shell {
    position: relative;
    z-index: 1;
    width: min(94%, 1380px);
    margin: 0 auto;
    padding: 48px 0 76px;
}

body.woocommerce-cart .cc-cart-page-head {
    margin: 0 0 25px;
}

body.woocommerce-cart .cc-cart-eyebrow {
    display: block;
    margin-bottom: 7px;
    color: #d9aa43;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}

body.woocommerce-cart .cc-cart-page-head h1 {
    margin: 0 !important;
    color: #f7f2e9 !important;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(34px, 4vw, 50px) !important;
    font-weight: 500 !important;
    line-height: 1.08 !important;
}

body.woocommerce-cart .cc-cart-woocommerce {
    position: relative;
    z-index: 1;
}

body.woocommerce-cart .cc-cart-page-shell .woocommerce-notices-wrapper {
    margin-bottom: 18px;
}

body.woocommerce-cart .cc-cart-page-shell .woocommerce-message,
body.woocommerce-cart .cc-cart-page-shell .woocommerce-info,
body.woocommerce-cart .cc-cart-page-shell .woocommerce-error {
    margin: 0 0 12px !important;
    padding: 15px 17px !important;
    border: 1px solid rgba(216,169,65,.42) !important;
    border-left: 3px solid #dcb04a !important;
    border-radius: 6px !important;
    background: rgba(9,11,11,.93) !important;
    color: #f2eee6 !important;
    box-shadow: 0 12px 28px rgba(0,0,0,.18);
}

body.woocommerce-cart .cc-cart-page-shell .woocommerce-message::before,
body.woocommerce-cart .cc-cart-page-shell .woocommerce-info::before,
body.woocommerce-cart .cc-cart-page-shell .woocommerce-error::before {
    color: #e5b852 !important;
}

body.woocommerce-cart .cc-cart-page-shell .woocommerce-cart-form,
body.woocommerce-cart .cc-cart-page-shell .cart_totals {
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

body.woocommerce-cart .cc-cart-page-shell .woocommerce-cart-form {
    overflow: hidden;
}

body.woocommerce-cart .cc-cart-page-shell .cart-collaterals {
    display: flex;
    justify-content: flex-end;
    width: 100%;
}

body.woocommerce-cart .cc-cart-page-shell .cart-collaterals .cart_totals {
    float: none !important;
    width: min(100%, 540px) !important;
}

/* A physical slab is one unique object, so a single remaining slab does not
   need a meaningless +/- quantity control. */
body.cc-product-layout .cc-multi-slab-form[data-max='1'] .cc-multi-slab-heading {
    display: none;
}

body.cc-product-layout .cc-multi-slab-form[data-max='1'] .cc-multi-slab-single-certificate {
    margin-bottom: 12px;
}

body.cc-product-layout .cc-multi-slab-actions.is-single-slab {
    display: block;
}

body.cc-product-layout .cc-product-summary form.cc-multi-slab-form .cc-multi-slab-actions.is-single-slab .cc-multi-slab-submit {
    width: 100% !important;
    min-height: 56px !important;
}

body.cc-product-layout .cc-multi-slab-form[data-max='1'] .cc-multi-slab-feedback {
    display: none;
}

/* Multiple slabs: make the count control look like one deliberate component. */
body.cc-product-layout .cc-multi-slab-quantity-block {
    padding: 8px 9px 9px;
    border: 1px solid rgba(216,169,65,.28);
    border-radius: 7px;
    background: rgba(5,7,7,.64);
}

body.cc-product-layout .cc-multi-slab-quantity-label {
    margin: 0 0 7px 2px;
    color: rgba(240,198,103,.78);
}

body.cc-product-layout .cc-multi-slab-form .quantity {
    border-color: rgba(216,169,65,.40) !important;
    background: rgba(4,6,6,.92) !important;
}

body.cc-product-layout .cc-multi-slab-form .quantity .qty {
    color: #f7f2e9 !important;
}

body.cc-product-layout .cc-multi-slab-form .cc-qty-button:not(:disabled):hover {
    background: rgba(216,169,65,.13) !important;
}

@media (max-width: 780px) {
    body.woocommerce-cart .cc-cart-page-shell {
        width: calc(100% - 24px);
        padding-top: 30px;
        padding-bottom: 48px;
    }

    body.woocommerce-cart .cc-cart-page-shell .cart-collaterals {
        display: block;
    }

    body.woocommerce-cart .cc-cart-page-shell .cart-collaterals .cart_totals {
        width: 100% !important;
    }
}

@media (max-width: 520px) {
    .cc-search-products.products li.product img {
        aspect-ratio: 4 / 5;
        height: auto !important;
    }

    body.woocommerce-cart .cc-cart-page-head h1 {
        font-size: 34px !important;
    }

    body.cc-product-layout .cc-multi-slab-actions:not(.is-single-slab) {
        grid-template-columns: 128px minmax(0,1fr);
    }
}


/* ================================
   1.0.16 single-slab cleanup
   ================================ */
body.cc-product-layout .cc-multi-slab-form[data-max='1'] .cc-multi-slab-single-certificate {
    display: none !important;
}

body.cc-product-layout .cc-multi-slab-single-note {
    margin: 0 0 12px;
    color: rgba(255,255,255,.82);
    font-size: 14px;
    line-height: 1.45;
}


/* ================================
   1.0.17 slab selector stacking + single slab cleanup
   ================================ */
body.cc-product-layout .cc-product-summary,
body.cc-product-layout .cc-product-summary form.cc-multi-slab-form,
body.cc-product-layout .cc-multi-slab-selectors,
body.cc-product-layout .cc-multi-slab-selector-row,
body.cc-product-layout .cc-multi-slab-selector-control {
    overflow: visible !important;
}

body.cc-product-layout .cc-product-summary form.cc-multi-slab-form {
    position: relative;
    z-index: 10;
}

body.cc-product-layout .cc-product-summary form.cc-multi-slab-form:has(.cc-variation-picker.is-open) {
    z-index: 1000;
}

body.cc-product-layout .cc-multi-slab-selector-row:has(.cc-variation-picker.is-open),
body.cc-product-layout .cc-multi-slab-selector-control:has(.cc-variation-picker.is-open) {
    position: relative;
    z-index: 1001;
}

body.cc-product-layout .cc-variation-picker.is-open {
    z-index: 1100 !important;
}

body.cc-product-layout .cc-variation-picker-panel {
    z-index: 1110;
}

body.cc-product-layout .cc-product-benefits,
body.cc-product-layout .cc-product-details-card,
body.cc-product-layout .cc-product-highlight {
    position: relative;
    z-index: 1;
}

body.cc-product-layout .cc-multi-slab-single-note {
    display: none !important;
}


/* ================================
   1.0.18 smoother multi-slab UX
   ================================ */
body.cc-product-layout .cc-multi-slab-form .cc-multi-slab-feedback:empty {
    display: none;
}

body.cc-product-layout .cc-multi-slab-actions {
    align-items: stretch;
    gap: 16px;
}

body.cc-product-layout .cc-multi-slab-quantity-block {
    min-width: 130px;
}

body.cc-product-layout .cc-product-summary form.cc-multi-slab-form .cc-multi-slab-submit {
    min-height: 58px;
}

body.cc-product-layout .cc-product-summary form.cc-multi-slab-form .cc-multi-slab-submit:not(:disabled) {
    opacity: 1 !important;
}

@media (max-width: 520px) {
    body.cc-product-layout .cc-multi-slab-actions:not(.is-single-slab) {
        grid-template-columns: 128px minmax(0,1fr);
        align-items: stretch;
    }

    body.cc-product-layout .cc-product-summary form.cc-multi-slab-form .cc-multi-slab-submit {
        min-height: 54px;
        padding-left: 12px !important;
        padding-right: 12px !important;
        font-size: 14px !important;
    }
}


/* ================================
   1.0.19 cleaner slab controls + native gallery
   ================================ */
body.cc-product-layout .cc-product-summary form.cc-multi-slab-form {
    margin: 4px 0 18px !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    -webkit-backdrop-filter: none !important;
    backdrop-filter: none !important;
}

body.cc-product-layout .cc-multi-slab-heading {
    margin-bottom: 14px;
}

body.cc-product-layout .cc-multi-slab-selector-row {
    grid-template-columns: minmax(165px, 210px) minmax(0, 1fr);
    gap: 18px;
}

body.cc-product-layout .cc-variation-picker-toggle {
    min-height: 54px;
    border-color: rgba(255,255,255,.18) !important;
    background: rgba(6,8,8,.84) !important;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.015) !important;
}

body.cc-product-layout .cc-variation-picker-toggle:hover,
body.cc-product-layout .cc-variation-picker-toggle:focus-visible,
body.cc-product-layout .cc-variation-picker.is-open .cc-variation-picker-toggle {
    border-color: rgba(224,177,75,.70) !important;
    background: #0d0f0f !important;
    box-shadow: 0 0 0 2px rgba(216,169,65,.08) !important;
}

body.cc-product-layout .cc-variation-picker-panel {
    border-color: rgba(255,255,255,.16) !important;
}

body.cc-product-layout .cc-multi-slab-actions {
    display: grid;
    grid-template-columns: 132px minmax(0,1fr);
    gap: 14px;
    align-items: stretch;
    margin-top: 12px;
}

body.cc-product-layout .cc-multi-slab-quantity-block {
    min-width: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
}

body.cc-product-layout .cc-multi-slab-quantity-label {
    margin: 0 0 6px !important;
    color: rgba(255,255,255,.58) !important;
    font-size: 10px !important;
}

body.cc-product-layout .cc-multi-slab-form .quantity {
    width: 100% !important;
    min-width: 0 !important;
    border-color: rgba(255,255,255,.16) !important;
    background: rgba(5,7,7,.82) !important;
}

body.cc-product-layout .cc-product-summary form.cc-multi-slab-form .cc-multi-slab-submit {
    align-self: end;
    width: 100% !important;
    min-height: 54px !important;
}

body.cc-product-layout .cc-multi-slab-feedback:empty {
    display: none !important;
}

/* Native gallery: visible immediately, no Woo/FlexSlider opacity race. */
body.cc-product-layout .cc-native-gallery {
    width: 100%;
}

body.cc-product-layout .cc-native-gallery-stage {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 620px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 7px;
    background:
        radial-gradient(circle at 50% 38%, rgba(219,173,79,.13), transparent 46%),
        linear-gradient(160deg, #111313 0%, #070808 100%);
    box-shadow: inset 0 0 34px rgba(0,0,0,.55), 0 15px 38px rgba(0,0,0,.25);
}

body.cc-product-layout .cc-native-gallery-main {
    display: block;
    width: auto !important;
    max-width: 100% !important;
    max-height: 700px;
    height: auto !important;
    margin: 0 auto;
    padding: 26px;
    object-fit: contain;
    opacity: 1 !important;
    visibility: visible !important;
    transition: opacity .15s ease;
}

body.cc-product-layout .cc-native-gallery-main.is-switching {
    opacity: .38 !important;
}

body.cc-product-layout .cc-native-gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(74px, 88px));
    gap: 9px;
    margin-top: 10px;
}

body.cc-product-layout .cc-native-gallery-thumb {
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1 / 1;
    margin: 0;
    padding: 6px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 6px;
    background: #0b0c0c;
    cursor: pointer;
    opacity: .72;
    transition: opacity .16s ease, border-color .16s ease, background .16s ease;
}

body.cc-product-layout .cc-native-gallery-thumb:hover,
body.cc-product-layout .cc-native-gallery-thumb:focus-visible,
body.cc-product-layout .cc-native-gallery-thumb.is-active {
    opacity: 1;
    border-color: rgba(224,177,75,.72);
    background: rgba(224,177,75,.045);
    outline: 0;
}

body.cc-product-layout .cc-native-gallery-thumb img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

body.cc-product-layout .cc-native-gallery-stage .cc-product-psa-stamp {
    top: 18px !important;
    left: 18px !important;
}

body.cc-product-layout .cc-native-gallery-stage .cc-product-zoom-button {
    top: 14px !important;
    right: 14px !important;
}

@media (max-width: 980px) {
    body.cc-product-layout .cc-native-gallery-stage {
        min-height: 0;
    }

    body.cc-product-layout .cc-native-gallery-main {
        width: 100% !important;
        max-height: 620px;
        padding: 18px;
    }
}

@media (max-width: 680px) {
    body.cc-product-layout .cc-multi-slab-selector-row {
        grid-template-columns: 1fr;
        gap: 7px;
    }

    body.cc-product-layout .cc-multi-slab-actions {
        grid-template-columns: 118px minmax(0,1fr);
        gap: 10px;
    }

    body.cc-product-layout .cc-native-gallery-main {
        padding: 12px;
    }

    body.cc-product-layout .cc-native-gallery-thumbs {
        grid-template-columns: repeat(4, minmax(0,1fr));
    }
}


/* ================================
   1.0.20 restore premium slab panel; keep quantity neutral
   ================================ */
body.cc-product-layout .cc-product-summary form.cc-multi-slab-form {
    margin: 2px 0 18px !important;
    padding: 17px 18px 18px !important;
    border: 1px solid rgba(216,169,65,.34) !important;
    border-radius: 7px !important;
    background:
        radial-gradient(circle at 92% 4%, rgba(216,169,65,.09), transparent 36%),
        linear-gradient(145deg, rgba(255,255,255,.022), rgba(216,169,65,.018)) !important;
    box-shadow: inset 0 0 26px rgba(216,169,65,.018), 0 12px 34px rgba(0,0,0,.16) !important;
    -webkit-backdrop-filter: blur(3px) !important;
    backdrop-filter: blur(3px) !important;
}

body.cc-product-layout .cc-variation-picker-toggle {
    border-color: rgba(216,169,65,.72) !important;
    background:
        linear-gradient(180deg, rgba(255,255,255,.035), transparent),
        #0b0d0d !important;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.015), 0 8px 22px rgba(0,0,0,.22) !important;
}

body.cc-product-layout .cc-variation-picker-toggle:hover,
body.cc-product-layout .cc-variation-picker-toggle:focus-visible,
body.cc-product-layout .cc-variation-picker.is-open .cc-variation-picker-toggle {
    border-color: #f0c45f !important;
    background:
        linear-gradient(180deg, rgba(214,166,57,.08), transparent),
        #0d0f0f !important;
    box-shadow: 0 0 0 2px rgba(216,169,65,.12), 0 10px 28px rgba(0,0,0,.34) !important;
}

body.cc-product-layout .cc-variation-picker-panel {
    border-color: rgba(216,169,65,.52) !important;
}

/* Only the quantity control itself stays understated: no gold frame around the count. */
body.cc-product-layout .cc-multi-slab-quantity-block {
    min-width: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
}

body.cc-product-layout .cc-multi-slab-quantity-label {
    margin: 0 0 6px !important;
    color: rgba(255,255,255,.58) !important;
}

body.cc-product-layout .cc-multi-slab-form .quantity {
    border: 1px solid rgba(255,255,255,.16) !important;
    background: rgba(5,7,7,.82) !important;
    box-shadow: none !important;
}

body.cc-product-layout .cc-multi-slab-form .cc-qty-minus {
    border-right-color: rgba(255,255,255,.08) !important;
}

body.cc-product-layout .cc-multi-slab-form .cc-qty-plus {
    border-left-color: rgba(255,255,255,.08) !important;
}

body.cc-product-layout .cc-multi-slab-form .cc-qty-button:not(:disabled):hover {
    background: rgba(255,255,255,.045) !important;
    color: #f2f0e8 !important;
}


/* ================================
   1.0.21 desktop gallery thumbnails back on the left
   ================================ */
@media (min-width: 981px) {
    body.cc-product-layout .cc-native-gallery {
        display: grid;
        grid-template-columns: 88px minmax(0, 1fr);
        grid-template-rows: auto;
        gap: 12px;
        align-items: start;
        width: 100%;
    }

    body.cc-product-layout .cc-native-gallery-stage {
        grid-column: 2;
        grid-row: 1;
        width: 100%;
        min-width: 0;
    }

    body.cc-product-layout .cc-native-gallery-thumbs {
        grid-column: 1;
        grid-row: 1;
        display: flex;
        flex-direction: column;
        gap: 10px;
        width: 88px;
        max-height: 620px;
        margin: 0;
        padding: 0;
        overflow-x: hidden;
        overflow-y: auto;
        scrollbar-width: thin;
        scrollbar-color: rgba(224,177,75,.55) rgba(255,255,255,.04);
    }

    body.cc-product-layout .cc-native-gallery-thumbs::-webkit-scrollbar {
        width: 5px;
    }

    body.cc-product-layout .cc-native-gallery-thumbs::-webkit-scrollbar-track {
        background: rgba(255,255,255,.04);
    }

    body.cc-product-layout .cc-native-gallery-thumbs::-webkit-scrollbar-thumb {
        background: rgba(224,177,75,.55);
        border-radius: 0;
    }

    body.cc-product-layout .cc-native-gallery-thumb {
        flex: 0 0 88px;
        width: 88px;
        height: 88px;
        aspect-ratio: auto;
        margin: 0;
    }
}

@media (max-width: 980px) {
    body.cc-product-layout .cc-native-gallery {
        display: block;
    }

    body.cc-product-layout .cc-native-gallery-thumbs {
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 8px;
        width: 100%;
        max-height: none;
        margin-top: 10px;
        overflow: visible;
    }
}


/* ================================
   1.0.22 gallery reliability + stronger product watermark
   ================================ */
body.cc-product-layout .cc-native-gallery-stage {
    isolation: isolate;
}

body.cc-product-layout .cc-native-gallery-main {
    position: relative;
    z-index: 1;
}

body.cc-product-layout .cc-native-gallery-stage .cc-product-psa-stamp {
    z-index: 40 !important;
    display: block !important;
    visibility: visible !important;
    opacity: .96 !important;
    width: clamp(112px, 10.5vw, 154px) !important;
    max-width: 154px !important;
}

body.cc-product-layout .cc-native-gallery-stage .cc-product-zoom-button {
    z-index: 45 !important;
}

body.cc-product-layout .cc-native-gallery-thumb {
    position: relative;
    z-index: 2;
}

body.cc-product-layout .cc-native-gallery-thumb.is-active {
    box-shadow: inset 0 0 0 1px rgba(224,177,75,.32), 0 0 16px rgba(224,177,75,.08);
}

/* The actual card remains a subtle atmospheric layer, but it should now be
   clearly perceptible on top of the generic black/gold backdrop. */
body.cc-product-layout .cc-product-page-shell::before {
    opacity: .10 !important;
    filter: saturate(.76) contrast(1.08) blur(.30px) !important;
    background-position: center center !important;
    background-size: 150% auto !important;
}

@media (max-width: 980px) {
    body.cc-product-layout .cc-product-page-shell::before {
        opacity: .075 !important;
        filter: saturate(.72) contrast(1.06) blur(.25px) !important;
        background-position: center center !important;
        background-size: 160% auto !important;
    }
}

@media (max-width: 560px) {
    body.cc-product-layout .cc-product-page-shell::before {
        opacity: .060 !important;
        filter: saturate(.70) contrast(1.05) blur(.20px) !important;
        background-position: center center !important;
        background-size: 170% auto !important;
    }

    body.cc-product-layout .cc-native-gallery-stage .cc-product-psa-stamp {
        width: 84px !important;
        top: 14px !important;
        left: 14px !important;
    }
}


/* ================================
   1.0.23 gallery click hardening
   ================================ */
body.cc-product-layout .cc-native-gallery-thumb {
    touch-action: manipulation;
}

body.cc-product-layout .cc-native-gallery-thumb:active {
    transform: scale(.98);
}

body.cc-product-layout .cc-product-page-shell::before {
    opacity: .12 !important;
}

@media (max-width: 980px) {
    body.cc-product-layout .cc-product-page-shell::before {
        opacity: .085 !important;
    }
}

/* ================================
   1.0.25 CARD & CONQUER HOMEPAGE
   ================================ */
.cc-homepage,
.cc-homepage * {
    box-sizing: border-box;
}

.cc-homepage {
    position: relative;
    width: 100vw;
    width: 100dvw;
    max-width: none;
    margin-left: calc(50% - 50vw);
    margin-left: calc(50% - 50dvw);
    overflow: hidden;
    background:
        radial-gradient(circle at 14% 14%, rgba(211, 163, 61, .055), transparent 28%),
        radial-gradient(circle at 88% 46%, rgba(211, 163, 61, .045), transparent 24%),
        #050606;
    color: #f5f0e7;
}

.cc-homepage a {
    text-decoration: none;
}

.cc-home-fullbleed {
    width: 100%;
}

.cc-home-content {
    width: min(92%, 1440px);
    margin: 0 auto;
    padding: 10px 0 76px;
}

.cc-home-section {
    position: relative;
    margin: 72px 0 0;
}

.cc-home-eyebrow {
    display: inline-block;
    margin-bottom: 9px;
    color: #e5b956;
    font-size: 11px;
    font-weight: 850;
    line-height: 1.2;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.cc-home-section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin: 0 0 24px;
}

.cc-home-section-head h2,
.cc-home-campaign h2,
.cc-home-seo-section h2 {
    margin: 0 !important;
    color: #f6f0e7 !important;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(30px, 3vw, 45px) !important;
    font-weight: 500 !important;
    line-height: 1.07 !important;
    letter-spacing: -.025em;
}

.cc-home-section-head > a {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    flex: 0 0 auto;
    padding: 9px 0;
    color: #ddb354 !important;
    font-size: 12px;
    font-weight: 750;
    transition: color .18s ease, transform .18s ease;
}

.cc-home-section-head > a:hover {
    color: #f1cd75 !important;
    transform: translateX(2px);
}

/* Hero */
.cc-home-hero {
    position: relative;
    min-height: 620px;
    overflow: hidden;
    border-bottom: 1px solid rgba(215, 169, 68, .35);
    background:
        linear-gradient(90deg, rgba(3,4,4,.92) 0%, rgba(3,4,4,.73) 42%, rgba(3,4,4,.27) 72%, rgba(3,4,4,.56) 100%),
        linear-gradient(180deg, rgba(3,4,4,.12) 58%, #050606 100%),
        var(--ccpc-backdrop-image, url('https://cardandconquer.com/wp-content/uploads/2026/09/backdrop-cardandconquer.png')) center center / cover no-repeat,
        #050606;
}

.cc-home-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 72% 50%, rgba(229, 183, 76, .14), transparent 32%),
        linear-gradient(90deg, transparent 0%, transparent 65%, rgba(0,0,0,.22) 100%);
}

.cc-home-hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(480px, 1.1fr);
    gap: 56px;
    align-items: center;
    width: min(92%, 1440px);
    min-height: 620px;
    margin: 0 auto;
    padding: 66px 0 72px;
}

.cc-home-hero-copy {
    max-width: 650px;
}

.cc-home-hero-copy h1 {
    margin: 0 0 20px !important;
    color: #f8f2e8 !important;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(46px, 5.1vw, 78px) !important;
    font-weight: 500 !important;
    line-height: .98 !important;
    letter-spacing: -.035em;
}

.cc-home-hero-copy > p {
    max-width: 580px;
    margin: 0 0 28px !important;
    color: rgba(255,255,255,.69) !important;
    font-size: 16px;
    line-height: 1.72;
}

.cc-home-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 11px;
}

.cc-home-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 13px 21px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 850;
    letter-spacing: .02em;
    text-transform: uppercase;
    transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.cc-home-button-primary {
    border: 1px solid #f1cc73;
    background: linear-gradient(180deg, #f3d17d 0%, #daa83f 100%);
    color: #080909 !important;
    box-shadow: 0 13px 36px rgba(210, 160, 54, .15);
}

.cc-home-button-primary:hover {
    background: linear-gradient(180deg, #f7dc93 0%, #e7b74e 100%);
    transform: translateY(-1px);
}

.cc-home-button-secondary {
    border: 1px solid rgba(230, 184, 78, .42);
    background: rgba(5,6,6,.66);
    color: #edc66e !important;
}

.cc-home-button-secondary:hover {
    border-color: rgba(230, 184, 78, .72);
    background: rgba(230,184,78,.07);
    transform: translateY(-1px);
}

.cc-home-hero-stage {
    position: relative;
    min-height: 500px;
}

.cc-home-hero-glow {
    position: absolute;
    z-index: 0;
    left: 50%;
    bottom: 5%;
    width: 72%;
    height: 28%;
    transform: translateX(-50%);
    border-radius: 50%;
    background: radial-gradient(ellipse at center, rgba(229,181,67,.35), rgba(229,181,67,.08) 38%, transparent 72%);
    filter: none;
}

.cc-home-hero-slab {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 50%;
    display: block;
    width: min(34%, 270px);
    transform-origin: 50% 90%;
    filter: none;
    transition: transform .24s ease, filter .24s ease;
}

.cc-home-hero-slab img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 470px;
    object-fit: contain;
    box-shadow: 0 16px 24px rgba(0,0,0,.34);
}

.cc-home-hero-slab-1 {
    z-index: 4;
    transform: translate(-50%, -50%) rotate(0deg) scale(1.12);
}

.cc-home-hero-slab-2 {
    z-index: 3;
    transform: translate(-112%, -47%) rotate(-8deg) scale(.91);
    opacity: .92;
}

.cc-home-hero-slab-3 {
    z-index: 2;
    transform: translate(12%, -47%) rotate(8deg) scale(.91);
    opacity: .92;
}

.cc-home-hero-slab:hover {
    z-index: 8;
    filter: none;
}

.cc-home-hero-slab-1:hover { transform: translate(-50%, -52%) scale(1.15); }
.cc-home-hero-slab-2:hover { transform: translate(-112%, -49%) rotate(-5deg) scale(.95); }
.cc-home-hero-slab-3:hover { transform: translate(12%, -49%) rotate(5deg) scale(.95); }

/* USP bar */
.cc-home-usps {
    border-top: 1px solid rgba(215,169,68,.18);
    border-bottom: 1px solid rgba(215,169,68,.28);
    background: rgba(8,9,9,.94);
}

.cc-home-usps-inner {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    width: min(92%, 1440px);
    margin: 0 auto;
}

.cc-home-usp {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    min-height: 90px;
    padding: 18px 24px;
    border-right: 1px solid rgba(255,255,255,.07);
}

.cc-home-usp:first-child { border-left: 1px solid rgba(255,255,255,.07); }

.cc-home-usp-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ddb044;
}

.cc-home-usp-icon svg,
.cc-home-why-card > span svg,
.cc-home-campaign-icon svg {
    width: 29px;
    height: 29px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.cc-home-usp strong,
.cc-home-usp small {
    display: block;
}

.cc-home-usp strong {
    color: #f5efe6;
    font-size: 12px;
    line-height: 1.25;
}

.cc-home-usp small {
    margin-top: 4px;
    color: rgba(255,255,255,.50);
    font-size: 10px;
    line-height: 1.35;
}

/* Product cards */
.cc-home-product-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.cc-home-product-card {
    display: flex;
    flex-direction: column;
    min-width: 0;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.13);
    border-radius: 7px;
    background:
        radial-gradient(circle at 90% 0%, rgba(213,165,63,.08), transparent 34%),
        linear-gradient(155deg, rgba(255,255,255,.035), rgba(255,255,255,.012));
    box-shadow: 0 14px 36px rgba(0,0,0,.16);
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.cc-home-product-card:hover {
    transform: translateY(-3px);
    border-color: rgba(220,174,72,.42);
    box-shadow: 0 20px 44px rgba(0,0,0,.23);
}

.cc-home-product-media {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 350px;
    padding: 20px 18px 12px;
    overflow: hidden;
    background:
        radial-gradient(circle at 50% 54%, rgba(212,165,64,.13), transparent 48%),
        #090a0a;
}

.cc-home-product-media::after {
    content: "";
    position: absolute;
    right: 12%;
    bottom: 8%;
    left: 12%;
    height: 11%;
    background: radial-gradient(ellipse at center, rgba(220,173,68,.21), transparent 70%);
    filter: blur(9px);
}

.cc-home-product-media img {
    position: relative;
    z-index: 2;
    display: block;
    width: auto;
    max-width: 100%;
    height: 315px;
    object-fit: contain;
    transition: transform .22s ease;
}

.cc-home-product-card:hover .cc-home-product-media img {
    transform: scale(1.025);
}

.cc-home-product-badge {
    position: absolute;
    z-index: 5;
    top: 12px;
    left: 12px;
    padding: 6px 9px;
    border: 1px solid rgba(224,177,70,.62);
    border-radius: 16px;
    background: rgba(5,6,6,.88);
    color: #e8bc58;
    font-size: 9px;
    font-weight: 850;
    letter-spacing: .07em;
}

.cc-home-product-copy {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 15px 15px 14px;
}

.cc-home-product-meta {
    margin-bottom: 7px;
    color: rgba(255,255,255,.47);
    font-size: 10px;
    line-height: 1.35;
}

.cc-home-product-copy h3 {
    margin: 0 0 15px !important;
    color: #f6f1e8 !important;
    font-family: inherit;
    font-size: 14px !important;
    font-weight: 650 !important;
    line-height: 1.42 !important;
}

.cc-home-product-copy h3 a {
    color: inherit !important;
}

.cc-home-product-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-top: auto;
}

.cc-home-product-price,
.cc-home-product-price .woocommerce-Price-amount {
    color: #edc361 !important;
    font-size: 17px;
    font-weight: 850;
}

.cc-home-product-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border: 1px solid rgba(222,174,68,.48);
    border-radius: 4px;
    background: rgba(222,174,68,.06);
    color: #e6b950 !important;
    font-size: 17px;
}

/* Categories */
.cc-home-category-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 13px;
}

.cc-home-category-card {
    position: relative;
    min-height: 210px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.13);
    border-radius: 7px;
    background:
        var(--cc-cat-image, none) center center / cover no-repeat,
        linear-gradient(150deg, #181715, #080909);
    transition: transform .2s ease, border-color .2s ease;
}

.cc-home-category-card:hover {
    transform: translateY(-2px);
    border-color: rgba(224,177,73,.48);
}

.cc-home-category-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(5,6,6,.16) 18%, rgba(5,6,6,.9) 94%);
}

.cc-home-category-copy {
    position: absolute;
    z-index: 2;
    right: 48px;
    bottom: 16px;
    left: 16px;
}

.cc-home-category-copy strong,
.cc-home-category-copy small {
    display: block;
}

.cc-home-category-copy strong {
    color: #f6f0e7;
    font-size: 15px;
    font-weight: 750;
    line-height: 1.25;
}

.cc-home-category-copy small {
    margin-top: 4px;
    color: rgba(255,255,255,.48);
    font-size: 10px;
}

.cc-home-category-arrow {
    position: absolute;
    z-index: 2;
    right: 15px;
    bottom: 15px;
    color: #e4b952;
    font-size: 20px;
}

/* Campaign */
.cc-home-campaign {
    overflow: hidden;
    border: 1px solid rgba(220,174,70,.44);
    border-radius: 8px;
    background:
        radial-gradient(circle at 88% 20%, rgba(229,183,78,.18), transparent 28%),
        linear-gradient(110deg, rgba(10,11,11,.96), rgba(30,24,14,.88)),
        var(--ccpc-backdrop-image, url('https://cardandconquer.com/wp-content/uploads/2026/09/backdrop-cardandconquer.png')) center / cover no-repeat;
}

.cc-home-campaign-inner {
    display: grid;
    grid-template-columns: 70px minmax(0, 1fr) auto;
    gap: 24px;
    align-items: center;
    min-height: 190px;
    padding: 28px 32px;
}

.cc-home-campaign-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    border: 1px solid rgba(227,181,73,.48);
    border-radius: 50%;
    color: #e6b94e;
}

.cc-home-campaign-copy p {
    max-width: 720px;
    margin: 11px 0 0 !important;
    color: rgba(255,255,255,.61) !important;
    font-size: 13px;
    line-height: 1.6;
}

/* Why */
.cc-home-why-grid,
.cc-home-review-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.cc-home-why-card,
.cc-home-review-card {
    padding: 23px 22px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 7px;
    background: linear-gradient(150deg, rgba(255,255,255,.028), rgba(255,255,255,.009));
}

.cc-home-why-card > span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 39px;
    height: 39px;
    margin-bottom: 18px;
    color: #ddb24c;
}

.cc-home-why-card h3,
.cc-home-review-card h3 {
    margin: 0 0 8px !important;
    color: #f4eee5 !important;
    font-size: 15px !important;
    font-weight: 750 !important;
    line-height: 1.35 !important;
}

.cc-home-why-card p,
.cc-home-review-card p {
    margin: 0 !important;
    color: rgba(255,255,255,.58) !important;
    font-size: 12px;
    line-height: 1.65;
}

/* Reviews */
.cc-home-review-head {
    align-items: center;
}

.cc-home-stars {
    color: #e3b64c;
    font-size: 18px;
    letter-spacing: .08em;
}

.cc-home-review-card .cc-home-stars {
    margin-bottom: 14px;
    font-size: 14px;
}

.cc-home-review-card p {
    min-height: 4.9em;
    margin-bottom: 17px !important;
}

.cc-home-review-card > strong {
    color: #e6bd61;
    font-size: 11px;
}

/* SEO closing section */
.cc-home-seo-section {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(260px, .65fr);
    gap: 50px;
    align-items: center;
    padding: 36px;
    border-top: 1px solid rgba(219,173,70,.32);
    border-bottom: 1px solid rgba(219,173,70,.32);
    background: linear-gradient(90deg, rgba(218,169,66,.035), transparent 58%);
}

.cc-home-seo-copy {
    max-width: 800px;
}

.cc-home-seo-copy p {
    margin: 15px 0 0 !important;
    color: rgba(255,255,255,.61) !important;
    font-size: 13px;
    line-height: 1.8;
}

.cc-home-seo-links {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 20px;
}

.cc-home-seo-links a {
    color: #e7bd5e !important;
    font-size: 12px;
    font-weight: 750;
}

.cc-home-seo-mark {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 220px;
    border: 1px solid rgba(220,174,70,.28);
    background: radial-gradient(circle at 50% 45%, rgba(220,174,70,.13), transparent 52%);
    color: #dfb34b;
    text-align: center;
}

.cc-home-seo-mark span {
    font-size: 27px;
    font-weight: 900;
    letter-spacing: .08em;
}

.cc-home-seo-mark strong {
    margin: -4px 0 -4px;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 92px;
    font-weight: 600;
    line-height: 1;
}

.cc-home-seo-mark small {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .18em;
}

/* Divi/page-builder cleanup when the full homepage is placed in a normal page. */
.et_pb_module .cc-homepage,
.et_pb_text_inner > .cc-homepage,
.entry-content > .cc-homepage {
    margin-top: 0;
    margin-bottom: 0;
}

body:has(.cc-homepage) #main-content {
    background: #050606 !important;
}

body:has(.cc-homepage) .entry-content,
body:has(.cc-homepage) .et-l--post,
body:has(.cc-homepage) .et_builder_inner_content,
body:has(.cc-homepage) .et_pb_section,
body:has(.cc-homepage) .et_pb_row,
body:has(.cc-homepage) .et_pb_column,
body:has(.cc-homepage) .et_pb_module,
body:has(.cc-homepage) .et_pb_code_inner,
body:has(.cc-homepage) .et_pb_text_inner {
    overflow: visible;
}

@media (max-width: 1180px) {
    .cc-home-hero-inner {
        grid-template-columns: minmax(0, .9fr) minmax(400px, 1.1fr);
        gap: 34px;
    }

    .cc-home-product-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .cc-home-category-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .cc-home-hero {
        min-height: auto;
        background-position: center center;
    }

    .cc-home-hero-inner {
        grid-template-columns: 1fr;
        min-height: 0;
        padding: 54px 0 44px;
    }

    .cc-home-hero-copy {
        max-width: 760px;
    }

    .cc-home-hero-stage {
        min-height: 430px;
    }

    .cc-home-usps-inner {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .cc-home-usp:nth-child(2) { border-right: 0; }
    .cc-home-usp:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.07); }

    .cc-home-product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .cc-home-category-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .cc-home-campaign-inner {
        grid-template-columns: 58px minmax(0, 1fr);
    }

    .cc-home-campaign-inner .cc-home-button {
        grid-column: 2;
        justify-self: start;
    }

    .cc-home-why-grid,
    .cc-home-review-grid {
        grid-template-columns: 1fr;
    }

    .cc-home-seo-section {
        grid-template-columns: 1fr;
    }

    .cc-home-seo-mark {
        display: none;
    }
}

@media (max-width: 620px) {
    .cc-home-content,
    .cc-home-hero-inner,
    .cc-home-usps-inner {
        width: calc(100% - 24px);
    }

    .cc-home-content {
        padding-bottom: 48px;
    }

    .cc-home-section {
        margin-top: 48px;
    }

    .cc-home-section-head {
        align-items: flex-start;
    }

    .cc-home-section-head h2,
    .cc-home-campaign h2,
    .cc-home-seo-section h2 {
        font-size: 30px !important;
    }

    .cc-home-section-head > a {
        display: none;
    }

    .cc-home-hero-inner {
        padding-top: 38px;
    }

    .cc-home-hero-copy h1 {
        font-size: clamp(39px, 12vw, 54px) !important;
    }

    .cc-home-hero-copy > p {
        font-size: 14px;
        line-height: 1.62;
    }

    .cc-home-hero-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .cc-home-button {
        width: 100%;
    }

    .cc-home-hero-stage {
        min-height: 350px;
    }

    .cc-home-hero-slab {
        width: min(42%, 210px);
    }

    .cc-home-hero-slab-1 { transform: translate(-50%, -50%) scale(1.06); }
    .cc-home-hero-slab-2 { transform: translate(-105%, -48%) rotate(-7deg) scale(.82); }
    .cc-home-hero-slab-3 { transform: translate(5%, -48%) rotate(7deg) scale(.82); }

    .cc-home-usps-inner {
        grid-template-columns: 1fr 1fr;
    }

    .cc-home-usp {
        grid-template-columns: 30px minmax(0, 1fr);
        min-height: 82px;
        padding: 13px 11px;
    }

    .cc-home-usp-icon svg {
        width: 24px;
        height: 24px;
    }

    .cc-home-usp strong {
        font-size: 10px;
    }

    .cc-home-usp small {
        font-size: 9px;
    }

    .cc-home-product-grid {
        gap: 10px;
    }

    .cc-home-product-media {
        min-height: 235px;
        padding: 13px 9px 8px;
    }

    .cc-home-product-media img {
        height: 215px;
    }

    .cc-home-product-copy {
        padding: 11px;
    }

    .cc-home-product-copy h3 {
        font-size: 12px !important;
    }

    .cc-home-product-price,
    .cc-home-product-price .woocommerce-Price-amount {
        font-size: 14px;
    }

    .cc-home-product-arrow {
        width: 30px;
        height: 30px;
    }

    .cc-home-category-grid {
        gap: 10px;
    }

    .cc-home-category-card {
        min-height: 165px;
    }

    .cc-home-campaign-inner {
        grid-template-columns: 1fr;
        padding: 23px 18px;
    }

    .cc-home-campaign-inner .cc-home-button {
        grid-column: 1;
        justify-self: stretch;
    }

    .cc-home-campaign-icon {
        width: 48px;
        height: 48px;
    }

    .cc-home-seo-section {
        gap: 24px;
        padding: 25px 18px;
    }
}

@media (max-width: 390px) {
    .cc-home-product-grid {
        grid-template-columns: 1fr;
    }

    .cc-home-product-media {
        min-height: 310px;
    }

    .cc-home-product-media img {
        height: 290px;
    }
}

/* Full-width page cleanup for a normal WordPress/Divi page containing [cc_homepage]. */
body:has(.cc-homepage) #main-content > .container,
body:has(.cc-homepage) #main-content .container {
    width: 100% !important;
    max-width: none !important;
    padding: 0 !important;
}

body:has(.cc-homepage) #main-content .container::before,
body:has(.cc-homepage) #sidebar,
body:has(.cc-homepage) .entry-title,
body:has(.cc-homepage) .et_post_meta_wrapper {
    display: none !important;
}

body:has(.cc-homepage) #left-area {
    float: none !important;
    width: 100% !important;
    padding: 0 !important;
}

/* ================================
   1.0.26 HOMEPAGE POLISH + LOAD MORE
   ================================ */
.cc-home-seo-mark {
    gap: 12px;
    padding: 24px;
}

.cc-home-seo-mark img {
    display: block;
    width: min(100%, 230px);
    height: auto;
    margin: 0 auto;
    object-fit: contain;
    filter: drop-shadow(0 12px 34px rgba(211, 164, 55, .18));
}

.cc-home-seo-mark .cc-home-seo-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 30px;
    padding: 7px 12px;
    border: 1px solid rgba(221, 175, 71, .28);
    border-radius: 999px;
    background: rgba(224, 177, 73, .055);
    color: rgba(247, 239, 222, .72);
    font-size: 11px;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: .02em;
    text-align: center;
}

.cc-home-load-more-wrap {
    display: flex;
    justify-content: center;
    margin-top: 24px;
}

.cc-home-load-more {
    min-width: 190px;
    min-height: 48px;
    padding: 12px 24px;
    border: 1px solid rgba(224, 177, 73, .62);
    border-radius: 5px;
    background: rgba(224, 177, 73, .07);
    color: #ebc66d;
    font-size: 12px;
    font-weight: 850;
    letter-spacing: .035em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background .18s ease, border-color .18s ease, color .18s ease, transform .18s ease;
}

.cc-home-load-more:hover,
.cc-home-load-more:focus-visible {
    border-color: #e7ba50;
    background: rgba(224, 177, 73, .13);
    color: #ffdb7d;
    transform: translateY(-1px);
}

.cc-home-load-more:disabled,
.cc-home-load-more.is-loading {
    opacity: .62;
    cursor: wait;
    transform: none;
}

.cc-home-product-card-new {
    opacity: 0;
    transform: translateY(10px);
}

.cc-home-product-card {
    transition: opacity .2s ease, transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

@media (max-width: 900px) {
    .cc-home-seo-mark {
        display: flex;
        min-height: 0;
    }

    .cc-home-seo-mark img {
        width: min(52vw, 205px);
    }
}

@media (max-width: 620px) {
    .cc-home-load-more-wrap {
        margin-top: 18px;
    }

    .cc-home-load-more {
        width: 100%;
    }

    .cc-home-seo-mark {
        padding: 20px 16px;
    }
}


/* ================================
   1.0.28 PREMIUM FOOTER
   ================================ */
.cc-premium-footer {
    --cc-footer-gold: #e0b34f;
    --cc-footer-line: rgba(224,179,79,.28);
    position: relative;
    width: 100%;
    margin: 0;
    border-top: 1px solid var(--cc-footer-line);
    background:
        radial-gradient(circle at 12% 0%, rgba(190,130,38,.11), transparent 28%),
        radial-gradient(circle at 88% 25%, rgba(190,130,38,.07), transparent 24%),
        linear-gradient(180deg, #090a0a 0%, #040505 100%);
    color: rgba(255,255,255,.72);
    overflow: hidden;
}

.cc-footer-trustbar {
    display: grid;
    grid-template-columns: repeat(4, minmax(0,1fr));
    width: min(94%, 1460px);
    margin: 0 auto;
    border: 1px solid var(--cc-footer-line);
    border-top: 0;
    background: rgba(255,255,255,.018);
}

.cc-footer-trustitem {
    display: grid;
    grid-template-columns: 38px minmax(0,1fr);
    gap: 13px;
    align-items: center;
    min-height: 92px;
    padding: 18px 22px;
    border-right: 1px solid rgba(255,255,255,.07);
}

.cc-footer-trustitem:last-child { border-right: 0; }
.cc-footer-trustitem svg {
    width: 31px;
    height: 31px;
    fill: none;
    stroke: var(--cc-footer-gold);
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.cc-footer-trustitem span,
.cc-footer-trustitem strong,
.cc-footer-trustitem small { display:block; }
.cc-footer-trustitem strong { color:#f5efe4; font-size:13px; line-height:1.3; }
.cc-footer-trustitem small { margin-top:4px; color:rgba(255,255,255,.48); font-size:11px; line-height:1.35; }

.cc-footer-main {
    display: grid;
    grid-template-columns: minmax(300px,1.35fr) repeat(3,minmax(150px,.75fr));
    gap: 54px;
    width: min(94%, 1460px);
    margin: 0 auto;
    padding: 54px 0 48px;
}

.cc-footer-brand { max-width: 420px; }
.cc-footer-logo { display:inline-block; margin-bottom:16px; }
.cc-footer-logo .cc-full-header-logo-picture,
.cc-footer-logo picture { display:block; }
.cc-footer-logo img { width: 180px !important; max-width:180px !important; height:auto !important; }
.cc-footer-brand p { margin:0 0 20px; color:rgba(255,255,255,.60); font-size:13px; line-height:1.75; }

.cc-footer-brand-actions { display:flex; flex-wrap:wrap; gap:9px; margin-bottom:16px; }
.cc-footer-brand-actions a {
    display:inline-flex;
    align-items:center;
    gap:8px;
    min-height:38px;
    padding:8px 12px;
    border:1px solid rgba(224,179,79,.30);
    border-radius:5px;
    background:rgba(224,179,79,.045);
    color:#e8c266 !important;
    font-size:11px;
    font-weight:750;
    text-decoration:none !important;
}
.cc-footer-brand-actions a:hover { border-color:rgba(224,179,79,.65); background:rgba(224,179,79,.09); }
.cc-footer-brand-actions svg { width:17px; height:17px; fill:none; stroke:currentColor; stroke-width:1.6; stroke-linecap:round; stroke-linejoin:round; }

.cc-footer-rating {
    display:inline-flex;
    align-items:center;
    gap:10px;
    color:#f0c668 !important;
    text-decoration:none !important;
}
.cc-footer-rating svg { width:26px; height:26px; fill:none; stroke:currentColor; stroke-width:1.5; }
.cc-footer-rating span,.cc-footer-rating strong,.cc-footer-rating small { display:block; }
.cc-footer-rating strong { color:#f5efe4; font-size:14px; }
.cc-footer-rating small { margin-top:2px; color:rgba(255,255,255,.46); font-size:10px; }

.cc-footer-column h2 {
    margin: 2px 0 16px !important;
    padding:0 !important;
    color:#f3ede2 !important;
    font-family:Georgia,'Times New Roman',serif;
    font-size:17px !important;
    font-weight:500 !important;
    letter-spacing:.015em;
}
.cc-footer-column a {
    display:block;
    margin:0 0 10px;
    color:rgba(255,255,255,.60) !important;
    font-size:12px;
    line-height:1.45;
    text-decoration:none !important;
    transition:color .16s ease, transform .16s ease;
}
.cc-footer-column a:hover { color:#e8bf61 !important; transform:translateX(2px); }
.cc-footer-brand-links { margin-top:18px; padding-top:14px; border-top:1px solid rgba(224,179,79,.14); }
.cc-footer-subtitle { display:block; margin:0 0 10px; color:#d8b45e; font-size:10px; font-weight:800; letter-spacing:.09em; text-transform:uppercase; }

.cc-footer-bottom {
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
    width:min(94%,1460px);
    margin:0 auto;
    padding:19px 0 22px;
    border-top:1px solid rgba(224,179,79,.20);
    color:rgba(255,255,255,.40);
    font-size:10px;
    line-height:1.4;
}
.cc-footer-bottom strong { color:rgba(224,179,79,.76); font-size:10px; letter-spacing:.13em; }

@media (max-width: 980px) {
    .cc-footer-trustbar { grid-template-columns:repeat(2,minmax(0,1fr)); }
    .cc-footer-trustitem:nth-child(2) { border-right:0; }
    .cc-footer-trustitem:nth-child(-n+2) { border-bottom:1px solid rgba(255,255,255,.07); }
    .cc-footer-main { grid-template-columns:1.25fr repeat(2,minmax(150px,.75fr)); gap:36px; }
    .cc-footer-main .cc-footer-column:last-child { grid-column:2 / -1; }
}

@media (max-width: 680px) {
    .cc-footer-trustbar { width:calc(100% - 24px); }
    .cc-footer-trustitem { min-height:78px; padding:14px; grid-template-columns:31px minmax(0,1fr); gap:10px; }
    .cc-footer-trustitem svg { width:25px; height:25px; }
    .cc-footer-trustitem strong { font-size:11px; }
    .cc-footer-trustitem small { font-size:9px; }
    .cc-footer-main { grid-template-columns:repeat(2,minmax(0,1fr)); width:calc(100% - 30px); gap:30px 22px; padding:38px 0 34px; }
    .cc-footer-brand { grid-column:1 / -1; max-width:none; }
    .cc-footer-main .cc-footer-column:last-child { grid-column:auto; }
    .cc-footer-bottom { width:calc(100% - 30px); align-items:flex-start; flex-direction:column; gap:7px; }
}

@media (max-width: 430px) {
    .cc-footer-trustbar { grid-template-columns:1fr; }
    .cc-footer-trustitem,
    .cc-footer-trustitem:nth-child(2) { border-right:0; border-bottom:1px solid rgba(255,255,255,.07); }
    .cc-footer-trustitem:last-child { border-bottom:0; }
    .cc-footer-main { grid-template-columns:1fr 1fr; }
    .cc-footer-column h2 { font-size:15px !important; }
    .cc-footer-column a { font-size:11px; }
}


/* ================================
   1.0.29 PREMIUM FLOATING WHATSAPP
   ================================ */
.cc-wa-float {
    position: fixed;
    z-index: 99990;
    left: 22px;
    bottom: 22px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    font-family: inherit;
}

.cc-wa-trigger {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 54px;
    padding: 7px 15px 7px 7px;
    border: 1px solid rgba(224,179,79,.58);
    border-radius: 999px;
    background: rgba(5,7,7,.96);
    color: #f5efe4;
    box-shadow: 0 12px 34px rgba(0,0,0,.38), inset 0 0 0 1px rgba(255,255,255,.02);
    cursor: pointer;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.cc-wa-trigger:hover,
.cc-wa-trigger:focus-visible {
    border-color: #e2b653;
    background: #0c0e0e;
    outline: none;
}

.cc-wa-trigger-ring {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(145deg,#2fbd67,#1d8e4a);
    color: #fff;
    box-shadow: 0 0 0 1px rgba(255,255,255,.09), 0 0 22px rgba(47,189,103,.18);
}

.cc-wa-trigger-ring svg,
.cc-wa-panel-icon svg,
.cc-wa-start svg {
    width: 21px;
    height: 21px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.65;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.cc-wa-trigger-label {
    color: #f2c96c;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .02em;
}

.cc-wa-panel {
    position: absolute;
    left: 0;
    bottom: calc(100% + 10px);
    width: min(360px, calc(100vw - 32px));
    padding: 18px;
    border: 1px solid rgba(224,179,79,.44);
    border-radius: 10px;
    background:
        radial-gradient(circle at 100% 0%, rgba(224,179,79,.13), transparent 36%),
        linear-gradient(155deg, rgba(16,18,18,.98), rgba(5,6,6,.99));
    box-shadow: 0 22px 60px rgba(0,0,0,.52), inset 0 0 0 1px rgba(255,255,255,.02);
    opacity: 0;
    visibility: hidden;
    transform: translateY(9px) scale(.985);
    transform-origin: left bottom;
    transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
}

.cc-wa-float.is-open .cc-wa-panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.cc-wa-close {
    position: absolute;
    top: 10px;
    right: 11px;
    width: 30px;
    height: 30px;
    padding: 0;
    border: 0;
    background: transparent;
    color: rgba(255,255,255,.50);
    font-size: 25px;
    line-height: 1;
    cursor: pointer;
}

.cc-wa-close:hover { color:#f3c869; }

.cc-wa-panel-head {
    display: grid;
    grid-template-columns: 42px minmax(0,1fr);
    align-items: center;
    gap: 11px;
    padding-right: 30px;
}

.cc-wa-panel-icon {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(47,189,103,.13);
    color: #4ed27e;
    border: 1px solid rgba(78,210,126,.25);
}

.cc-wa-panel-head small,
.cc-wa-panel-head strong { display:block; }
.cc-wa-panel-head small { color:#e4b958; font-size:9px; font-weight:800; letter-spacing:.13em; text-transform:uppercase; }
.cc-wa-panel-head strong { margin-top:3px; color:#f7f1e7; font-size:16px; line-height:1.25; }
.cc-wa-panel p { margin:14px 0 16px; color:rgba(255,255,255,.66); font-size:12px; line-height:1.65; }

.cc-wa-start {
    display:flex;
    align-items:center;
    justify-content:center;
    gap:9px;
    width:100%;
    min-height:48px;
    padding:11px 16px;
    border:1px solid #e0b34f;
    border-radius:6px;
    background:linear-gradient(180deg,#f1cd75 0%,#d8a63f 100%);
    color:#090909 !important;
    font-size:12px;
    font-weight:850;
    text-decoration:none !important;
    text-transform:uppercase;
}
.cc-wa-start:hover { background:linear-gradient(180deg,#f7d98d 0%,#e4b44d 100%); color:#090909 !important; }

@media (max-width: 600px) {
    .cc-wa-float { left: 14px; bottom: 14px; }
    .cc-wa-trigger { width:50px; height:50px; min-height:50px; padding:5px; justify-content:center; }
    .cc-wa-trigger-ring { width:38px; height:38px; }
    .cc-wa-trigger-label { display:none; }
    .cc-wa-panel { width:min(330px, calc(100vw - 28px)); }
}


/* ================================
   1.0.30 POWER MANAGER WHATSAPP SKIN
   Reuse the existing Power Manager WhatsApp button + popup.
   ================================ */
.power-whatsapp-button {
    z-index: 99990 !important;
    font-family: inherit !important;
}

.power-whatsapp-button a {
    display: grid !important;
    place-items: center !important;
    width: 62px !important;
    height: 62px !important;
    padding: 7px !important;
    border: 1px solid rgba(224,179,79,.62) !important;
    border-radius: 50% !important;
    background:
        radial-gradient(circle at 30% 25%, rgba(224,179,79,.14), transparent 45%),
        rgba(5,7,7,.97) !important;
    box-shadow: 0 14px 36px rgba(0,0,0,.44), inset 0 0 0 1px rgba(255,255,255,.025) !important;
    transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease !important;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.power-whatsapp-button a:hover,
.power-whatsapp-button a:focus-visible {
    transform: translateY(-2px) scale(1.02) !important;
    border-color: #e4b950 !important;
    box-shadow: 0 18px 42px rgba(0,0,0,.50), 0 0 24px rgba(224,179,79,.10) !important;
    outline: none !important;
}

.power-whatsapp-button img {
    width: 46px !important;
    height: 46px !important;
    margin: 0 !important;
    border: 0 !important;
    border-radius: 50% !important;
    background: #25d366 !important;
    box-shadow: 0 0 0 1px rgba(255,255,255,.10), 0 0 22px rgba(37,211,102,.16) !important;
    object-fit: contain !important;
    transform: none !important;
}

.power-whatsapp-button.bottom-left { bottom: 22px !important; left: 22px !important; }
.power-whatsapp-button.bottom-right { bottom: 22px !important; right: 22px !important; }
.power-whatsapp-button.top-left { top: 22px !important; left: 22px !important; }
.power-whatsapp-button.top-right { top: 22px !important; right: 22px !important; }

#power-whatsapp-div {
    width: min(360px, calc(100vw - 32px)) !important;
    padding: 22px !important;
    border: 1px solid rgba(224,179,79,.46) !important;
    border-radius: 10px !important;
    background:
        radial-gradient(circle at 100% 0%, rgba(224,179,79,.14), transparent 38%),
        linear-gradient(155deg, rgba(16,18,18,.99), rgba(5,6,6,.995)) !important;
    color: #f6f0e6 !important;
    box-shadow: 0 24px 64px rgba(0,0,0,.56), inset 0 0 0 1px rgba(255,255,255,.025) !important;
    text-align: left !important;
    font-family: inherit !important;
    z-index: 99991 !important;
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
}

#power-whatsapp-div.bottom-left { bottom: 96px !important; left: 22px !important; }
#power-whatsapp-div.bottom-right { bottom: 96px !important; right: 22px !important; }
#power-whatsapp-div.top-left { top: 96px !important; left: 22px !important; }
#power-whatsapp-div.top-right { top: 96px !important; right: 22px !important; }

#power-whatsapp-div::before {
    content: 'CARD & CONQUER';
    display: block;
    margin: 0 34px 7px 0;
    color: #dcae48;
    font-size: 10px;
    font-weight: 850;
    line-height: 1.2;
    letter-spacing: .14em;
}

#power-whatsapp-div h3 {
    margin: 0 34px 8px 0 !important;
    padding: 0 !important;
    color: #f8f2e8 !important;
    font-family: Georgia, 'Times New Roman', serif !important;
    font-size: 22px !important;
    font-weight: 500 !important;
    line-height: 1.18 !important;
}

#power-whatsapp-div p {
    margin: 0 0 18px !important;
    color: rgba(255,255,255,.64) !important;
    font-size: 13px !important;
    line-height: 1.65 !important;
}

#power-whatsapp-div > a {
    display: block !important;
    text-decoration: none !important;
}

#power-whatsapp-div button {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 9px !important;
    width: 100% !important;
    min-height: 50px !important;
    padding: 12px 16px !important;
    border: 1px solid #f1ca70 !important;
    border-radius: 6px !important;
    background: linear-gradient(180deg, #f4d383 0%, #daa83f 100%) !important;
    color: #090909 !important;
    font-family: inherit !important;
    font-size: 12px !important;
    font-weight: 850 !important;
    line-height: 1.2 !important;
    letter-spacing: .015em !important;
    text-transform: uppercase !important;
    box-shadow: 0 9px 24px rgba(211,161,60,.14) !important;
}

#power-whatsapp-div button:hover,
#power-whatsapp-div button:focus-visible {
    background: linear-gradient(180deg, #f8dd95 0%, #e5b64e 100%) !important;
    outline: none !important;
}

#power-whatsapp-div button img {
    width: 22px !important;
    height: 22px !important;
    margin: 0 !important;
    border-radius: 50% !important;
    background: #25d366 !important;
    object-fit: contain !important;
}

#power-whatsapp-div .close-button {
    top: 12px !important;
    right: 12px !important;
    display: grid !important;
    place-items: center !important;
    width: 30px !important;
    height: 30px !important;
    border: 1px solid rgba(255,255,255,.10) !important;
    border-radius: 50% !important;
    background: rgba(255,255,255,.025) !important;
    color: rgba(255,255,255,.50) !important;
    font-size: 20px !important;
    font-weight: 400 !important;
    line-height: 1 !important;
}

#power-whatsapp-div .close-button:hover {
    border-color: rgba(224,179,79,.45) !important;
    color: #f2c86a !important;
}

@media (max-width: 620px) {
    .power-whatsapp-button.bottom-left { left: 14px !important; bottom: 14px !important; }
    .power-whatsapp-button.bottom-right { right: 14px !important; bottom: 14px !important; }
    .power-whatsapp-button a { width: 56px !important; height: 56px !important; padding: 6px !important; }
    .power-whatsapp-button img { width: 42px !important; height: 42px !important; }

    #power-whatsapp-div {
        width: calc(100vw - 28px) !important;
        padding: 19px !important;
    }
    #power-whatsapp-div.bottom-left { left: 14px !important; bottom: 82px !important; }
    #power-whatsapp-div.bottom-right { right: 14px !important; bottom: 82px !important; }
    #power-whatsapp-div h3 { font-size: 20px !important; }
}


/* ================================
   1.0.31 FOOTER BRAND POLISH
   ================================ */
.cc-footer-brand {
    position: relative;
    max-width: 440px;
    padding-top: 2px;
}

.cc-footer-logo {
    position: relative;
    isolation: isolate;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 236px;
    min-height: 158px;
    margin: -24px 0 2px -22px;
    text-decoration: none !important;
}

.cc-footer-logo::before {
    content: "";
    position: absolute;
    z-index: -1;
    inset: 16% 8% 8%;
    background: radial-gradient(circle at 50% 46%, rgba(224,179,79,.18), rgba(224,179,79,.055) 36%, transparent 72%);
    filter: blur(15px);
    opacity: .95;
    pointer-events: none;
}

.cc-footer-logo .cc-full-header-logo-picture,
.cc-footer-logo picture {
    display: block;
    width: 100%;
}

.cc-footer-logo img {
    display: block;
    width: 220px !important;
    max-width: 220px !important;
    height: auto !important;
    margin: 0 !important;
    mix-blend-mode: screen;
    filter: drop-shadow(0 12px 26px rgba(0,0,0,.56)) drop-shadow(0 0 12px rgba(224,179,79,.08));
    transition: transform .2s ease, filter .2s ease;
}

.cc-footer-logo:hover img {
    transform: translateY(-2px) scale(1.015);
    filter: drop-shadow(0 14px 30px rgba(0,0,0,.62)) drop-shadow(0 0 15px rgba(224,179,79,.12));
}

.cc-footer-brand-copy {
    position: relative;
    max-width: 390px;
    padding: 13px 0 0 18px;
    border-left: 1px solid rgba(224,179,79,.42);
}

.cc-footer-brand-kicker {
    display: block;
    margin: 0 0 7px;
    color: #e5ba58;
    font-size: 10px;
    font-weight: 850;
    line-height: 1.2;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.cc-footer-brand .cc-footer-brand-copy p {
    margin: 0 0 21px;
    max-width: 365px;
    color: rgba(255,255,255,.62);
    font-size: 13px;
    line-height: 1.72;
}

@media (max-width: 680px) {
    .cc-footer-logo {
        width: 215px;
        min-height: 142px;
        margin: -20px 0 0 -18px;
    }
    .cc-footer-logo img {
        width: 200px !important;
        max-width: 200px !important;
    }
    .cc-footer-brand-copy {
        max-width: 100%;
    }
}

/* ================================
   1.0.32 SHARED BRANDING + FOOTER ALIGNMENT
   ================================ */
.cc-shared-brand-logo {
    display: block;
    width: auto;
    height: auto;
    object-fit: contain;
}

.cc-footer-main {
    align-items: start;
}

.cc-footer-brand {
    padding-top: 0;
}

.cc-footer-logo {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    width: auto;
    min-height: 0;
    margin: 0 0 20px;
}

.cc-footer-logo::before {
    inset: 8% 4%;
}

.cc-footer-logo img,
.cc-footer-logo .cc-shared-brand-logo {
    width: 210px !important;
    max-width: 210px !important;
    max-height: 150px !important;
    margin: 0 !important;
    mix-blend-mode: normal !important;
    object-fit: contain !important;
}

.cc-footer-brand-copy {
    padding-top: 0;
}

@media (max-width: 680px) {
    .cc-footer-logo {
        width: auto;
        min-height: 0;
        margin: 0 0 16px;
    }

    .cc-footer-logo img,
    .cc-footer-logo .cc-shared-brand-logo {
        width: 190px !important;
        max-width: 190px !important;
        max-height: 135px !important;
    }
}


/* ================================
   1.0.34 FOOTER LOGO CENTER + PAYMENT METHODS
   ================================ */
.cc-footer-brand .cc-footer-logo {
    display: flex !important;
    width: 100% !important;
    justify-content: center !important;
    align-items: center !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    text-align: center;
}

.cc-footer-brand .cc-footer-logo picture,
.cc-footer-brand .cc-footer-logo .cc-full-header-logo-picture {
    margin-left: auto !important;
    margin-right: auto !important;
}

.cc-footer-brand .cc-footer-logo img,
.cc-footer-brand .cc-footer-logo .cc-shared-brand-logo {
    margin-left: auto !important;
    margin-right: auto !important;
}

.cc-footer-payments {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    width: min(92%, 1460px);
    margin: 0 auto;
    padding: 18px 0;
    border-top: 1px solid rgba(224,179,79,.20);
}

.cc-footer-payments-label {
    flex: 0 0 auto;
    color: rgba(255,255,255,.52);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.cc-footer-payment-methods {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 8px;
}

.cc-footer-payment-method {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 58px;
    min-height: 34px;
    padding: 6px 10px;
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 4px;
    background: rgba(255,255,255,.035);
    color: rgba(255,255,255,.78);
}

.cc-footer-payment-icon,
.cc-footer-payment-icon p,
.cc-footer-payment-icon span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 !important;
    padding: 0 !important;
}

.cc-footer-payment-icon img {
    display: block !important;
    width: auto !important;
    max-width: 78px !important;
    height: 22px !important;
    max-height: 22px !important;
    margin: 0 !important;
    object-fit: contain;
}

.cc-footer-payment-text {
    color: rgba(255,255,255,.76);
    font-size: 10px;
    font-weight: 700;
    line-height: 1.2;
    white-space: nowrap;
}

@media (max-width: 780px) {
    .cc-footer-payments {
        width: calc(100% - 30px);
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
    }

    .cc-footer-payment-methods {
        justify-content: flex-start;
    }
}

@media (max-width: 520px) {
    .cc-footer-payment-method {
        min-width: 52px;
        min-height: 32px;
        padding: 5px 8px;
    }

    .cc-footer-payment-icon img {
        max-width: 68px !important;
        height: 20px !important;
        max-height: 20px !important;
    }
}


/* ================================
   1.0.35 footer company details
   ================================ */
.cc-footer-meta {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 32px;
    width: min(92%, 1460px);
    margin: 0 auto;
    padding: 22px 0 24px;
    border-top: 1px solid rgba(224,179,79,.20);
}

.cc-footer-company {
    min-width: 0;
}

.cc-footer-meta-label {
    display: block;
    margin-bottom: 7px;
    color: rgba(224,179,79,.82);
    font-size: 10px;
    font-weight: 850;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.cc-footer-company-lines {
    display: flex;
    flex-wrap: wrap;
    gap: 4px 10px;
    color: rgba(255,255,255,.55);
    font-size: 11px;
    line-height: 1.55;
}

.cc-footer-company-lines strong {
    color: rgba(255,255,255,.78);
    font-size: 11px;
}

.cc-footer-company-lines span,
.cc-footer-company-lines strong {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.cc-footer-company-lines i {
    color: rgba(224,179,79,.40);
    font-style: normal;
}

.cc-footer-company-lines a {
    color: rgba(255,255,255,.62) !important;
    text-decoration: none !important;
}

.cc-footer-company-lines a:hover {
    color: #e8bf61 !important;
}

.cc-footer-meta .cc-footer-payments {
    width: auto;
    margin: 0;
    padding: 0;
    border: 0;
}

@media (max-width: 900px) {
    .cc-footer-meta {
        grid-template-columns: 1fr;
        align-items: start;
        gap: 18px;
        width: calc(100% - 30px);
    }

    .cc-footer-meta .cc-footer-payments {
        width: 100%;
    }
}

@media (max-width: 560px) {
    .cc-footer-company-lines {
        display: grid;
        gap: 4px;
    }

    .cc-footer-company-lines span,
    .cc-footer-company-lines strong {
        display: flex;
        flex-wrap: wrap;
    }
}


/* ================================
   1.0.36 Power Manager cookie popup - Card & Conquer skin
   ================================ */
#pm-cookie-overlay {
    background: rgba(0,0,0,.78) !important;
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
}

#pm-cookie-popup {
    width: min(calc(100% - 32px), 690px) !important;
    max-width: 690px !important;
    max-height: min(88vh, 760px);
    overflow-y: auto;
    padding: 30px 32px 28px !important;
    border: 1px solid rgba(224,179,79,.48) !important;
    border-radius: 8px !important;
    background:
        radial-gradient(circle at 92% 6%, rgba(224,179,79,.10), transparent 32%),
        linear-gradient(145deg, rgba(18,18,16,.985), rgba(5,6,6,.995)) !important;
    color: #f5efe4 !important;
    box-shadow:
        0 30px 90px rgba(0,0,0,.60),
        inset 0 0 0 1px rgba(255,255,255,.018),
        inset 0 0 45px rgba(224,179,79,.025) !important;
    font-family: inherit !important;
    scrollbar-color: rgba(224,179,79,.55) rgba(255,255,255,.04);
}

#pm-cookie-popup::-webkit-scrollbar {
    width: 9px;
}

#pm-cookie-popup::-webkit-scrollbar-track {
    background: rgba(255,255,255,.035);
}

#pm-cookie-popup::-webkit-scrollbar-thumb {
    border: 2px solid transparent;
    border-radius: 8px;
    background: rgba(224,179,79,.48);
    background-clip: padding-box;
}

#pm-cookie-popup .pm-cookie-header {
    position: relative;
}

#pm-cookie-popup .pm-cookie-logo {
    display: block !important;
    width: auto !important;
    max-width: 180px !important;
    max-height: 110px !important;
    margin: 0 0 22px !important;
    object-fit: contain;
    filter: drop-shadow(0 7px 20px rgba(224,179,79,.12));
}

#pm-cookie-popup .pm-cookie-header h2 {
    margin: 0 0 14px !important;
    padding: 0 !important;
    color: #f7f1e7 !important;
    font-family: Georgia, 'Times New Roman', serif !important;
    font-size: clamp(25px, 4vw, 32px) !important;
    font-weight: 500 !important;
    line-height: 1.12 !important;
    letter-spacing: -.015em;
}

#pm-cookie-popup .pm-cookie-text,
#pm-cookie-popup .pm-cookie-text p {
    color: rgba(255,255,255,.67) !important;
    font-size: 14px !important;
    line-height: 1.65 !important;
}

#pm-cookie-popup .pm-cookie-text p:last-child {
    margin-bottom: 0 !important;
}

#pm-cookie-popup .pm-cookie-categories {
    margin-top: 24px !important;
    padding-top: 8px !important;
    border-top: 1px solid rgba(224,179,79,.28) !important;
}

#pm-cookie-popup .pm-cookie-category-row {
    min-height: 52px;
    padding: 11px 0 !important;
    border-bottom: 1px solid rgba(255,255,255,.09) !important;
    color: rgba(255,255,255,.88) !important;
    font-size: 14px !important;
    font-weight: 700 !important;
}

#pm-cookie-popup .pm-cookie-switch {
    width: 50px !important;
    height: 28px !important;
    flex: 0 0 50px;
}

#pm-cookie-popup .pm-cookie-switch span {
    border: 1px solid rgba(255,255,255,.16) !important;
    border-radius: 28px !important;
    background: rgba(255,255,255,.16) !important;
    box-shadow: inset 0 0 8px rgba(0,0,0,.28);
}

#pm-cookie-popup .pm-cookie-switch span:before {
    top: 3px !important;
    left: 3px !important;
    width: 20px !important;
    height: 20px !important;
    background: #f4efe6 !important;
    box-shadow: 0 2px 7px rgba(0,0,0,.35);
}

#pm-cookie-popup .pm-cookie-switch input:checked + span {
    border-color: rgba(224,179,79,.72) !important;
    background: linear-gradient(180deg, #e9c466, #c9982f) !important;
}

#pm-cookie-popup .pm-cookie-switch input:checked + span:before {
    transform: translateX(22px) !important;
}

#pm-cookie-popup .pm-cookie-switch.disabled {
    opacity: .62 !important;
}

#pm-cookie-popup .pm-cookie-switch.disabled span {
    border-color: rgba(224,179,79,.38) !important;
    background: rgba(224,179,79,.22) !important;
}

#pm-cookie-popup .pm-cookie-buttons {
    display: grid !important;
    grid-template-columns: auto auto minmax(150px, 1fr);
    gap: 10px !important;
    margin-top: 24px !important;
}

#pm-cookie-popup .pm-cookie-buttons button {
    min-height: 48px;
    margin: 0 !important;
    padding: 12px 17px !important;
    border-radius: 5px !important;
    font-family: inherit !important;
    font-size: 13px !important;
    font-weight: 800 !important;
    line-height: 1.15 !important;
    letter-spacing: .01em;
    white-space: nowrap;
    box-shadow: none !important;
    transition: border-color .18s ease, background .18s ease, color .18s ease, transform .18s ease;
}

#pm-cookie-popup #pm-cookie-deny {
    border: 1px solid rgba(255,255,255,.16) !important;
    background: rgba(255,255,255,.045) !important;
    color: rgba(255,255,255,.76) !important;
}

#pm-cookie-popup #pm-cookie-selection {
    border: 1px solid rgba(224,179,79,.55) !important;
    background: rgba(224,179,79,.06) !important;
    color: #e7bd5d !important;
}

#pm-cookie-popup #pm-cookie-allow-all {
    border: 1px solid #f3d078 !important;
    background: linear-gradient(180deg, #f3d27b 0%, #d7a43b 100%) !important;
    color: #090909 !important;
    text-shadow: none !important;
    box-shadow: 0 10px 28px rgba(211,161,60,.16) !important;
}

#pm-cookie-popup #pm-cookie-deny:hover,
#pm-cookie-popup #pm-cookie-selection:hover,
#pm-cookie-popup #pm-cookie-allow-all:hover {
    transform: translateY(-1px);
}

#pm-cookie-popup #pm-cookie-deny:hover {
    border-color: rgba(255,255,255,.26) !important;
    background: rgba(255,255,255,.075) !important;
    color: #fff !important;
}

#pm-cookie-popup #pm-cookie-selection:hover {
    border-color: rgba(224,179,79,.85) !important;
    background: rgba(224,179,79,.11) !important;
    color: #f0cb73 !important;
}

#pm-cookie-popup #pm-cookie-allow-all:hover {
    background: linear-gradient(180deg, #f8dc91 0%, #e2b44e 100%) !important;
}

#pm-cookie-popup #pm-cookie-error {
    margin-top: 14px !important;
    padding: 10px 12px;
    border: 1px solid rgba(217,78,78,.30);
    border-radius: 4px;
    background: rgba(217,78,78,.06);
    color: #ef9c9c !important;
    font-size: 12px;
}

@media (max-width: 620px) {
    #pm-cookie-popup {
        width: calc(100% - 20px) !important;
        max-height: calc(100vh - 20px);
        padding: 22px 20px 20px !important;
        border-radius: 6px !important;
    }

    #pm-cookie-popup .pm-cookie-logo {
        max-width: 150px !important;
        max-height: 90px !important;
        margin-bottom: 18px !important;
    }

    #pm-cookie-popup .pm-cookie-header h2 {
        font-size: 25px !important;
    }

    #pm-cookie-popup .pm-cookie-buttons {
        grid-template-columns: 1fr !important;
    }

    #pm-cookie-popup .pm-cookie-buttons button {
        width: 100% !important;
    }

    #pm-cookie-popup #pm-cookie-allow-all {
        order: 1;
    }

    #pm-cookie-popup #pm-cookie-selection {
        order: 2;
    }

    #pm-cookie-popup #pm-cookie-deny {
        order: 3;
    }
}


/* =========================================================
   1.0.37 POWER MANAGER CHATBOT PREMIUM SKIN
   Style the existing Power Manager chatbot in the same
   Card & Conquer black-gold premium look.
   ========================================================= */
#chatbot-toggle {
    border: 1px solid rgba(230, 186, 74, 0.42) !important;
    background: linear-gradient(180deg, rgba(18,18,18,.98) 0%, rgba(7,7,7,.98) 100%) !important;
    color: #f0c866 !important;
    box-shadow: 0 16px 38px rgba(0, 0, 0, 0.46), 0 0 0 1px rgba(230, 186, 74, 0.12) inset !important;
}

#chatbot-toggle:hover,
#chatbot-toggle:focus-visible {
    transform: translateY(-2px) scale(1.04) !important;
    border-color: rgba(240, 200, 102, 0.72) !important;
    color: #ffd980 !important;
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.52), 0 0 0 1px rgba(240, 200, 102, 0.18) inset !important;
}

#chatbot-toggle .pm-chatbot-toggle-icon {
    width: 28px !important;
    height: 28px !important;
    stroke-width: 1.9 !important;
}

#chatbot-box {
    border: 1px solid rgba(223, 177, 68, 0.34) !important;
    border-radius: 12px !important;
    background:
        radial-gradient(circle at top right, rgba(196, 145, 30, 0.14), transparent 34%),
        radial-gradient(circle at bottom left, rgba(196, 145, 30, 0.10), transparent 30%),
        linear-gradient(180deg, rgba(12,12,12,.98) 0%, rgba(5,5,5,.99) 100%) !important;
    box-shadow: 0 28px 72px rgba(0,0,0,.55), 0 0 0 1px rgba(223,177,68,.05) inset !important;
}

#chat-titel,
.chat-titel {
    padding: 16px 18px !important;
    background: linear-gradient(180deg, rgba(22,22,22,.98) 0%, rgba(10,10,10,.98) 100%) !important;
    color: #f1d182 !important;
    border-bottom: 1px solid rgba(223, 177, 68, 0.18) !important;
    font-size: 16px !important;
    letter-spacing: .02em !important;
}

#chat-titel .pm-chatbot-title-main,
.chat-titel .pm-chatbot-title-main {
    gap: 10px !important;
}

#chat-titel .pm-chatbot-title-main::before,
.chat-titel .pm-chatbot-title-main::before {
    content: '';
    flex: 0 0 10px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 35%, #ffe39d 0%, #edc660 42%, #b98424 100%);
    box-shadow: 0 0 0 3px rgba(231, 189, 83, 0.12), 0 0 18px rgba(231, 189, 83, 0.22);
}

#chat-log,
.chat-log {
    background:
        linear-gradient(180deg, rgba(14,14,14,.96) 0%, rgba(10,10,10,.98) 100%) !important;
    color: #e9dfcb !important;
    scrollbar-width: thin;
    scrollbar-color: rgba(223,177,68,.45) rgba(255,255,255,.04);
}

#chat-log::-webkit-scrollbar {
    width: 8px;
}

#chat-log::-webkit-scrollbar-track {
    background: rgba(255,255,255,.04);
}

#chat-log::-webkit-scrollbar-thumb {
    background: rgba(223,177,68,.42);
    border-radius: 999px;
}


.chat-msg-user > div,
#chat-log .user {
    background: linear-gradient(180deg, #f0d07a 0%, #dcae49 100%) !important;
    color: #111 !important;
    border: 1px solid rgba(255, 219, 125, 0.35) !important;
    box-shadow: 0 8px 22px rgba(220, 174, 73, 0.12);
}

.chat-msg-bot > div,
#chat-log .bot {
    background: rgba(255,255,255,0.05) !important;
    color: #f4efe2 !important;
    border: 1px solid rgba(223,177,68,.18) !important;
    box-shadow: 0 8px 22px rgba(0,0,0,.20);
}

.chat-msg-bot blockquote {
    border-left-color: rgba(223,177,68,.45) !important;
}

.chat-msg-bot code {
    background: rgba(255,255,255,.08) !important;
    color: #f6df9d !important;
}

#chat-form {
    padding: 12px !important;
    gap: 8px !important;
    background: rgba(8,8,8,.98) !important;
    border-top: 1px solid rgba(223,177,68,.14) !important;
}

#chat-input {
    height: 46px !important;
    border: 1px solid rgba(223,177,68,.35) !important;
    border-radius: 10px !important;
    background: rgba(255,255,255,.03) !important;
    color: #fff4d8 !important;
    padding: 10px 14px !important;
    box-shadow: none !important;
}

#chat-input::placeholder {
    color: rgba(255,244,216,.52) !important;
}

#chat-input:focus {
    border-color: rgba(240, 200, 102, 0.82) !important;
    box-shadow: 0 0 0 3px rgba(223,177,68,.12) !important;
}

#chat-send {
    height: 46px !important;
    padding: 0 18px !important;
    border-radius: 10px !important;
    border: 1px solid #f1d07b !important;
    background: linear-gradient(180deg, #f1d17d 0%, #dcae48 100%) !important;
    color: #121212 !important;
    font-weight: 700 !important;
    letter-spacing: .01em;
    box-shadow: 0 12px 26px rgba(220,174,72,.18) !important;
}

#chat-send:hover,
#chat-send:focus-visible {
    background: linear-gradient(180deg, #f7dc95 0%, #e1b554 100%) !important;
    transform: translateY(-1px);
}

.chat-msg a,
.chat-log a {
    color: #f2d27e !important;
}

@media (max-width: 480px) {
    #chatbot-box {
        left: 12px !important;
        right: 12px !important;
        bottom: calc(86px + env(safe-area-inset-bottom)) !important;
        width: auto !important;
        height: min(520px, calc(100vh - 112px)) !important;
        border-radius: 12px !important;
    }

    #chat-titel,
    .chat-titel {
        padding: 14px 15px !important;
        font-size: 15px !important;
    }

    #chat-form {
        padding: 10px !important;
    }

    #chat-input,
    #chat-send {
        height: 42px !important;
    }
}


/* 1.0.38: keep an empty Carter chat visually empty; no invented helper text. */
#chat-log:empty::before, .chat-log:empty::before { content: none !important; display: none !important; }

/* =========================================================
   1.0.39 PREMIUM GRADED PSA LANDING PAGE
   ========================================================= */
body:has(.cc-graded-page) #main-content {
    background: #050606 !important;
}

body:has(.cc-graded-page) #main-content > .container,
body:has(.cc-graded-page) #main-content .container {
    width: 100% !important;
    max-width: none !important;
    padding: 0 !important;
}

body:has(.cc-graded-page) #main-content .container::before,
body:has(.cc-graded-page) #sidebar,
body:has(.cc-graded-page) .entry-title,
body:has(.cc-graded-page) .et_post_meta_wrapper {
    display: none !important;
}

body:has(.cc-graded-page) #left-area {
    float: none !important;
    width: 100% !important;
    padding: 0 !important;
}

body:has(.cc-graded-page) .entry-content,
body:has(.cc-graded-page) .et-l--post,
body:has(.cc-graded-page) .et_builder_inner_content,
body:has(.cc-graded-page) .et_pb_section,
body:has(.cc-graded-page) .et_pb_row,
body:has(.cc-graded-page) .et_pb_column,
body:has(.cc-graded-page) .et_pb_module,
body:has(.cc-graded-page) .et_pb_code_inner,
body:has(.cc-graded-page) .et_pb_text_inner {
    overflow: visible !important;
}

.cc-graded-page {
    width: 100%;
    overflow: hidden;
    background:
        radial-gradient(circle at 85% 10%, rgba(199,145,37,.10), transparent 26%),
        radial-gradient(circle at 8% 34%, rgba(174,111,24,.07), transparent 24%),
        #050606;
    color: #f4efe7;
}

.cc-graded-page *,
.cc-graded-page *::before,
.cc-graded-page *::after {
    box-sizing: border-box;
}

.cc-graded-hero {
    position: relative;
    min-height: 650px;
    border-bottom: 1px solid rgba(218,171,66,.28);
    background:
        linear-gradient(90deg, rgba(5,6,6,.98) 0%, rgba(5,6,6,.88) 42%, rgba(5,6,6,.28) 78%, rgba(5,6,6,.55) 100%),
        linear-gradient(180deg, rgba(5,6,6,.08), #050606 100%),
        var(--ccpc-backdrop-image, url('https://cardandconquer.com/wp-content/uploads/2026/09/backdrop-cardandconquer.png')) center center / cover no-repeat;
}

.cc-graded-hero::after {
    content: '';
    position: absolute;
    inset: auto 0 0;
    height: 150px;
    pointer-events: none;
    background: linear-gradient(to bottom, transparent, #050606);
}

.cc-graded-hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0,.95fr) minmax(520px,1.05fr);
    gap: 60px;
    align-items: center;
    width: min(92%, 1440px);
    min-height: 650px;
    margin: 0 auto;
    padding: 70px 0 86px;
}

.cc-graded-hero-copy {
    max-width: 720px;
}

.cc-graded-hero-copy h1 {
    max-width: 760px;
    margin: 10px 0 22px !important;
    color: #f7f1e8 !important;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(48px, 5vw, 78px) !important;
    font-weight: 500 !important;
    line-height: 1.02 !important;
    letter-spacing: -.035em;
}

.cc-graded-hero-copy > p {
    max-width: 650px;
    margin: 0 0 28px !important;
    color: rgba(255,255,255,.68) !important;
    font-size: 16px;
    line-height: 1.72;
}

.cc-graded-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 11px;
    margin-bottom: 34px;
}

.cc-graded-hero-facts {
    display: grid;
    grid-template-columns: repeat(3,minmax(0,1fr));
    max-width: 690px;
    overflow: hidden;
    border-top: 1px solid rgba(219,173,69,.25);
    border-bottom: 1px solid rgba(219,173,69,.25);
}

.cc-graded-hero-facts > div {
    padding: 17px 19px 16px;
    border-right: 1px solid rgba(255,255,255,.07);
}

.cc-graded-hero-facts > div:first-child { padding-left: 0; }
.cc-graded-hero-facts > div:last-child { border-right: 0; }
.cc-graded-hero-facts strong,
.cc-graded-hero-facts span { display: block; }
.cc-graded-hero-facts strong { color: #e9bd59; font-size: 15px; line-height: 1.2; }
.cc-graded-hero-facts span { margin-top: 4px; color: rgba(255,255,255,.48); font-size: 10px; line-height: 1.35; }

.cc-graded-hero-stage {
    position: relative;
    min-height: 500px;
}

.cc-graded-hero-light {
    position: absolute;
    left: 50%;
    bottom: 2%;
    width: 74%;
    height: 26%;
    transform: translateX(-50%);
    border-radius: 50%;
    background: radial-gradient(ellipse at center, rgba(225,176,65,.34), rgba(225,176,65,.07) 42%, transparent 72%);
    filter: blur(19px);
}

.cc-graded-psa-mark {
    position: absolute;
    z-index: 1;
    top: 8%;
    left: 50%;
    width: min(40%, 260px);
    transform: translateX(-50%);
    opacity: .11;
    filter: saturate(.8) drop-shadow(0 0 25px rgba(220,171,55,.18));
}

.cc-graded-hero-card {
    position: absolute;
    z-index: 3;
    top: 50%;
    left: 50%;
    display: block;
    width: min(32%, 250px);
    transform-origin: 50% 90%;
    filter: drop-shadow(0 28px 34px rgba(0,0,0,.55));
    transition: transform .22s ease, filter .22s ease;
}

.cc-graded-hero-card img {
    display: block;
    width: 100%;
    max-height: 475px;
    object-fit: contain;
}

.cc-graded-hero-card-1 { z-index: 5; transform: translate(-50%,-48%) scale(1.15); }
.cc-graded-hero-card-2 { z-index: 4; transform: translate(-112%,-44%) rotate(-8deg) scale(.92); opacity: .92; }
.cc-graded-hero-card-3 { z-index: 3; transform: translate(12%,-44%) rotate(8deg) scale(.92); opacity: .92; }
.cc-graded-hero-card:hover { z-index: 9; filter: drop-shadow(0 32px 40px rgba(0,0,0,.62)) drop-shadow(0 0 13px rgba(226,178,67,.14)); }
.cc-graded-hero-card-1:hover { transform: translate(-50%,-50%) scale(1.18); }
.cc-graded-hero-card-2:hover { transform: translate(-112%,-46%) rotate(-5deg) scale(.96); }
.cc-graded-hero-card-3:hover { transform: translate(12%,-46%) rotate(5deg) scale(.96); }

.cc-graded-catalog,
.cc-graded-info,
.cc-graded-split {
    width: min(92%, 1440px);
    margin: 0 auto;
}

.cc-graded-catalog {
    padding: 72px 0 78px;
}

.cc-graded-section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 27px;
}

.cc-graded-section-head h2,
.cc-graded-info h2,
.cc-graded-split h2 {
    margin: 7px 0 0 !important;
    color: #f5f0e7 !important;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(32px,3.4vw,50px) !important;
    font-weight: 500 !important;
    line-height: 1.08 !important;
}

.cc-graded-result-count {
    color: rgba(255,255,255,.54);
    font-size: 12px;
}

.cc-graded-filters {
    display: grid;
    grid-template-columns: minmax(260px,1.6fr) repeat(4,minmax(150px,.7fr));
    gap: 10px;
    padding: 15px;
    border: 1px solid rgba(218,171,66,.31);
    border-radius: 8px;
    background: linear-gradient(145deg, rgba(255,255,255,.025), rgba(218,171,66,.018));
    box-shadow: 0 14px 38px rgba(0,0,0,.15);
}

.cc-graded-filters label {
    display: block;
    margin: 0 !important;
}

.cc-graded-filters label > span {
    display: block;
    margin: 0 0 6px;
    color: rgba(239,196,94,.78);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.cc-graded-filters input,
.cc-graded-filters select {
    width: 100% !important;
    height: 48px !important;
    margin: 0 !important;
    padding: 0 13px !important;
    border: 1px solid rgba(255,255,255,.13) !important;
    border-radius: 5px !important;
    outline: 0 !important;
    background: #0a0b0b !important;
    color: #f3eee4 !important;
    box-shadow: none !important;
    font-size: 12px !important;
}

.cc-graded-filters input::placeholder { color: rgba(255,255,255,.39); }
.cc-graded-filters input:focus,
.cc-graded-filters select:focus { border-color: rgba(226,180,73,.67) !important; box-shadow: 0 0 0 3px rgba(226,180,73,.08) !important; }

.cc-graded-quickfilters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 12px 0 28px;
}

.cc-graded-quickfilters button {
    min-height: 34px;
    padding: 7px 12px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 999px;
    background: rgba(255,255,255,.025);
    color: rgba(255,255,255,.64);
    font-size: 10px;
    font-weight: 700;
    cursor: pointer;
}

.cc-graded-quickfilters button:hover,
.cc-graded-quickfilters button.is-active {
    border-color: rgba(225,178,68,.55);
    background: rgba(225,178,68,.08);
    color: #efc35f;
}

.cc-graded-product-grid {
    min-height: 360px;
    transition: opacity .16s ease;
}

.cc-graded-catalog.is-loading .cc-graded-product-grid { opacity: .55; }

.cc-graded-load-wrap {
    display: flex;
    justify-content: center;
    margin-top: 28px;
}

.cc-graded-load-wrap[hidden] { display: none !important; }

.cc-graded-empty {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 280px;
    padding: 30px;
    border: 1px solid rgba(255,255,255,.11);
    border-radius: 8px;
    background: rgba(255,255,255,.018);
    text-align: center;
}
.cc-graded-empty strong { color: #f1c766; font-size: 17px; }
.cc-graded-empty span { margin-top: 7px; color: rgba(255,255,255,.52); font-size: 12px; }

.cc-graded-info {
    padding: 62px 0 72px;
    border-top: 1px solid rgba(218,171,66,.25);
}

.cc-graded-info-head {
    display: grid;
    grid-template-columns: minmax(0,.9fr) minmax(320px,.65fr);
    gap: 50px;
    align-items: end;
    margin-bottom: 31px;
}

.cc-graded-info-head > p {
    margin: 0 !important;
    color: rgba(255,255,255,.59) !important;
    font-size: 13px;
    line-height: 1.8;
}

.cc-graded-info-grid {
    display: grid;
    grid-template-columns: repeat(3,minmax(0,1fr));
    gap: 15px;
}

.cc-graded-info-grid article {
    min-height: 220px;
    padding: 25px 24px;
    border: 1px solid rgba(255,255,255,.11);
    border-radius: 7px;
    background: linear-gradient(145deg, rgba(255,255,255,.028), rgba(212,163,58,.018));
}

.cc-graded-info-grid article > span {
    color: rgba(229,183,78,.56);
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 31px;
}

.cc-graded-info-grid h3 {
    margin: 24px 0 9px !important;
    color: #f4eee5 !important;
    font-size: 16px !important;
    font-weight: 750 !important;
}

.cc-graded-info-grid p {
    margin: 0 !important;
    color: rgba(255,255,255,.56) !important;
    font-size: 12px;
    line-height: 1.7;
}

.cc-graded-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    padding: 0 0 82px;
}

.cc-graded-split-card {
    min-height: 320px;
    padding: 34px 34px 32px;
    border: 1px solid rgba(218,171,66,.34);
    border-radius: 8px;
    background:
        radial-gradient(circle at 92% 10%, rgba(215,164,56,.13), transparent 35%),
        linear-gradient(145deg, rgba(255,255,255,.025), rgba(215,164,56,.016));
}

.cc-graded-split-card p {
    max-width: 620px;
    margin: 17px 0 23px !important;
    color: rgba(255,255,255,.60) !important;
    font-size: 13px;
    line-height: 1.75;
}

.cc-graded-split-card > a,
.cc-graded-contact-actions a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 44px;
    padding: 10px 15px;
    border: 1px solid rgba(226,179,70,.48);
    border-radius: 5px;
    background: rgba(226,179,70,.055);
    color: #e9bd59 !important;
    font-size: 11px;
    font-weight: 800;
}

.cc-graded-split-card > a:hover,
.cc-graded-contact-actions a:hover {
    border-color: rgba(235,190,85,.75);
    background: rgba(226,179,70,.10);
}

.cc-graded-split-contact {
    background:
        linear-gradient(120deg, rgba(7,8,8,.90), rgba(29,23,13,.77)),
        var(--ccpc-backdrop-image, url('https://cardandconquer.com/wp-content/uploads/2026/09/backdrop-cardandconquer.png')) center center / cover no-repeat;
}

.cc-graded-contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

@media (max-width: 1180px) {
    .cc-graded-hero-inner { grid-template-columns: minmax(0,.85fr) minmax(430px,1.15fr); gap: 36px; }
    .cc-graded-filters { grid-template-columns: repeat(3,minmax(0,1fr)); }
    .cc-graded-search { grid-column: span 2; }
}

@media (max-width: 900px) {
    .cc-graded-hero { min-height: auto; }
    .cc-graded-hero-inner { grid-template-columns: 1fr; min-height: 0; padding: 54px 0 46px; }
    .cc-graded-hero-stage { min-height: 430px; }
    .cc-graded-info-head { grid-template-columns: 1fr; gap: 18px; }
    .cc-graded-split { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
    .cc-graded-hero-inner,
    .cc-graded-catalog,
    .cc-graded-info,
    .cc-graded-split { width: calc(100% - 28px); }
    .cc-graded-hero-copy h1 { font-size: clamp(38px,12vw,54px) !important; }
    .cc-graded-hero-facts { grid-template-columns: 1fr; }
    .cc-graded-hero-facts > div { padding: 13px 0; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.07); }
    .cc-graded-hero-facts > div:last-child { border-bottom: 0; }
    .cc-graded-filters { grid-template-columns: 1fr; padding: 12px; }
    .cc-graded-search { grid-column: auto; }
    .cc-graded-section-head { display: block; }
    .cc-graded-result-count { margin-top: 9px; }
    .cc-graded-info-grid { grid-template-columns: 1fr; }
    .cc-graded-split-card { min-height: 0; padding: 26px 22px; }
}

@media (max-width: 520px) {
    .cc-graded-hero-inner { padding-top: 42px; }
    .cc-graded-hero-actions { display: grid; grid-template-columns: 1fr; }
    .cc-graded-hero-actions .cc-home-button { width: 100%; }
    .cc-graded-hero-stage { min-height: 350px; }
    .cc-graded-hero-card { width: min(39%, 170px); }
    .cc-graded-hero-card-1 { transform: translate(-50%,-47%) scale(1.12); }
    .cc-graded-hero-card-2 { transform: translate(-111%,-43%) rotate(-8deg) scale(.90); }
    .cc-graded-hero-card-3 { transform: translate(11%,-43%) rotate(8deg) scale(.90); }
    .cc-graded-psa-mark { width: 44%; }
    .cc-graded-catalog { padding-top: 50px; }
    .cc-graded-info { padding-top: 48px; }
    .cc-graded-split { padding-bottom: 58px; }
}
\n\n/* =========================================================\n   1.0.40 GRADED PAGE - WPFORMS 723\n   ========================================================= */\n.cc-graded-split {\n    grid-template-columns: minmax(0, .88fr) minmax(0, 1.12fr);\n}\n\n.cc-graded-split-contact {\n    min-height: 0;\n}\n\n.cc-graded-wpforms {\n    margin-top: 20px;\n}\n\n.cc-graded-wpforms .wpforms-container,\n.cc-graded-wpforms .wpforms-container-full {\n    margin: 0 !important;\n    padding: 0 !important;\n}\n\n.cc-graded-wpforms .wpforms-form {\n    margin: 0 !important;\n}\n\n.cc-graded-wpforms .wpforms-field {\n    padding: 0 0 14px !important;\n}\n\n.cc-graded-wpforms .wpforms-field-label,\n.cc-graded-wpforms label {\n    color: #f3eee3 !important;\n    font-size: 12px !important;\n    font-weight: 750 !important;\n    line-height: 1.35 !important;\n}\n\n.cc-graded-wpforms .wpforms-required-label {\n    color: #e5b955 !important;\n}\n\n.cc-graded-wpforms input[type=text],\n.cc-graded-wpforms input[type=email],\n.cc-graded-wpforms input[type=tel],\n.cc-graded-wpforms input[type=number],\n.cc-graded-wpforms input[type=url],\n.cc-graded-wpforms input[type=date],\n.cc-graded-wpforms select,\n.cc-graded-wpforms textarea {\n    width: 100% !important;\n    min-height: 48px !important;\n    border: 1px solid rgba(224, 177, 75, .34) !important;\n    border-radius: 6px !important;\n    background: rgba(6, 7, 7, .84) !important;\n    color: #f8f4ec !important;\n    padding: 11px 13px !important;\n    box-shadow: none !important;\n}\n\n.cc-graded-wpforms textarea {\n    min-height: 118px !important;\n    resize: vertical;\n}\n\n.cc-graded-wpforms input::placeholder,\n.cc-graded-wpforms textarea::placeholder {\n    color: rgba(255,255,255,.40) !important;\n}\n\n.cc-graded-wpforms input:focus,\n.cc-graded-wpforms select:focus,\n.cc-graded-wpforms textarea:focus {\n    border-color: rgba(238, 195, 92, .80) !important;\n    box-shadow: 0 0 0 3px rgba(224,177,75,.09) !important;\n    outline: none !important;\n}\n\n.cc-graded-wpforms .wpforms-field-description,\n.cc-graded-wpforms .wpforms-field-sublabel,\n.cc-graded-wpforms .wpforms-field-html {\n    color: rgba(255,255,255,.56) !important;\n}\n\n.cc-graded-wpforms .wpforms-submit-container {\n    margin: 4px 0 0 !important;\n    padding: 0 !important;\n}\n\n.cc-graded-wpforms button[type=submit],\n.cc-graded-wpforms .wpforms-submit {\n    width: 100% !important;\n    min-height: 50px !important;\n    border: 1px solid #f0ca70 !important;\n    border-radius: 6px !important;\n    background: linear-gradient(180deg, #f1d17d 0%, #dcae48 100%) !important;\n    color: #101010 !important;\n    font-size: 12px !important;\n    font-weight: 850 !important;\n    text-transform: uppercase !important;\n    letter-spacing: .035em !important;\n    box-shadow: 0 12px 28px rgba(220,174,72,.14) !important;\n}\n\n.cc-graded-wpforms button[type=submit]:hover,\n.cc-graded-wpforms .wpforms-submit:hover {\n    background: linear-gradient(180deg, #f7dc95 0%, #e2b755 100%) !important;\n    transform: translateY(-1px);\n}\n\n.cc-graded-wpforms .wpforms-error,\n.cc-graded-wpforms em.wpforms-error {\n    color: #ef9e9e !important;\n}\n\n.cc-graded-wpforms .wpforms-confirmation-container-full,\n.cc-graded-wpforms .wpforms-confirmation-container {\n    margin: 0 !important;\n    border: 1px solid rgba(224,177,75,.34) !important;\n    border-radius: 6px !important;\n    background: rgba(224,177,75,.07) !important;\n    color: #f4ead2 !important;\n}\n\n@media (max-width: 900px) {\n    .cc-graded-split {\n        grid-template-columns: 1fr;\n    }\n}\n

/* =========================================================
   1.0.41 JAPANESE PSA 10 UNDER EUR 100 PAGE
   ========================================================= */
.cc-under100-page .cc-graded-hero {
    background:
        radial-gradient(circle at 78% 18%, rgba(226,177,66,.12), transparent 28%),
        linear-gradient(90deg, rgba(4,5,5,.98) 0%, rgba(8,8,7,.94) 49%, rgba(13,10,5,.90) 100%),
        var(--ccpc-backdrop-image, url('https://cardandconquer.com/wp-content/uploads/2026/09/backdrop-cardandconquer.png')) center center / cover no-repeat;
}

.cc-under100-page .cc-graded-hero-copy h1 {
    max-width: 760px;
}

.cc-under100-filters {
    grid-template-columns: minmax(260px, 1.5fr) minmax(180px, .7fr) minmax(180px, .7fr) !important;
}

.cc-under100-value,
.cc-under100-explain {
    width: min(1380px, calc(100% - 48px));
    margin: 0 auto;
}

.cc-under100-value {
    padding: 68px 0 74px;
}

.cc-under100-value-copy {
    max-width: 780px;
    margin-bottom: 34px;
}

.cc-under100-value-copy h2,
.cc-under100-explain h2 {
    margin: 8px 0 14px;
    color: #f7f1e5;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(30px, 4vw, 48px);
    font-weight: 400;
    line-height: 1.05;
}

.cc-under100-value-copy p,
.cc-under100-explain p {
    color: rgba(255,255,255,.63);
    font-size: 14px;
    line-height: 1.75;
}

.cc-under100-value-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    border: 1px solid rgba(225,178,69,.22);
    background: rgba(255,255,255,.012);
}

.cc-under100-value-grid article {
    min-height: 210px;
    padding: 28px 30px;
    border-right: 1px solid rgba(225,178,69,.16);
}

.cc-under100-value-grid article:last-child {
    border-right: 0;
}

.cc-under100-value-grid article > span {
    display: inline-block;
    margin-bottom: 28px;
    color: #d9aa42;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .12em;
}

.cc-under100-value-grid h3 {
    margin: 0 0 10px;
    color: #f8f2e7;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 23px;
    font-weight: 400;
}

.cc-under100-value-grid p {
    margin: 0;
    color: rgba(255,255,255,.56);
    font-size: 13px;
    line-height: 1.65;
}

.cc-under100-explain {
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 1px;
    margin-bottom: 72px;
    border: 1px solid rgba(225,178,69,.22);
    background: rgba(225,178,69,.18);
}

.cc-under100-explain > div {
    padding: 36px 38px 38px;
    background:
        radial-gradient(circle at 100% 0%, rgba(225,178,69,.07), transparent 38%),
        #090a0a;
}

.cc-under100-explain h2 {
    font-size: clamp(28px,3vw,38px);
}

.cc-under100-explain a {
    display: inline-flex;
    gap: 10px;
    margin-top: 10px;
    color: #e9bd59;
    font-size: 12px;
    font-weight: 800;
    text-decoration: none;
}

/* Divi can otherwise leave white page wrappers around an automatically
   replaced landing page. */
body.cc-under100-page-layout #main-content,
body.cc-under100-page-layout .et-l--post,
body.cc-under100-page-layout .et_builder_inner_content,
body.cc-under100-page-layout article.page,
body.cc-under100-page-layout .entry-content {
    background: #050606 !important;
}

@media (max-width: 900px) {
    .cc-under100-filters {
        grid-template-columns: 1fr 1fr !important;
    }
    .cc-under100-filters .cc-graded-search {
        grid-column: 1 / -1;
    }
    .cc-under100-value-grid,
    .cc-under100-explain {
        grid-template-columns: 1fr;
    }
    .cc-under100-value-grid article {
        border-right: 0;
        border-bottom: 1px solid rgba(225,178,69,.16);
    }
    .cc-under100-value-grid article:last-child {
        border-bottom: 0;
    }
}

@media (max-width: 620px) {
    .cc-under100-value,
    .cc-under100-explain {
        width: min(100% - 24px, 1380px);
    }
    .cc-under100-value {
        padding: 46px 0 50px;
    }
    .cc-under100-filters {
        grid-template-columns: 1fr !important;
    }
    .cc-under100-filters .cc-graded-search {
        grid-column: auto;
    }
    .cc-under100-value-grid article,
    .cc-under100-explain > div {
        padding: 24px 22px;
    }
}

/* =========================================================
   1.0.41 WPFORMS 723 HARD OVERRIDES
   ========================================================= */
.cc-graded-wpforms #wpforms-723,
.cc-graded-wpforms #wpforms-form-723,
.cc-graded-wpforms .wpforms-container {
    --wpforms-field-background-color: #080909;
    --wpforms-field-border-color: rgba(226,178,68,.45);
    --wpforms-field-text-color: #f8f3e9;
    --wpforms-field-menu-color: #f8f3e9;
    --wpforms-button-background-color: #dcae48;
    --wpforms-button-text-color: #111;
    color: #f4eee2 !important;
}

.cc-graded-wpforms #wpforms-form-723 .wpforms-field-label,
.cc-graded-wpforms #wpforms-form-723 .wpforms-field-label-inline,
.cc-graded-wpforms #wpforms-form-723 .wpforms-field-sublabel,
.cc-graded-wpforms #wpforms-form-723 label {
    color: #eee7da !important;
}

.cc-graded-wpforms #wpforms-form-723 input:not([type='checkbox']):not([type='radio']):not([type='submit']),
.cc-graded-wpforms #wpforms-form-723 select,
.cc-graded-wpforms #wpforms-form-723 textarea {
    border: 1px solid rgba(226,178,68,.42) !important;
    background: rgba(5,7,7,.88) !important;
    color: #fff7e6 !important;
    -webkit-text-fill-color: #fff7e6 !important;
}

.cc-graded-wpforms #wpforms-form-723 select option {
    background: #0b0c0c !important;
    color: #f7f1e5 !important;
}

.cc-graded-wpforms #wpforms-form-723 input[type='checkbox'],
.cc-graded-wpforms #wpforms-form-723 input[type='radio'] {
    accent-color: #ddb24d !important;
}

.cc-graded-wpforms #wpforms-form-723 .wpforms-field-checkbox li,
.cc-graded-wpforms #wpforms-form-723 .wpforms-field-radio li {
    margin: 0 0 8px !important;
    color: #eee7da !important;
}

.cc-graded-wpforms #wpforms-form-723 .wpforms-submit {
    width: 100% !important;
    min-height: 54px !important;
    border: 1px solid #f0ca70 !important;
    background: linear-gradient(180deg,#f1d17d 0%,#dcae48 100%) !important;
    color: #101010 !important;
    -webkit-text-fill-color: #101010 !important;
}


/* =========================================================
   1.0.42 PREMIUM BRAND / TYPE / SET ARCHIVES
   ========================================================= */
body.cc-premium-taxonomy-layout #main-content,
body.cc-premium-taxonomy-layout .cc-premium-taxonomy-main {
    background: #050606 !important;
}

.cc-premium-taxonomy-main {
    width: 100%;
    max-width: none;
    overflow: hidden;
}

.cc-premium-archive-page {
    min-height: 70vh;
}

.cc-premium-archive-hero .cc-graded-hero-stage::after {
    content: '';
    position: absolute;
    inset: 10% 6% 3%;
    pointer-events: none;
    background: radial-gradient(circle at 50% 52%, rgba(224,177,75,.14), transparent 58%);
    filter: none;
}

.cc-premium-archive-stage .cc-graded-hero-card {
    z-index: 2;
}

.cc-premium-archive-filters {
    grid-template-columns: minmax(0, 1fr) minmax(220px, 280px) !important;
}

.cc-premium-archive-description {
    width: min(1380px, calc(100% - 48px));
    margin: 0 auto 70px;
    padding: 36px 40px;
    border: 1px solid rgba(224,177,75,.24);
    border-radius: 8px;
    background:
        radial-gradient(circle at 85% 20%, rgba(216,169,65,.08), transparent 32%),
        rgba(255,255,255,.018);
}

.cc-premium-archive-description h2 {
    margin: 8px 0 18px;
    color: #f4eee3;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(28px, 3vw, 44px);
    font-weight: 400;
    line-height: 1.08;
}

.cc-premium-archive-description-copy {
    max-width: 920px;
    color: rgba(255,255,255,.70);
    font-size: 14px;
    line-height: 1.8;
}

.cc-premium-archive-description-copy p:last-child {
    margin-bottom: 0;
}

/* WPForms 723: the repeatable card-search field must occupy the full row. */
.cc-graded-wpforms #wpforms-form-723 .wpforms-field-repeater,
.cc-graded-wpforms #wpforms-form-723 .wpforms-field-repeater-items,
.cc-graded-wpforms #wpforms-form-723 .wpforms-field-repeater-item,
.cc-graded-wpforms #wpforms-form-723 .wpforms-field-repeater-row,
.cc-graded-wpforms #wpforms-form-723 .wpforms-field-repeater .wpforms-field-row,
.cc-graded-wpforms #wpforms-form-723 .wpforms-field-repeater .wpforms-field-row-block,
.cc-graded-wpforms #wpforms-form-723 .wpforms-field-repeater .wpforms-field-large,
.cc-graded-wpforms #wpforms-form-723 .wpforms-field-repeater input[type='text'] {
    width: 100% !important;
    max-width: none !important;
}

.cc-graded-wpforms #wpforms-form-723 .wpforms-field-repeater {
    grid-column: 1 / -1 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.cc-graded-wpforms #wpforms-form-723 .wpforms-field-repeater-item {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) auto !important;
    align-items: end !important;
    column-gap: 10px !important;
}

.cc-graded-wpforms #wpforms-form-723 .wpforms-field-repeater-item > :first-child {
    min-width: 0 !important;
    width: 100% !important;
}

@media (max-width: 760px) {
    .cc-premium-archive-filters {
        grid-template-columns: 1fr !important;
    }

    .cc-premium-archive-description {
        width: calc(100% - 24px);
        padding: 26px 20px;
        margin-bottom: 46px;
    }
}


/* =========================================================
   1.0.43 HEADER SUBMENUS + SOLD-OUT CATALOG VISIBILITY
   ========================================================= */

/* Sold-out products stay discoverable in every premium catalog. */
.cc-home-product-stock-badge {
    position: absolute;
    z-index: 6;
    top: 12px;
    right: 12px;
    padding: 6px 9px;
    border: 1px solid rgba(255,255,255,.20);
    border-radius: 16px;
    background: rgba(7,8,8,.92);
    color: rgba(255,255,255,.72);
    font-size: 9px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: .045em;
    text-transform: uppercase;
}

.cc-home-product-card.is-out-of-stock .cc-home-product-media img {
    opacity: .78;
    filter: saturate(.78);
}

.cc-home-product-card.is-out-of-stock .cc-home-product-price,
.cc-home-product-card.is-out-of-stock .cc-home-product-price .woocommerce-Price-amount {
    color: rgba(237,195,97,.72) !important;
}

/* The Divi header wrappers must never clip or sit below the new archive/page layers. */
body.cc-has-full-header .et-l--header,
body.cc-has-full-header .et-l--header .et_builder_inner_content,
body.cc-has-full-header .et-l--header .et_pb_section,
body.cc-has-full-header .et-l--header .et_pb_row,
body.cc-has-full-header .et-l--header .et_pb_column,
body.cc-has-full-header .et-l--header .et_pb_module,
body.cc-has-full-header .et-l--header .et_pb_code,
body.cc-has-full-header .et-l--header .et_pb_code_inner {
    overflow: visible !important;
}

body.cc-has-full-header .et-l--header {
    position: relative !important;
    z-index: 99970 !important;
}

body.cc-has-full-header .cc-full-header {
    z-index: 99980 !important;
    overflow: visible !important;
}

body.cc-has-full-header .cc-full-header-inner,
body.cc-has-full-header .cc-full-header-main,
body.cc-has-full-header .cc-full-header-nav,
body.cc-has-full-header .cc-full-header-menu,
body.cc-has-full-header .cc-full-header-menu li {
    overflow: visible !important;
}

@media (min-width: 981px) {
    .cc-full-header-menu .sub-menu {
        z-index: 99985 !important;
    }

    /* No dead hover-gap between submenu level 1 and level 2. */
    .cc-full-header-menu .sub-menu .sub-menu {
        top: -10px !important;
        left: calc(100% - 1px) !important;
        z-index: 99986 !important;
    }

    .cc-full-header-menu .sub-menu > .menu-item-has-children > a {
        position: relative;
        padding-right: 30px !important;
    }

    .cc-full-header-menu .sub-menu > .menu-item-has-children > a::after {
        content: '';
        position: absolute;
        top: 50%;
        right: 11px;
        width: 6px;
        height: 6px;
        margin-top: -4px;
        border-top: 1px solid currentColor;
        border-right: 1px solid currentColor;
        transform: rotate(45deg);
        opacity: .72;
    }

    /* If JS detects insufficient room on the right, open the next level left. */
    .cc-full-header-menu .sub-menu > li.cc-submenu-open-left > .sub-menu {
        right: calc(100% - 1px) !important;
        left: auto !important;
    }
}

/* =========================================================
   1.0.45 PREMIUM MY ACCOUNT + CONTACT
   ========================================================= */
body.cc-account-page-layout #main-content,
body.cc-contact-page-layout #main-content {
    background:
        linear-gradient(180deg, rgba(4,5,5,.80), rgba(4,5,5,.97)),
        var(--ccpc-backdrop-image, url('https://cardandconquer.com/wp-content/uploads/2026/09/backdrop-cardandconquer.png')) center top / cover no-repeat !important;
    color: #f4eee3;
}

body.cc-account-page-layout #main-content .container,
body.cc-contact-page-layout #main-content .container {
    width: min(1400px, calc(100% - 48px));
    max-width: 1400px;
    padding-top: 56px !important;
    padding-bottom: 72px !important;
}

body.cc-account-page-layout #main-content .container::before,
body.cc-contact-page-layout #main-content .container::before {
    display: none !important;
}

body.cc-account-page-layout #left-area,
body.cc-contact-page-layout #left-area {
    float: none !important;
    width: 100% !important;
    padding: 0 !important;
}

/* My account */
body.cc-account-page-layout .woocommerce {
    display: grid;
    grid-template-columns: minmax(230px, 270px) minmax(0, 1fr);
    gap: 22px;
    width: 100%;
    color: #eee7da;
}

body.cc-account-page-layout .cc-account-hero {
    grid-column: 1 / -1;
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 240px;
    align-items: center;
    gap: 30px;
    overflow: hidden;
    margin-bottom: 10px;
    padding: 34px 38px;
    border: 1px solid rgba(224,177,75,.30);
    border-radius: 8px;
    background:
        radial-gradient(circle at 88% 15%, rgba(224,177,75,.12), transparent 34%),
        linear-gradient(135deg, rgba(15,16,16,.96), rgba(7,8,8,.88));
    box-shadow: 0 24px 64px rgba(0,0,0,.28);
}

body.cc-account-page-layout .cc-account-hero h1 {
    margin: 7px 0 10px;
    color: #f7f1e6;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(34px, 4vw, 58px);
    font-weight: 400;
    line-height: 1.02;
}

body.cc-account-page-layout .cc-account-hero p {
    max-width: 720px;
    margin: 0;
    color: rgba(255,255,255,.67);
    font-size: 14px;
    line-height: 1.75;
}

body.cc-account-page-layout .cc-account-hero-mark {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 115px;
}

body.cc-account-page-layout .cc-account-hero-mark img {
    width: min(210px, 100%);
    max-height: 125px;
    object-fit: contain;
    filter: drop-shadow(0 14px 34px rgba(217,169,63,.14));
}

body.cc-account-page-layout .woocommerce-MyAccount-navigation {
    float: none !important;
    width: 100% !important;
    margin: 0 !important;
}

body.cc-account-page-layout .woocommerce-MyAccount-navigation ul {
    overflow: hidden;
    margin: 0 !important;
    padding: 8px !important;
    border: 1px solid rgba(224,177,75,.24);
    border-radius: 8px;
    background: rgba(7,8,8,.82);
    list-style: none !important;
    box-shadow: 0 18px 42px rgba(0,0,0,.22);
}

body.cc-account-page-layout .woocommerce-MyAccount-navigation li {
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
}

body.cc-account-page-layout .woocommerce-MyAccount-navigation li::before {
    display: none !important;
}

body.cc-account-page-layout .woocommerce-MyAccount-navigation a {
    display: flex;
    align-items: center;
    min-height: 46px;
    padding: 0 14px;
    border-radius: 5px;
    color: rgba(255,255,255,.70) !important;
    font-size: 13px;
    font-weight: 650;
    text-decoration: none !important;
    transition: .18s ease;
}

body.cc-account-page-layout .woocommerce-MyAccount-navigation a:hover {
    background: rgba(224,177,75,.07);
    color: #f0c96c !important;
}

body.cc-account-page-layout .woocommerce-MyAccount-navigation .is-active a {
    background: linear-gradient(90deg, rgba(224,177,75,.15), rgba(224,177,75,.035));
    color: #f3cc72 !important;
    box-shadow: inset 2px 0 0 #dcb04e;
}

body.cc-account-page-layout .woocommerce-MyAccount-content {
    float: none !important;
    width: 100% !important;
    min-width: 0;
    min-height: 330px;
    margin: 0 !important;
    padding: 30px 32px;
    border: 1px solid rgba(224,177,75,.24);
    border-radius: 8px;
    background:
        radial-gradient(circle at 92% 4%, rgba(224,177,75,.06), transparent 28%),
        rgba(7,8,8,.86);
    color: rgba(255,255,255,.72);
    box-shadow: 0 18px 42px rgba(0,0,0,.22);
}

body.cc-account-page-layout .woocommerce-MyAccount-content > :first-child {
    margin-top: 0 !important;
}

body.cc-account-page-layout .woocommerce-MyAccount-content p,
body.cc-account-page-layout .woocommerce-MyAccount-content address,
body.cc-account-page-layout .woocommerce-MyAccount-content td,
body.cc-account-page-layout .woocommerce-MyAccount-content th,
body.cc-account-page-layout .woocommerce-form-login p,
body.cc-account-page-layout .woocommerce-form-register p {
    color: rgba(255,255,255,.70);
}

body.cc-account-page-layout .woocommerce-MyAccount-content h2,
body.cc-account-page-layout .woocommerce-MyAccount-content h3,
body.cc-account-page-layout .woocommerce-form-login h2,
body.cc-account-page-layout .woocommerce-form-register h2 {
    color: #f4eee3;
    font-family: Georgia, 'Times New Roman', serif;
    font-weight: 400;
}

body.cc-account-page-layout .woocommerce-MyAccount-content a:not(.button),
body.cc-account-page-layout .woocommerce-LostPassword a {
    color: #e6bc5b !important;
}

body.cc-account-page-layout .woocommerce table.shop_table {
    overflow: hidden;
    border: 1px solid rgba(224,177,75,.22) !important;
    border-radius: 7px !important;
    background: rgba(255,255,255,.018);
    color: #eee6d8;
}

body.cc-account-page-layout .woocommerce table.shop_table th,
body.cc-account-page-layout .woocommerce table.shop_table td {
    border-color: rgba(255,255,255,.08) !important;
    background: transparent !important;
}

body.cc-account-page-layout .woocommerce form .form-row label {
    color: #eee5d7 !important;
    font-size: 12px;
    font-weight: 700;
}

body.cc-account-page-layout .woocommerce input.input-text,
body.cc-account-page-layout .woocommerce textarea,
body.cc-account-page-layout .woocommerce select,
body.cc-account-page-layout .select2-container--default .select2-selection--single {
    min-height: 48px !important;
    border: 1px solid rgba(224,177,75,.34) !important;
    border-radius: 6px !important;
    background: rgba(2,3,3,.76) !important;
    color: #f8f3e9 !important;
    box-shadow: none !important;
}

body.cc-account-page-layout .woocommerce input.input-text,
body.cc-account-page-layout .woocommerce textarea,
body.cc-account-page-layout .woocommerce select {
    padding: 11px 13px !important;
}

body.cc-account-page-layout .woocommerce input.input-text:focus,
body.cc-account-page-layout .woocommerce textarea:focus,
body.cc-account-page-layout .woocommerce select:focus {
    border-color: rgba(239,196,95,.82) !important;
    box-shadow: 0 0 0 3px rgba(224,177,75,.08) !important;
    outline: none !important;
}

body.cc-account-page-layout .woocommerce .button,
body.cc-account-page-layout .woocommerce button.button,
body.cc-account-page-layout .woocommerce input.button {
    min-height: 44px;
    padding: 10px 18px !important;
    border: 1px solid #efca70 !important;
    border-radius: 6px !important;
    background: linear-gradient(180deg,#f0cf79 0%,#dbae47 100%) !important;
    color: #101010 !important;
    font-size: 12px !important;
    font-weight: 800 !important;
    line-height: 1.2 !important;
    text-transform: none !important;
    box-shadow: none !important;
}

body.cc-account-page-layout .woocommerce .button:hover,
body.cc-account-page-layout .woocommerce button.button:hover,
body.cc-account-page-layout .woocommerce input.button:hover {
    background: linear-gradient(180deg,#f7dc93 0%,#e2b653 100%) !important;
}

body.cc-account-page-layout .woocommerce-Address {
    padding: 20px;
    border: 1px solid rgba(224,177,75,.18);
    border-radius: 7px;
    background: rgba(255,255,255,.018);
}

body.cc-account-page-layout .woocommerce-message,
body.cc-account-page-layout .woocommerce-info,
body.cc-account-page-layout .woocommerce-error {
    border: 1px solid rgba(224,177,75,.24) !important;
    border-top: 1px solid rgba(224,177,75,.42) !important;
    border-radius: 6px !important;
    background: rgba(10,11,11,.92) !important;
    color: #eee6d8 !important;
}

/* Logged-out account forms */
body.cc-account-page-layout #customer_login {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 22px;
}

body.cc-account-page-layout #customer_login .u-column1,
body.cc-account-page-layout #customer_login .u-column2,
body.cc-account-page-layout .woocommerce-form-login,
body.cc-account-page-layout .woocommerce-form-register {
    padding: 28px !important;
    border: 1px solid rgba(224,177,75,.24) !important;
    border-radius: 8px !important;
    background: rgba(7,8,8,.86) !important;
}

/* Contact page */
body.cc-contact-page-layout #main-content .container {
    width: 100%;
    max-width: none;
    padding: 0 !important;
}

body.cc-contact-page-layout #main-content .container #left-area {
    width: 100% !important;
}

.cc-contact-page {
    min-height: 70vh;
    padding-bottom: 72px;
}

.cc-contact-shell {
    width: min(1380px, calc(100% - 48px));
    margin-inline: auto;
}

.cc-contact-hero {
    padding: 70px 0 34px;
}

.cc-contact-hero-inner {
    display: grid;
    grid-template-columns: minmax(0,1fr) 260px;
    align-items: center;
    gap: 36px;
    padding: 42px 46px;
    border: 1px solid rgba(224,177,75,.28);
    border-radius: 8px;
    background:
        radial-gradient(circle at 88% 12%, rgba(224,177,75,.12), transparent 34%),
        linear-gradient(135deg, rgba(13,14,14,.95), rgba(6,7,7,.86));
    box-shadow: 0 28px 68px rgba(0,0,0,.30);
}

.cc-contact-hero h1,
.cc-contact-form-head h2,
.cc-contact-card h2,
.cc-contact-card h3 {
    color: #f5efe5;
    font-family: Georgia, 'Times New Roman', serif;
    font-weight: 400;
}

.cc-contact-hero h1 {
    max-width: 860px;
    margin: 8px 0 16px;
    font-size: clamp(38px, 5vw, 68px);
    line-height: 1.02;
}

.cc-contact-hero p {
    max-width: 760px;
    margin: 0;
    color: rgba(255,255,255,.68);
    font-size: 14px;
    line-height: 1.8;
}

.cc-contact-hero-mark {
    display: flex;
    align-items: center;
    justify-content: center;
}

.cc-contact-hero-mark img {
    width: min(240px,100%);
    max-height: 150px;
    object-fit: contain;
    filter: drop-shadow(0 16px 38px rgba(217,169,63,.14));
}

.cc-contact-page > .cc-home-usps {
    width: min(1380px, calc(100% - 48px));
    margin: 0 auto 30px;
}

.cc-contact-main {
    display: grid;
    grid-template-columns: minmax(280px,.72fr) minmax(0,1.28fr);
    gap: 24px;
    align-items: start;
}

.cc-contact-aside {
    display: grid;
    gap: 18px;
}

.cc-contact-card,
.cc-contact-form-card {
    border: 1px solid rgba(224,177,75,.24);
    border-radius: 8px;
    background:
        radial-gradient(circle at 92% 6%, rgba(224,177,75,.06), transparent 28%),
        rgba(7,8,8,.88);
    box-shadow: 0 18px 44px rgba(0,0,0,.22);
}

.cc-contact-card {
    padding: 28px;
}

.cc-contact-card h2,
.cc-contact-card h3 {
    margin: 7px 0 12px;
}

.cc-contact-card h2 {
    font-size: 30px;
    line-height: 1.08;
}

.cc-contact-card h3 {
    font-size: 24px;
}

.cc-contact-card p,
.cc-contact-card address {
    margin: 0;
    color: rgba(255,255,255,.66);
    font-size: 13px;
    line-height: 1.75;
    font-style: normal;
}

.cc-contact-methods {
    display: grid;
    gap: 9px;
    margin-top: 22px;
}

.cc-contact-methods a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    min-height: 56px;
    padding: 10px 14px;
    border: 1px solid rgba(224,177,75,.18);
    border-radius: 6px;
    background: rgba(255,255,255,.018);
    color: #eee5d7 !important;
    text-decoration: none !important;
    transition: .18s ease;
}

.cc-contact-methods a:hover {
    border-color: rgba(224,177,75,.44);
    background: rgba(224,177,75,.06);
}

.cc-contact-methods strong {
    color: #efc765;
    font-size: 12px;
}

.cc-contact-methods span {
    min-width: 0;
    overflow-wrap: anywhere;
    color: rgba(255,255,255,.70);
    font-size: 12px;
    text-align: right;
}

.cc-contact-business-meta {
    display: grid;
    grid-template-columns: repeat(2,minmax(0,1fr));
    gap: 10px;
    margin-top: 20px;
}

.cc-contact-business-meta span {
    padding: 12px;
    border: 1px solid rgba(224,177,75,.16);
    border-radius: 5px;
    color: #eee5d7;
    font-size: 12px;
}

.cc-contact-business-meta small {
    display: block;
    margin-bottom: 3px;
    color: #dfb456;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.cc-contact-form-card {
    padding: 32px 34px 34px;
}

.cc-contact-form-head {
    margin-bottom: 26px;
}

.cc-contact-form-head h2 {
    margin: 7px 0 10px;
    font-size: clamp(28px,3vw,42px);
    line-height: 1.06;
}

.cc-contact-form-head p {
    max-width: 720px;
    margin: 0;
    color: rgba(255,255,255,.62);
    font-size: 13px;
    line-height: 1.7;
}

.cc-contact-form .wpforms-container,
.cc-contact-form .wpforms-container-full {
    margin: 0 !important;
}

.cc-contact-form .wpforms-field {
    padding-top: 0 !important;
    padding-bottom: 16px !important;
}

.cc-contact-form .wpforms-field-label,
.cc-contact-form .wpforms-field-label-inline,
.cc-contact-form label {
    color: #efe7da !important;
    font-size: 12px !important;
    font-weight: 700 !important;
}

.cc-contact-form .wpforms-required-label {
    color: #e6b953 !important;
}

.cc-contact-form input:not([type='checkbox']):not([type='radio']):not([type='submit']),
.cc-contact-form select,
.cc-contact-form textarea {
    width: 100% !important;
    max-width: none !important;
    min-height: 50px !important;
    border: 1px solid rgba(224,177,75,.34) !important;
    border-radius: 6px !important;
    background: rgba(3,4,4,.78) !important;
    color: #f8f2e7 !important;
    -webkit-text-fill-color: #f8f2e7 !important;
    padding: 11px 13px !important;
    box-shadow: none !important;
}

.cc-contact-form textarea {
    min-height: 150px !important;
}

.cc-contact-form input:focus,
.cc-contact-form select:focus,
.cc-contact-form textarea:focus {
    border-color: rgba(239,196,95,.82) !important;
    box-shadow: 0 0 0 3px rgba(224,177,75,.08) !important;
    outline: none !important;
}

.cc-contact-form select option {
    background: #0a0b0b;
    color: #f8f2e7;
}

.cc-contact-form .wpforms-field-sublabel,
.cc-contact-form .wpforms-field-description {
    color: rgba(255,255,255,.48) !important;
}

.cc-contact-form .wpforms-submit-container {
    padding: 2px 0 0 !important;
}

.cc-contact-form button[type='submit'],
.cc-contact-form .wpforms-submit {
    width: 100% !important;
    min-height: 54px !important;
    border: 1px solid #efca70 !important;
    border-radius: 6px !important;
    background: linear-gradient(180deg,#f0cf79 0%,#dbae47 100%) !important;
    color: #101010 !important;
    -webkit-text-fill-color: #101010 !important;
    font-size: 12px !important;
    font-weight: 850 !important;
    letter-spacing: .035em !important;
    text-transform: uppercase !important;
}

.cc-contact-form button[type='submit']:hover,
.cc-contact-form .wpforms-submit:hover {
    background: linear-gradient(180deg,#f7dc93 0%,#e2b653 100%) !important;
}

.cc-contact-form input[type='checkbox'],
.cc-contact-form input[type='radio'] {
    accent-color: #dfb24e !important;
}

.cc-contact-form-fallback {
    padding: 20px;
    border: 1px solid rgba(224,177,75,.18);
    border-radius: 6px;
    background: rgba(255,255,255,.018);
    color: rgba(255,255,255,.70);
}

.cc-contact-form-fallback strong {
    color: #f0c96d;
}

.cc-contact-form-fallback div {
    display: flex;
    gap: 10px;
    margin-top: 14px;
}

.cc-contact-form-fallback a {
    padding: 10px 14px;
    border: 1px solid rgba(224,177,75,.34);
    border-radius: 5px;
    color: #edc562 !important;
    text-decoration: none !important;
}

@media (max-width: 980px) {
    body.cc-account-page-layout .woocommerce,
    .cc-contact-main {
        grid-template-columns: 1fr;
    }

    body.cc-account-page-layout .cc-account-hero,
    .cc-contact-hero-inner {
        grid-template-columns: 1fr;
    }

    body.cc-account-page-layout .cc-account-hero-mark,
    .cc-contact-hero-mark {
        display: none;
    }

    body.cc-account-page-layout .woocommerce-MyAccount-navigation ul {
        display: grid;
        grid-template-columns: repeat(3,minmax(0,1fr));
    }
}

@media (max-width: 680px) {
    body.cc-account-page-layout #main-content .container {
        width: calc(100% - 24px);
        padding-top: 30px !important;
        padding-bottom: 44px !important;
    }

    body.cc-account-page-layout .cc-account-hero {
        padding: 26px 22px;
    }

    body.cc-account-page-layout .woocommerce-MyAccount-navigation ul {
        grid-template-columns: repeat(2,minmax(0,1fr));
    }

    body.cc-account-page-layout .woocommerce-MyAccount-content,
    body.cc-account-page-layout #customer_login .u-column1,
    body.cc-account-page-layout #customer_login .u-column2,
    body.cc-account-page-layout .woocommerce-form-login,
    body.cc-account-page-layout .woocommerce-form-register {
        padding: 22px !important;
    }

    body.cc-account-page-layout #customer_login {
        grid-template-columns: 1fr;
    }

    .cc-contact-page {
        padding-bottom: 48px;
    }

    .cc-contact-shell,
    .cc-contact-page > .cc-home-usps {
        width: calc(100% - 24px);
    }

    .cc-contact-hero {
        padding: 30px 0 20px;
    }

    .cc-contact-hero-inner,
    .cc-contact-form-card,
    .cc-contact-card {
        padding: 24px 20px;
    }

    .cc-contact-business-meta {
        grid-template-columns: 1fr;
    }

    .cc-contact-methods a {
        align-items: flex-start;
        flex-direction: column;
        gap: 3px;
    }

    .cc-contact-methods span {
        text-align: left;
    }
}


/* =========================================================
   1.0.46 PREMIUM CHECKOUT + LEGAL PAGES
   ========================================================= */
body.cc-checkout-page-layout,
body.cc-legal-page-layout {
    background: #050606 !important;
    color: #f4efe4;
}

body.cc-checkout-page-layout #main-content,
body.cc-legal-page-layout #main-content {
    background:
        linear-gradient(180deg, rgba(4,5,5,.76), rgba(4,5,5,.95)),
        var(--ccpc-backdrop-image, url('https://cardandconquer.com/wp-content/uploads/2026/09/backdrop-cardandconquer.png')) center top / cover no-repeat !important;
}

body.cc-checkout-page-layout #main-content .container,
body.cc-legal-page-layout #main-content .container {
    width: min(1240px, calc(100% - 36px)) !important;
    max-width: 1240px !important;
    padding-top: 42px !important;
    padding-bottom: 64px !important;
}

body.cc-checkout-page-layout #main-content .container:before,
body.cc-legal-page-layout #main-content .container:before {
    display: none !important;
}

body.cc-checkout-page-layout #left-area,
body.cc-legal-page-layout #left-area {
    width: 100% !important;
    float: none !important;
    padding: 0 !important;
}

body.cc-checkout-page-layout #sidebar,
body.cc-legal-page-layout #sidebar,
body.cc-checkout-page-layout .et_right_sidebar #sidebar,
body.cc-legal-page-layout .et_right_sidebar #sidebar {
    display: none !important;
}

.cc-checkout-hero,
.cc-legal-hero {
    display: grid;
    grid-template-columns: minmax(0,1fr) 190px;
    gap: 30px;
    align-items: center;
    margin: 0 0 28px;
    padding: 30px 34px;
    border: 1px solid rgba(224,179,79,.26);
    border-radius: 9px;
    background:
        linear-gradient(115deg, rgba(5,6,6,.96) 0%, rgba(8,8,8,.90) 60%, rgba(74,47,10,.23) 100%);
    box-shadow: 0 18px 54px rgba(0,0,0,.24);
    overflow: hidden;
}

.cc-checkout-hero h1,
.cc-legal-hero h1 {
    margin: 5px 0 8px !important;
    color: #f5efe5 !important;
    font-family: Georgia, 'Times New Roman', serif !important;
    font-size: clamp(38px,4.4vw,62px) !important;
    font-weight: 400 !important;
    line-height: 1.04 !important;
    text-transform: uppercase;
}

.cc-checkout-hero p,
.cc-legal-hero p {
    max-width: 700px;
    margin: 0 !important;
    color: rgba(244,239,229,.68) !important;
    font-size: 15px;
    line-height: 1.7;
}

.cc-checkout-hero-mark,
.cc-legal-hero-mark {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
}

.cc-checkout-hero-mark img,
.cc-legal-hero-mark img {
    width: 150px;
    max-height: 118px;
    object-fit: contain;
    filter: drop-shadow(0 12px 26px rgba(0,0,0,.42));
}

/* Checkout notices */
body.cc-checkout-page-layout .woocommerce-notices-wrapper,
body.cc-checkout-page-layout .woocommerce-form-coupon-toggle {
    margin-bottom: 18px;
}

body.cc-checkout-page-layout .woocommerce-info,
body.cc-checkout-page-layout .woocommerce-message,
body.cc-checkout-page-layout .woocommerce-error {
    border: 1px solid rgba(224,179,79,.30) !important;
    border-top: 1px solid rgba(224,179,79,.30) !important;
    border-radius: 7px !important;
    background: rgba(8,9,9,.92) !important;
    color: #efe9dd !important;
    box-shadow: none !important;
}

body.cc-checkout-page-layout .woocommerce-info:before,
body.cc-checkout-page-layout .woocommerce-message:before {
    color: #e1b850 !important;
}

body.cc-checkout-page-layout .woocommerce-info a,
body.cc-checkout-page-layout .woocommerce-message a,
body.cc-checkout-page-layout .woocommerce-error a {
    color: #efca6d !important;
}

body.cc-checkout-page-layout form.checkout {
    display: grid;
    grid-template-columns: minmax(0,1.1fr) minmax(390px,.9fr);
    gap: 28px 32px;
    align-items: start;
}

body.cc-checkout-page-layout form.checkout #customer_details {
    grid-column: 1;
    width: 100%;
}

body.cc-checkout-page-layout form.checkout #order_review_heading,
body.cc-checkout-page-layout form.checkout #order_review {
    grid-column: 2;
}

body.cc-checkout-page-layout form.checkout #order_review_heading {
    margin: 0 0 -10px !important;
}

body.cc-checkout-page-layout .col2-set,
body.cc-checkout-page-layout .col2-set .col-1,
body.cc-checkout-page-layout .col2-set .col-2 {
    width: 100% !important;
    float: none !important;
}

body.cc-checkout-page-layout .col2-set .col-2 {
    margin-top: 22px;
}

body.cc-checkout-page-layout .woocommerce-billing-fields,
body.cc-checkout-page-layout .woocommerce-shipping-fields,
body.cc-checkout-page-layout .woocommerce-additional-fields,
body.cc-checkout-page-layout #order_review {
    padding: 24px;
    border: 1px solid rgba(224,179,79,.24);
    border-radius: 9px;
    background: rgba(6,7,7,.90);
    box-shadow: 0 18px 48px rgba(0,0,0,.18);
}

body.cc-checkout-page-layout .woocommerce-shipping-fields,
body.cc-checkout-page-layout .woocommerce-additional-fields {
    margin-top: 20px;
}

body.cc-checkout-page-layout .woocommerce-billing-fields h3,
body.cc-checkout-page-layout .woocommerce-shipping-fields h3,
body.cc-checkout-page-layout .woocommerce-additional-fields h3,
body.cc-checkout-page-layout #order_review_heading {
    color: #f2ede3 !important;
    font-family: Georgia, 'Times New Roman', serif !important;
    font-size: 27px !important;
    font-weight: 400 !important;
    letter-spacing: .01em;
}

body.cc-checkout-page-layout .form-row label {
    color: rgba(244,239,229,.82) !important;
    font-weight: 600 !important;
}

body.cc-checkout-page-layout .form-row .required {
    color: #e5bb55 !important;
}

body.cc-checkout-page-layout input.input-text,
body.cc-checkout-page-layout textarea,
body.cc-checkout-page-layout select,
body.cc-checkout-page-layout .select2-container--default .select2-selection--single {
    min-height: 50px;
    border: 1px solid rgba(224,179,79,.25) !important;
    border-radius: 7px !important;
    background: rgba(255,255,255,.035) !important;
    color: #fff !important;
    box-shadow: none !important;
}

body.cc-checkout-page-layout input.input-text,
body.cc-checkout-page-layout textarea,
body.cc-checkout-page-layout select {
    padding: 11px 13px !important;
}

body.cc-checkout-page-layout textarea {
    min-height: 120px;
}

body.cc-checkout-page-layout input.input-text:focus,
body.cc-checkout-page-layout textarea:focus,
body.cc-checkout-page-layout select:focus,
body.cc-checkout-page-layout .select2-container--open .select2-selection--single {
    border-color: rgba(239,199,98,.80) !important;
    box-shadow: 0 0 0 3px rgba(224,179,79,.10) !important;
    outline: none !important;
}

body.cc-checkout-page-layout .select2-selection__rendered {
    color: #fff !important;
    line-height: 48px !important;
}

body.cc-checkout-page-layout .select2-selection__arrow {
    height: 48px !important;
}

body.cc-checkout-page-layout #order_review table.shop_table {
    border: 0 !important;
    border-collapse: collapse !important;
    color: #efe9dc !important;
}

body.cc-checkout-page-layout #order_review table.shop_table th,
body.cc-checkout-page-layout #order_review table.shop_table td {
    padding: 13px 7px !important;
    border-color: rgba(255,255,255,.09) !important;
    color: #efe9dc !important;
}

body.cc-checkout-page-layout #order_review table.shop_table th {
    color: rgba(244,239,229,.64) !important;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .05em;
}

body.cc-checkout-page-layout #payment {
    margin-top: 18px;
    border: 1px solid rgba(224,179,79,.20) !important;
    border-radius: 8px !important;
    background: rgba(255,255,255,.025) !important;
}

body.cc-checkout-page-layout #payment ul.payment_methods {
    border-bottom: 1px solid rgba(255,255,255,.08) !important;
}

body.cc-checkout-page-layout #payment li,
body.cc-checkout-page-layout #payment label,
body.cc-checkout-page-layout #payment .payment_box,
body.cc-checkout-page-layout #payment .woocommerce-privacy-policy-text,
body.cc-checkout-page-layout #payment .woocommerce-terms-and-conditions-wrapper {
    color: rgba(244,239,229,.80) !important;
}

body.cc-checkout-page-layout #payment .payment_box {
    background: rgba(255,255,255,.045) !important;
}

body.cc-checkout-page-layout #payment .payment_box:before {
    border-bottom-color: rgba(255,255,255,.045) !important;
}

body.cc-checkout-page-layout #payment a {
    color: #e9c360 !important;
}

body.cc-checkout-page-layout #place_order {
    width: 100% !important;
    min-height: 56px;
    border: 1px solid #f1d077 !important;
    border-radius: 7px !important;
    background: linear-gradient(180deg, #f1d17e 0%, #d9aa43 100%) !important;
    color: #0c0c0c !important;
    font-weight: 800 !important;
    text-transform: uppercase;
    letter-spacing: .03em;
}

body.cc-checkout-page-layout #place_order:hover {
    background: linear-gradient(180deg, #f7dc96 0%, #e1b552 100%) !important;
}

/* Legal pages: preserve copy, premium shell around it. */
body.cc-legal-page-layout article,
body.cc-legal-page-layout .entry-content,
body.cc-legal-page-layout .et_pb_post {
    margin: 0 !important;
    padding: 0 !important;
}

body.cc-legal-page-layout .entry-title,
body.cc-legal-page-layout .et_post_meta_wrapper {
    display: none !important;
}

.cc-legal-content {
    padding: clamp(24px,4vw,48px);
    border: 1px solid rgba(224,179,79,.22);
    border-radius: 9px;
    background: rgba(6,7,7,.91);
    color: rgba(244,239,229,.82);
    box-shadow: 0 20px 55px rgba(0,0,0,.18);
}

.cc-legal-content > :first-child {
    margin-top: 0 !important;
}

.cc-legal-content h1,
.cc-legal-content h2,
.cc-legal-content h3,
.cc-legal-content h4 {
    color: #f2ede3 !important;
    font-family: Georgia, 'Times New Roman', serif !important;
    font-weight: 400 !important;
    line-height: 1.2;
}

.cc-legal-content h2 {
    margin-top: 36px !important;
    font-size: 29px !important;
}

.cc-legal-content h3 {
    margin-top: 28px !important;
    font-size: 22px !important;
}

.cc-legal-content p,
.cc-legal-content li,
.cc-legal-content td,
.cc-legal-content th {
    color: rgba(244,239,229,.78) !important;
    line-height: 1.75 !important;
}

.cc-legal-content a {
    color: #e9c360 !important;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.cc-legal-content hr {
    border-color: rgba(224,179,79,.18) !important;
}

.cc-legal-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 22px 0;
}

.cc-legal-content th,
.cc-legal-content td {
    padding: 12px 14px;
    border: 1px solid rgba(255,255,255,.09);
}

@media (max-width: 980px) {
    body.cc-checkout-page-layout form.checkout {
        grid-template-columns: 1fr;
    }

    body.cc-checkout-page-layout form.checkout #customer_details,
    body.cc-checkout-page-layout form.checkout #order_review_heading,
    body.cc-checkout-page-layout form.checkout #order_review {
        grid-column: 1;
    }

    body.cc-checkout-page-layout form.checkout #order_review_heading {
        margin-top: 8px !important;
    }
}

@media (max-width: 700px) {
    body.cc-checkout-page-layout #main-content .container,
    body.cc-legal-page-layout #main-content .container {
        width: calc(100% - 20px) !important;
        padding-top: 22px !important;
        padding-bottom: 40px !important;
    }

    .cc-checkout-hero,
    .cc-legal-hero {
        grid-template-columns: 1fr;
        padding: 24px 20px;
    }

    .cc-checkout-hero-mark,
    .cc-legal-hero-mark {
        display: none;
    }

    .cc-checkout-hero h1,
    .cc-legal-hero h1 {
        font-size: 38px !important;
    }

    body.cc-checkout-page-layout .woocommerce-billing-fields,
    body.cc-checkout-page-layout .woocommerce-shipping-fields,
    body.cc-checkout-page-layout .woocommerce-additional-fields,
    body.cc-checkout-page-layout #order_review,
    .cc-legal-content {
        padding: 20px 16px;
    }
}


/* =========================================================
   1.0.47 DEDICATED [cc_checkout] PAGE
   Full-bleed checkout shell; WooCommerce remains the engine.
   ========================================================= */
body.cc-checkout-shortcode-page,
body.cc-checkout-shortcode-page #page-container,
body.cc-checkout-shortcode-page #et-main-area,
body.cc-checkout-shortcode-page #main-content {
    background: #050606 !important;
}

body.cc-checkout-shortcode-page #main-content {
    overflow: hidden !important;
}

body.cc-checkout-shortcode-page #main-content > .container,
body.cc-checkout-shortcode-page #main-content .container,
body.cc-checkout-shortcode-page #main-content #left-area,
body.cc-checkout-shortcode-page #main-content article,
body.cc-checkout-shortcode-page #main-content .entry-content,
body.cc-checkout-shortcode-page #main-content .et_pb_section,
body.cc-checkout-shortcode-page #main-content .et_pb_row,
body.cc-checkout-shortcode-page #main-content .et_pb_column,
body.cc-checkout-shortcode-page #main-content .et_pb_module,
body.cc-checkout-shortcode-page #main-content .et_pb_code_inner,
body.cc-checkout-shortcode-page #main-content .et_pb_text_inner {
    background: transparent !important;
}

body.cc-checkout-shortcode-page #main-content > .container,
body.cc-checkout-shortcode-page #main-content .container {
    width: 100% !important;
    max-width: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

body.cc-checkout-shortcode-page #main-content #left-area,
body.cc-checkout-shortcode-page #main-content article,
body.cc-checkout-shortcode-page #main-content .entry-content,
body.cc-checkout-shortcode-page #main-content .et_pb_section,
body.cc-checkout-shortcode-page #main-content .et_pb_row,
body.cc-checkout-shortcode-page #main-content .et_pb_column,
body.cc-checkout-shortcode-page #main-content .et_pb_module {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
    float: none !important;
    overflow: visible !important;
}

body.cc-checkout-shortcode-page #main-content .entry-title,
body.cc-checkout-shortcode-page #main-content .et_post_meta_wrapper,
body.cc-checkout-shortcode-page #main-content #sidebar {
    display: none !important;
}

.cc-checkout-shortcode-shell {
    position: relative;
    width: 100%;
    min-height: 70vh;
    padding: 44px 18px 72px;
    background:
        linear-gradient(180deg, rgba(4,5,5,.76), rgba(4,5,5,.96)),
        var(--ccpc-backdrop-image, url('https://cardandconquer.com/wp-content/uploads/2026/09/backdrop-cardandconquer.png')) center top / cover no-repeat;
    color: #f4efe4;
}

.cc-checkout-shortcode-inner {
    width: min(1240px, 100%);
    margin: 0 auto;
}

.cc-checkout-shortcode-shell .cc-checkout-hero {
    margin-bottom: 28px;
}

.cc-checkout-shortcode-shell .cc-checkout-native {
    position: relative;
    z-index: 1;
}

/* Keep the order summary visible while completing the address on desktop. */
@media (min-width: 981px) {
    .cc-checkout-shortcode-shell form.checkout #order_review {
        position: sticky;
        top: 132px;
    }
}

.cc-checkout-unavailable {
    width: min(1240px, calc(100% - 36px));
    margin: 40px auto;
    padding: 24px;
    border: 1px solid rgba(224,179,79,.28);
    border-radius: 8px;
    background: rgba(7,8,8,.95);
    color: #f1eadc;
}

@media (max-width: 700px) {
    .cc-checkout-shortcode-shell {
        padding: 22px 10px 46px;
        background-attachment: scroll;
    }
}


/* =========================================================
   1.0.48 CHECKOUT LAYOUT FIX
   Order summary stays next to the address form and the
   alternative shipping address stays collapsed until checked.
   ========================================================= */
@media (min-width: 981px) {
    body.cc-checkout-page-layout form.checkout {
        display: grid !important;
        grid-template-columns: minmax(0, 1.05fr) minmax(400px, .95fr) !important;
        grid-template-rows: auto !important;
        gap: 28px 32px !important;
        align-items: start !important;
    }

    body.cc-checkout-page-layout form.checkout #customer_details {
        grid-column: 1 !important;
        grid-row: 1 !important;
        min-width: 0 !important;
    }

    body.cc-checkout-page-layout form.checkout #order_review_heading {
        display: none !important;
    }

    body.cc-checkout-page-layout form.checkout #order_review {
        grid-column: 2 !important;
        grid-row: 1 !important;
        min-width: 0 !important;
        position: sticky !important;
        top: 132px !important;
        margin: 0 !important;
    }

    body.cc-checkout-page-layout form.checkout #order_review::before {
        content: 'Je bestelling';
        display: block;
        margin: 0 0 18px;
        color: #f2ede3;
        font-family: Georgia, 'Times New Roman', serif;
        font-size: 28px;
        font-weight: 400;
        line-height: 1.15;
    }
}

body.cc-checkout-page-layout .woocommerce-shipping-fields {
    overflow: hidden;
}

body.cc-checkout-page-layout #ship-to-different-address {
    margin: 0 !important;
}

body.cc-checkout-page-layout #ship-to-different-address label {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    margin: 0 !important;
    cursor: pointer;
}

body.cc-checkout-page-layout #ship-to-different-address-checkbox {
    width: 18px !important;
    height: 18px !important;
    margin: 0 !important;
    accent-color: #ddb24d;
}

body.cc-checkout-page-layout .woocommerce-shipping-fields .shipping_address {
    margin-top: 20px;
}

body.cc-checkout-page-layout .woocommerce-shipping-fields .shipping_address[style*='display: none'] {
    margin-top: 0 !important;
}

@media (max-width: 980px) {
    body.cc-checkout-page-layout form.checkout #order_review_heading {
        display: none !important;
    }

    body.cc-checkout-page-layout form.checkout #order_review::before {
        content: 'Je bestelling';
        display: block;
        margin: 0 0 18px;
        color: #f2ede3;
        font-family: Georgia, 'Times New Roman', serif;
        font-size: 26px;
        font-weight: 400;
        line-height: 1.15;
    }
}


/* =========================================================
   1.0.49 CHECKOUT NOTES MERGE
   Keep order notes directly under the alternate shipping block.
   ========================================================= */
body.cc-checkout-page-layout .col2-set .col-2 {
    overflow: hidden;
    border: 1px solid rgba(224,179,79,.24);
    border-radius: 9px;
    background: rgba(6,7,7,.90);
    box-shadow: 0 18px 48px rgba(0,0,0,.18);
}

body.cc-checkout-page-layout .col2-set .col-2 > .woocommerce-shipping-fields,
body.cc-checkout-page-layout .col2-set .col-2 > .woocommerce-additional-fields {
    margin: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
}

body.cc-checkout-page-layout .col2-set .col-2 > .woocommerce-shipping-fields {
    padding-bottom: 18px !important;
}

body.cc-checkout-page-layout .col2-set .col-2 > .woocommerce-additional-fields {
    padding-top: 18px !important;
    border-top: 1px solid rgba(224,179,79,.18) !important;
}

body.cc-checkout-page-layout .col2-set .col-2 > .woocommerce-additional-fields .woocommerce-additional-fields__field-wrapper {
    margin: 0 !important;
}

body.cc-checkout-page-layout .col2-set .col-2 > .woocommerce-additional-fields .form-row:last-child {
    margin-bottom: 0 !important;
}

@media (max-width: 700px) {
    body.cc-checkout-page-layout .col2-set .col-2 > .woocommerce-shipping-fields,
    body.cc-checkout-page-layout .col2-set .col-2 > .woocommerce-additional-fields {
        padding-left: 16px !important;
        padding-right: 16px !important;
    }
}


/* =========================================================
   1.0.50 DEDICATED MY ACCOUNT SHORTCODE
   Usage: [cc_my_account]
   ========================================================= */
body.cc-account-page-layout #main-content,
body.cc-account-page-layout #page-container,
body.cc-account-page-layout #et-main-area {
    background: #050606 !important;
}

body.cc-account-page-layout #main-content .container {
    width: 100% !important;
    max-width: none !important;
    padding: 0 !important;
}

body.cc-account-page-layout #main-content .container #left-area,
body.cc-account-page-layout #main-content .container .entry-content,
body.cc-account-page-layout #main-content .container article,
body.cc-account-page-layout #main-content .container .et_pb_post {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.cc-account-shortcode-shell {
    position: relative;
    left: 50%;
    width: 100vw;
    margin-left: -50vw;
    min-height: 72vh;
    padding: 54px 0 76px;
    background:
        linear-gradient(180deg, rgba(4,5,5,.82), rgba(4,5,5,.97)),
        var(--ccpc-backdrop-image, url('https://cardandconquer.com/wp-content/uploads/2026/09/backdrop-cardandconquer.png')) center top / cover no-repeat;
    color: #f4eee3;
    overflow: hidden;
}

.cc-account-shortcode-inner {
    width: min(1360px, calc(100% - 48px));
    margin-inline: auto;
}

.cc-account-shortcode-hero {
    display: grid;
    grid-template-columns: minmax(0,1fr) 230px;
    align-items: center;
    gap: 34px;
    margin-bottom: 24px;
    padding: 38px 42px;
    border: 1px solid rgba(224,177,75,.30);
    border-radius: 8px;
    background:
        radial-gradient(circle at 88% 15%, rgba(224,177,75,.13), transparent 34%),
        linear-gradient(135deg, rgba(14,15,15,.97), rgba(6,7,7,.91));
    box-shadow: 0 26px 70px rgba(0,0,0,.34);
}

.cc-account-shortcode-hero h1 {
    margin: 7px 0 10px !important;
    color: #f7f1e6 !important;
    font-family: Georgia, 'Times New Roman', serif !important;
    font-size: clamp(36px, 4.4vw, 62px) !important;
    font-weight: 400 !important;
    line-height: 1.02 !important;
}

.cc-account-shortcode-hero p {
    max-width: 720px;
    margin: 0 !important;
    color: rgba(255,255,255,.68) !important;
    font-size: 14px;
    line-height: 1.75;
}

.cc-account-shortcode-mark {
    display: flex;
    align-items: center;
    justify-content: center;
}

.cc-account-shortcode-mark img {
    width: min(210px,100%);
    max-height: 130px;
    object-fit: contain;
    filter: drop-shadow(0 14px 32px rgba(217,169,63,.18));
}

.cc-account-native > .woocommerce {
    display: grid !important;
    grid-template-columns: minmax(230px,270px) minmax(0,1fr) !important;
    gap: 22px !important;
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    color: #eee7da;
}

.cc-account-native .woocommerce-MyAccount-navigation {
    float: none !important;
    width: 100% !important;
    margin: 0 !important;
}

.cc-account-native .woocommerce-MyAccount-navigation ul {
    margin: 0 !important;
    padding: 8px !important;
    overflow: hidden;
    list-style: none !important;
    border: 1px solid rgba(224,177,75,.24);
    border-radius: 8px;
    background: rgba(7,8,8,.90);
    box-shadow: 0 18px 42px rgba(0,0,0,.22);
}

.cc-account-native .woocommerce-MyAccount-navigation li {
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
}

.cc-account-native .woocommerce-MyAccount-navigation li::before {
    display: none !important;
}

.cc-account-native .woocommerce-MyAccount-navigation a {
    display: flex;
    align-items: center;
    min-height: 48px;
    padding: 0 14px;
    border-radius: 5px;
    color: rgba(255,255,255,.72) !important;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none !important;
    transition: .18s ease;
}

.cc-account-native .woocommerce-MyAccount-navigation a:hover {
    background: rgba(224,177,75,.07);
    color: #f0c96c !important;
}

.cc-account-native .woocommerce-MyAccount-navigation .is-active a {
    background: linear-gradient(90deg, rgba(224,177,75,.16), rgba(224,177,75,.04));
    color: #f3cc72 !important;
    box-shadow: inset 2px 0 0 #dcb04e;
}

.cc-account-native .woocommerce-MyAccount-content {
    float: none !important;
    width: 100% !important;
    min-width: 0 !important;
    min-height: 360px;
    margin: 0 !important;
    padding: 30px 32px !important;
    border: 1px solid rgba(224,177,75,.24);
    border-radius: 8px;
    background:
        radial-gradient(circle at 92% 4%, rgba(224,177,75,.06), transparent 28%),
        rgba(7,8,8,.90);
    color: rgba(255,255,255,.74);
    box-shadow: 0 18px 42px rgba(0,0,0,.22);
}

.cc-account-native .woocommerce-MyAccount-content > :first-child {
    margin-top: 0 !important;
}

.cc-account-native .woocommerce-MyAccount-content p,
.cc-account-native .woocommerce-MyAccount-content address,
.cc-account-native .woocommerce-MyAccount-content td,
.cc-account-native .woocommerce-MyAccount-content th,
.cc-account-native .woocommerce-form-login p,
.cc-account-native .woocommerce-form-register p {
    color: rgba(255,255,255,.72) !important;
}

.cc-account-native .woocommerce-MyAccount-content h2,
.cc-account-native .woocommerce-MyAccount-content h3,
.cc-account-native .woocommerce-form-login h2,
.cc-account-native .woocommerce-form-register h2 {
    color: #f4eee3 !important;
    font-family: Georgia, 'Times New Roman', serif !important;
    font-weight: 400 !important;
}

.cc-account-native a:not(.button) {
    color: #e6bc5b !important;
}

.cc-account-native table.shop_table {
    overflow: hidden;
    border: 1px solid rgba(224,177,75,.22) !important;
    border-radius: 7px !important;
    background: rgba(255,255,255,.018) !important;
    color: #eee6d8 !important;
}

.cc-account-native table.shop_table th,
.cc-account-native table.shop_table td {
    border-color: rgba(255,255,255,.08) !important;
    background: transparent !important;
    color: rgba(255,255,255,.74) !important;
}

.cc-account-native form .form-row label {
    color: #eee5d7 !important;
    font-size: 12px !important;
    font-weight: 700 !important;
}

.cc-account-native input.input-text,
.cc-account-native input[type='text'],
.cc-account-native input[type='email'],
.cc-account-native input[type='password'],
.cc-account-native input[type='tel'],
.cc-account-native textarea,
.cc-account-native select,
.cc-account-native .select2-container--default .select2-selection--single {
    min-height: 48px !important;
    border: 1px solid rgba(224,177,75,.34) !important;
    border-radius: 6px !important;
    background: rgba(2,3,3,.80) !important;
    color: #f8f3e9 !important;
    box-shadow: none !important;
}

.cc-account-native input.input-text,
.cc-account-native input[type='text'],
.cc-account-native input[type='email'],
.cc-account-native input[type='password'],
.cc-account-native input[type='tel'],
.cc-account-native textarea,
.cc-account-native select {
    padding: 11px 13px !important;
}

.cc-account-native input:focus,
.cc-account-native textarea:focus,
.cc-account-native select:focus {
    border-color: rgba(239,196,95,.82) !important;
    box-shadow: 0 0 0 3px rgba(224,177,75,.08) !important;
    outline: none !important;
}

.cc-account-native .button,
.cc-account-native button.button,
.cc-account-native input.button {
    min-height: 46px !important;
    padding: 11px 20px !important;
    border: 1px solid #efca70 !important;
    border-radius: 6px !important;
    background: linear-gradient(180deg,#f0cf79 0%,#dbae47 100%) !important;
    color: #101010 !important;
    font-size: 12px !important;
    font-weight: 800 !important;
    line-height: 1.2 !important;
    text-transform: none !important;
    box-shadow: none !important;
}

.cc-account-native .button:hover,
.cc-account-native button.button:hover,
.cc-account-native input.button:hover {
    background: linear-gradient(180deg,#f7dc93 0%,#e2b653 100%) !important;
}

.cc-account-native .woocommerce-message,
.cc-account-native .woocommerce-info,
.cc-account-native .woocommerce-error {
    border: 1px solid rgba(224,177,75,.24) !important;
    border-top: 1px solid rgba(224,177,75,.42) !important;
    border-radius: 6px !important;
    background: rgba(10,11,11,.94) !important;
    color: #eee6d8 !important;
}

/* Logged-out state: keep the login/register form broad and centered instead of a tiny card. */
.cc-account-native #customer_login {
    grid-column: 1 / -1;
    width: 100%;
    max-width: 980px;
    margin: 0 auto !important;
    display: grid !important;
    grid-template-columns: repeat(2,minmax(0,1fr));
    gap: 22px;
}

.cc-account-native #customer_login > .u-column1:only-child,
.cc-account-native #customer_login > .u-column2:only-child {
    grid-column: 1 / -1;
    width: min(620px,100%) !important;
    margin-inline: auto !important;
}

.cc-account-native #customer_login .u-column1,
.cc-account-native #customer_login .u-column2,
.cc-account-native .woocommerce-form-login,
.cc-account-native .woocommerce-form-register {
    width: 100% !important;
    margin: 0 !important;
    padding: 30px !important;
    border: 1px solid rgba(224,177,75,.24) !important;
    border-radius: 8px !important;
    background: rgba(7,8,8,.90) !important;
    box-shadow: 0 18px 42px rgba(0,0,0,.22);
}

/* WooCommerce only outputs the forms when logged out, so collapse the parent grid. */
.cc-account-native > .woocommerce:has(#customer_login) {
    display: block !important;
}

@media (max-width: 980px) {
    .cc-account-shortcode-shell {
        padding-top: 34px;
        padding-bottom: 52px;
    }

    .cc-account-shortcode-hero {
        grid-template-columns: 1fr;
    }

    .cc-account-shortcode-mark {
        display: none;
    }

    .cc-account-native > .woocommerce {
        grid-template-columns: 1fr !important;
    }

    .cc-account-native .woocommerce-MyAccount-navigation ul {
        display: grid;
        grid-template-columns: repeat(3,minmax(0,1fr));
    }
}

@media (max-width: 680px) {
    .cc-account-shortcode-inner {
        width: calc(100% - 24px);
    }

    .cc-account-shortcode-shell {
        padding-top: 24px;
        padding-bottom: 44px;
    }

    .cc-account-shortcode-hero {
        margin-bottom: 16px;
        padding: 26px 22px;
    }

    .cc-account-shortcode-hero h1 {
        font-size: clamp(32px,10vw,44px) !important;
    }

    .cc-account-native .woocommerce-MyAccount-navigation ul {
        grid-template-columns: repeat(2,minmax(0,1fr));
    }

    .cc-account-native .woocommerce-MyAccount-content,
    .cc-account-native #customer_login .u-column1,
    .cc-account-native #customer_login .u-column2,
    .cc-account-native .woocommerce-form-login,
    .cc-account-native .woocommerce-form-register {
        padding: 22px !important;
    }

    .cc-account-native #customer_login {
        grid-template-columns: 1fr !important;
    }
}


/* =========================================================
   1.0.51 ACCOUNT GRID REPAIR + PREMIUM TCG INKOOP
   ========================================================= */

/* Divi/theme leftovers should not sit above/beside the dedicated account UI. */
body.cc-account-page-layout #sidebar,
body.cc-account-page-layout .entry-title,
body.cc-account-page-layout .et_post_meta_wrapper,
body.cc-account-page-layout .widget_product_search,
body.cc-account-page-layout .woocommerce-product-search {
    display: none !important;
}

body.cc-account-page-layout #main-content .container,
body.cc-account-page-layout #main-content .container #left-area,
body.cc-account-page-layout #main-content .container article,
body.cc-account-page-layout #main-content .container .entry-content,
body.cc-account-page-layout #main-content .container .et_pb_post {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* WooCommerce inserts a notices wrapper before nav/content. Explicit grid areas
   stop that wrapper from pushing the nav to column 2 and the content to row 2. */
.cc-account-native > .woocommerce {
    grid-template-columns: 250px minmax(0, 1fr) !important;
    grid-template-areas:
        "notice notice"
        "nav content" !important;
    align-items: start !important;
    gap: 22px !important;
}

.cc-account-native > .woocommerce > .woocommerce-notices-wrapper {
    grid-area: notice !important;
    grid-column: 1 / -1 !important;
    width: 100% !important;
    margin: 0 !important;
}

.cc-account-native > .woocommerce > .woocommerce-MyAccount-navigation {
    grid-area: nav !important;
    grid-column: 1 !important;
    grid-row: 2 !important;
    align-self: start !important;
    position: sticky;
    top: 112px;
}

.cc-account-native > .woocommerce > .woocommerce-MyAccount-content {
    grid-area: content !important;
    grid-column: 2 !important;
    grid-row: 2 !important;
    min-width: 0 !important;
    min-height: 420px;
}

.cc-account-native .woocommerce-MyAccount-content .woocommerce-Addresses,
.cc-account-native .woocommerce-MyAccount-content .u-columns.woocommerce-Addresses {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 18px !important;
    width: 100% !important;
}

.cc-account-native .woocommerce-MyAccount-content .woocommerce-Address,
.cc-account-native .woocommerce-MyAccount-content .u-column1,
.cc-account-native .woocommerce-MyAccount-content .u-column2 {
    float: none !important;
    width: auto !important;
    margin: 0 !important;
}

.cc-account-native .woocommerce-MyAccount-content .woocommerce-Address {
    min-height: 210px;
    padding: 24px !important;
    border: 1px solid rgba(224,177,75,.20) !important;
    border-radius: 7px;
    background: rgba(255,255,255,.018);
}

.cc-account-native .woocommerce-MyAccount-content .woocommerce-Address-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.cc-account-native .woocommerce-MyAccount-content .woocommerce-Address-title h2 {
    margin: 0 !important;
    font-size: 24px !important;
}

.cc-account-native .woocommerce-MyAccount-content .woocommerce-Address-title a {
    float: none !important;
    white-space: nowrap;
}

.cc-account-native .woocommerce-EditAccountForm,
.cc-account-native .woocommerce-address-fields,
.cc-account-native .woocommerce-address-fields__field-wrapper {
    width: 100% !important;
    max-width: 920px;
}

.cc-account-native .woocommerce-EditAccountForm fieldset {
    margin: 28px 0 0 !important;
    padding: 24px !important;
    border: 1px solid rgba(224,177,75,.18) !important;
    border-radius: 7px;
    background: rgba(255,255,255,.015);
}

.cc-account-native .woocommerce-EditAccountForm fieldset legend {
    padding: 0 8px;
    color: #efc765;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 20px;
}

.cc-account-native .woocommerce-MyAccount-content .woocommerce-info {
    min-height: 74px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 18px 20px 18px 52px !important;
}

.cc-account-native .woocommerce-MyAccount-content table.shop_table {
    width: 100% !important;
}

/* Keep logged-out forms centred and unaffected by the logged-in grid areas. */
.cc-account-native > .woocommerce:has(#customer_login) {
    display: block !important;
}

@media (max-width: 980px) {
    .cc-account-native > .woocommerce {
        grid-template-columns: 1fr !important;
        grid-template-areas:
            "notice"
            "nav"
            "content" !important;
    }

    .cc-account-native > .woocommerce > .woocommerce-MyAccount-navigation,
    .cc-account-native > .woocommerce > .woocommerce-MyAccount-content {
        grid-column: 1 !important;
        grid-row: auto !important;
        position: static !important;
    }

    .cc-account-native .woocommerce-MyAccount-content .woocommerce-Addresses,
    .cc-account-native .woocommerce-MyAccount-content .u-columns.woocommerce-Addresses {
        grid-template-columns: 1fr !important;
    }
}

/* TCG inkoop page */
body.cc-tcg-inkoop-page-layout #main-content {
    background:
        linear-gradient(180deg, rgba(4,5,5,.80), rgba(4,5,5,.97)),
        var(--ccpc-backdrop-image, url('https://cardandconquer.com/wp-content/uploads/2026/09/backdrop-cardandconquer.png')) center top / cover no-repeat !important;
    color: #f4eee3;
}

body.cc-tcg-inkoop-page-layout #main-content .container,
body.cc-tcg-inkoop-page-layout #main-content .container #left-area,
body.cc-tcg-inkoop-page-layout #main-content .container article,
body.cc-tcg-inkoop-page-layout #main-content .container .entry-content,
body.cc-tcg-inkoop-page-layout #main-content .container .et_pb_post {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

body.cc-tcg-inkoop-page-layout #main-content .container::before,
body.cc-tcg-inkoop-page-layout #sidebar,
body.cc-tcg-inkoop-page-layout .entry-title,
body.cc-tcg-inkoop-page-layout .et_post_meta_wrapper {
    display: none !important;
}

.cc-inkoop-page {
    min-height: 75vh;
    padding: 0 0 78px;
    color: #f3ede2;
}

.cc-inkoop-shell {
    width: min(1380px, calc(100% - 48px));
    margin-inline: auto;
}

.cc-inkoop-hero {
    padding: 62px 0 26px;
}

.cc-inkoop-hero-inner {
    display: grid;
    grid-template-columns: minmax(0,1fr) 260px;
    gap: 42px;
    align-items: center;
    overflow: hidden;
    padding: 46px 48px;
    border: 1px solid rgba(224,177,75,.30);
    border-radius: 8px;
    background:
        radial-gradient(circle at 88% 16%, rgba(224,177,75,.14), transparent 34%),
        linear-gradient(135deg, rgba(14,15,15,.97), rgba(6,7,7,.90));
    box-shadow: 0 28px 74px rgba(0,0,0,.34);
}

.cc-inkoop-hero h1,
.cc-inkoop-card h2,
.cc-inkoop-card h3,
.cc-inkoop-form-head h2 {
    color: #f7f1e7;
    font-family: Georgia, 'Times New Roman', serif;
    font-weight: 400;
}

.cc-inkoop-hero h1 {
    max-width: 930px;
    margin: 8px 0 16px;
    font-size: clamp(40px,5.3vw,72px);
    line-height: .99;
}

.cc-inkoop-hero p {
    max-width: 820px;
    margin: 0;
    color: rgba(255,255,255,.68);
    font-size: 14px;
    line-height: 1.8;
}

.cc-inkoop-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 26px;
}

.cc-inkoop-hero-actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 18px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 800;
    text-decoration: none !important;
}

.cc-inkoop-primary {
    border: 1px solid #efca70;
    background: linear-gradient(180deg,#f0cf79 0%,#dbae47 100%);
    color: #101010 !important;
}

.cc-inkoop-secondary {
    border: 1px solid rgba(224,177,75,.38);
    background: rgba(255,255,255,.02);
    color: #efc765 !important;
}

.cc-inkoop-hero-mark {
    display: flex;
    align-items: center;
    justify-content: center;
}

.cc-inkoop-hero-mark img {
    width: min(240px,100%);
    max-height: 150px;
    object-fit: contain;
    filter: drop-shadow(0 16px 36px rgba(217,169,63,.16));
}

.cc-inkoop-trust {
    display: grid;
    grid-template-columns: repeat(3,minmax(0,1fr));
    margin-bottom: 24px;
    border: 1px solid rgba(224,177,75,.22);
    border-radius: 8px;
    overflow: hidden;
    background: rgba(7,8,8,.86);
}

.cc-inkoop-trust > div {
    padding: 22px 24px;
    border-right: 1px solid rgba(255,255,255,.07);
}

.cc-inkoop-trust > div:last-child {
    border-right: 0;
}

.cc-inkoop-trust strong {
    display: block;
    margin-bottom: 4px;
    color: #efc765;
    font-size: 13px;
}

.cc-inkoop-trust span {
    color: rgba(255,255,255,.56);
    font-size: 12px;
    line-height: 1.6;
}

.cc-inkoop-main {
    display: grid;
    grid-template-columns: minmax(300px,.72fr) minmax(0,1.28fr);
    gap: 24px;
    align-items: start;
}

.cc-inkoop-side {
    display: grid;
    gap: 18px;
}

.cc-inkoop-card,
.cc-inkoop-form-card {
    border: 1px solid rgba(224,177,75,.23);
    border-radius: 8px;
    background:
        radial-gradient(circle at 95% 4%, rgba(224,177,75,.055), transparent 28%),
        rgba(7,8,8,.90);
    box-shadow: 0 18px 46px rgba(0,0,0,.23);
}

.cc-inkoop-card {
    padding: 28px;
}

.cc-inkoop-card h2 {
    margin: 7px 0 14px;
    font-size: 29px;
    line-height: 1.08;
}

.cc-inkoop-card h3 {
    margin: 7px 0 14px;
    font-size: 24px;
}

.cc-inkoop-card p {
    margin: 0;
    color: rgba(255,255,255,.64);
    font-size: 13px;
    line-height: 1.75;
}

.cc-inkoop-chip-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 20px 0 0 !important;
    padding: 0 !important;
    list-style: none !important;
}

.cc-inkoop-chip-list li {
    margin: 0 !important;
    padding: 9px 11px;
    border: 1px solid rgba(224,177,75,.18);
    border-radius: 999px;
    background: rgba(224,177,75,.035);
    color: rgba(255,255,255,.70);
    font-size: 11px;
    list-style: none !important;
}

.cc-inkoop-steps {
    display: grid;
    gap: 16px;
    margin: 20px 0 0 !important;
    padding: 0 !important;
    list-style: none !important;
}

.cc-inkoop-steps li {
    display: grid;
    grid-template-columns: 34px minmax(0,1fr);
    gap: 12px;
    align-items: start;
    list-style: none !important;
}

.cc-inkoop-steps li > span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border: 1px solid rgba(224,177,75,.38);
    border-radius: 50%;
    color: #efc765;
    font-size: 12px;
    font-weight: 800;
}

.cc-inkoop-steps strong {
    display: block;
    color: #eee6d9;
    font-size: 12px;
}

.cc-inkoop-steps p {
    margin-top: 4px;
    font-size: 12px;
}

.cc-inkoop-contact-card a {
    display: block;
    margin-top: 8px;
    color: #efc765 !important;
    text-decoration: none !important;
}

.cc-inkoop-form-card {
    padding: 34px 36px 36px;
}

.cc-inkoop-form-head {
    margin-bottom: 26px;
}

.cc-inkoop-form-head h2 {
    margin: 7px 0 10px;
    font-size: clamp(30px,3.4vw,46px);
    line-height: 1.04;
}

.cc-inkoop-form-head p {
    max-width: 760px;
    margin: 0;
    color: rgba(255,255,255,.62);
    font-size: 13px;
    line-height: 1.7;
}

/* WPForms file upload / choices need additional dark styling beyond contact. */
.cc-inkoop-form .wpforms-field-file-upload,
.cc-inkoop-form .wpforms-uploader,
.cc-inkoop-form .dz-message,
.cc-inkoop-form .wpforms-field-file-upload .modern-hint {
    color: rgba(255,255,255,.60) !important;
}

.cc-inkoop-form .wpforms-uploader,
.cc-inkoop-form .dz-message {
    border-color: rgba(224,177,75,.28) !important;
    background: rgba(255,255,255,.018) !important;
}

.cc-inkoop-form .wpforms-field-checkbox ul,
.cc-inkoop-form .wpforms-field-radio ul {
    display: grid;
    gap: 8px;
    margin: 7px 0 0 !important;
    padding: 0 !important;
}

.cc-inkoop-form .wpforms-field-checkbox li,
.cc-inkoop-form .wpforms-field-radio li {
    margin: 0 !important;
    list-style: none !important;
}

.cc-inkoop-info-grid {
    display: grid;
    grid-template-columns: repeat(3,minmax(0,1fr));
    gap: 18px;
    margin-top: 24px;
}

@media (max-width: 980px) {
    .cc-inkoop-hero-inner,
    .cc-inkoop-main,
    .cc-inkoop-info-grid {
        grid-template-columns: 1fr;
    }

    .cc-inkoop-hero-mark {
        display: none;
    }

    .cc-inkoop-trust {
        grid-template-columns: 1fr;
    }

    .cc-inkoop-trust > div {
        border-right: 0;
        border-bottom: 1px solid rgba(255,255,255,.07);
    }

    .cc-inkoop-trust > div:last-child {
        border-bottom: 0;
    }
}

@media (max-width: 680px) {
    .cc-inkoop-page {
        padding-bottom: 48px;
    }

    .cc-inkoop-shell {
        width: calc(100% - 24px);
    }

    .cc-inkoop-hero {
        padding: 28px 0 18px;
    }

    .cc-inkoop-hero-inner,
    .cc-inkoop-card,
    .cc-inkoop-form-card {
        padding: 24px 20px;
    }

    .cc-inkoop-hero-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .cc-inkoop-hero-actions a {
        width: 100%;
    }
}


/* =========================================================
   1.0.52 POKEMON INKOOP DISCOVERY + ACCOUNT CLEANUP
   ========================================================= */
.cc-home-inkoop {
    position: relative;
}

.cc-home-inkoop-inner {
    position: relative;
    display: grid;
    grid-template-columns: 76px minmax(0, 1fr) auto;
    gap: 24px;
    align-items: center;
    padding: 30px 32px;
    overflow: hidden;
    border: 1px solid rgba(220, 174, 66, .42);
    border-radius: 10px;
    background:
        linear-gradient(90deg, rgba(5,5,5,.96) 0%, rgba(14,12,8,.94) 58%, rgba(45,31,8,.82) 100%),
        radial-gradient(circle at 86% 50%, rgba(219,174,65,.18), transparent 34%);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.025), 0 18px 44px rgba(0,0,0,.20);
}

.cc-home-inkoop-icon {
    display: grid;
    width: 64px;
    height: 64px;
    place-items: center;
    border: 1px solid rgba(220,174,66,.34);
    border-radius: 50%;
    color: #e2b64f;
    background: rgba(222,178,76,.06);
}

.cc-home-inkoop-icon svg {
    width: 30px;
    height: 30px;
}

.cc-home-inkoop-copy h2 {
    margin: 5px 0 7px;
    color: #f5efe4;
}

.cc-home-inkoop-copy p {
    max-width: 820px;
    margin: 0;
    color: rgba(245,239,228,.68);
    line-height: 1.7;
}

@media (max-width: 820px) {
    .cc-home-inkoop-inner {
        grid-template-columns: 56px minmax(0,1fr);
        padding: 24px;
    }

    .cc-home-inkoop-icon {
        width: 52px;
        height: 52px;
    }

    .cc-home-inkoop-inner .cc-home-button {
        grid-column: 1 / -1;
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 520px) {
    .cc-home-inkoop-inner {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 22px 18px;
    }

    .cc-home-inkoop-icon {
        display: none;
    }
}


/* =========================================================
   1.0.53 REVIEWS PAGE + POWER MANAGER REVIEWS SKIN
   ========================================================= */
body.cc-reviews-page-layout #main-content {
    background: #050505 var(--ccpc-backdrop-image, url('https://cardandconquer.com/wp-content/uploads/2026/09/backdrop-cardandconquer.png')) center center / cover no-repeat !important;
}
body.cc-reviews-page-layout #main-content .container,
body.cc-reviews-page-layout #main-content .container #left-area,
body.cc-reviews-page-layout #main-content .container article,
body.cc-reviews-page-layout #main-content .container .entry-content,
body.cc-reviews-page-layout #main-content .container .et_pb_post {
    width: 100% !important; max-width: none !important; padding: 0 !important; margin: 0 !important;
}
body.cc-reviews-page-layout #main-content .container::before,
body.cc-reviews-page-layout #sidebar,
body.cc-reviews-page-layout .entry-title,
body.cc-reviews-page-layout .et_post_meta_wrapper { display:none !important; }
.cc-reviews-page { color:#eee6d6; background:rgba(0,0,0,.35); min-height:60vh; }
.cc-reviews-shell { width:min(1320px, calc(100% - 40px)); margin:0 auto; }
.cc-reviews-hero { padding:64px 0 34px; }
.cc-reviews-hero-inner { display:grid; grid-template-columns:minmax(0,1fr) 260px; gap:34px; align-items:center; padding:36px; border:1px solid rgba(215,168,56,.42); background:linear-gradient(120deg, rgba(7,7,7,.94), rgba(28,22,11,.86)); }
.cc-reviews-hero h1,.cc-reviews-head h2,.cc-reviews-form-wrap h2 { margin:8px 0 12px; color:#f4efe5; font-family:Georgia,'Times New Roman',serif; font-weight:400; }
.cc-reviews-hero h1 { font-size:clamp(38px,5vw,68px); line-height:.98; }
.cc-reviews-hero p,.cc-reviews-form-wrap p { color:rgba(244,239,229,.7); }
.cc-reviews-score { display:grid; justify-items:center; gap:8px; padding:24px; border-left:1px solid rgba(215,168,56,.24); }
.cc-reviews-score strong { font-size:44px; color:#f0c65d; }
.cc-reviews-score span,.cc-review-stars { color:#f0c65d; letter-spacing:.12em; }
.cc-reviews-score small { color:rgba(244,239,229,.62); }
.cc-reviews-main { display:grid; grid-template-columns:minmax(0,1fr) 380px; gap:28px; padding:18px 0 72px; align-items:start; }
.cc-reviews-list-wrap,.cc-reviews-form-wrap { border:1px solid rgba(215,168,56,.32); background:rgba(7,7,7,.88); padding:28px; }
.cc-reviews-grid { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:16px; margin-top:22px; }
.cc-review-card { padding:22px; border:1px solid rgba(215,168,56,.22); background:rgba(255,255,255,.025); }
.cc-review-card h3 { color:#fff; margin:10px 0 8px; font-size:18px; }
.cc-review-card p { color:rgba(244,239,229,.74); line-height:1.65; }
.cc-review-card strong { color:#f0c65d; }
.cc-reviews-empty { padding:24px; border:1px solid rgba(215,168,56,.24); background:rgba(0,0,0,.38); }
.cc-reviews-form-wrap { position:sticky; top:120px; }

/* Power Manager review form/list in Card & Conquer styling */
.cc-reviews-page .pm-review-form,
.cc-reviews-page .reviews-list,
.cc-reviews-page .reviews-summary,
.cc-reviews-page .reviews-slider { color:#eee6d6 !important; }
.cc-reviews-page .pm-review-form input[type="text"],
.cc-reviews-page .pm-review-form input[type="email"],
.cc-reviews-page .pm-review-form select,
.cc-reviews-page .pm-review-form textarea {
    background:#0b0b0b !important; color:#fff !important; border:1px solid rgba(215,168,56,.45) !important; border-radius:0 !important;
}
.cc-reviews-page .pm-review-form label,
.cc-reviews-page .pm-review-form legend,
.cc-reviews-page .pm-review-form .pm-review-rating-label { color:#f3ede0 !important; }
.cc-reviews-page .pm-review-form .btn-submit,
.cc-reviews-page .reviewspro-modal-open { background:linear-gradient(180deg,#f1d17d 0%,#dcae48 100%) !important; color:#111 !important; border:1px solid #f1d17d !important; }
.cc-reviews-page .pm-review-form small,.cc-reviews-page .pm-review-submit-note { color:rgba(244,239,229,.58) !important; }


/* Keep Power Manager review stars visually distinct. The generic form-label
   color above must not flatten selected and unselected stars. */
.cc-reviews-page .pm-review-form .rating-stars label {
    color: rgba(255,255,255,.26) !important;
}
.cc-reviews-page .pm-review-form .rating-stars label:hover,
.cc-reviews-page .pm-review-form .rating-stars label:hover ~ label,
.cc-reviews-page .pm-review-form .rating-stars input:checked ~ label {
    color: #f0c65d !important;
}
.cc-reviews-page .pm-review-form .rating-stars label:hover {
    transform: translateY(-1px);
}

@media (max-width:900px) {
    .cc-reviews-hero-inner,.cc-reviews-main { grid-template-columns:1fr; }
    .cc-reviews-score { border-left:0; border-top:1px solid rgba(215,168,56,.24); }
    .cc-reviews-form-wrap { position:static; }
}
@media (max-width:620px) {
    .cc-reviews-shell { width:min(100% - 24px,1320px); }
    .cc-reviews-hero { padding-top:32px; }
    .cc-reviews-hero-inner,.cc-reviews-list-wrap,.cc-reviews-form-wrap { padding:20px; }
    .cc-reviews-grid { grid-template-columns:1fr; }
}


/* ================================
   1.0.54 reviews form + footer blog
   ================================ */
.cc-reviews-page .pm-review-form {
    width: 100% !important;
    max-width: none !important;
}

.cc-reviews-page .pm-review-grid > .form-group:has(input[name="name"]),
.cc-reviews-page .pm-review-grid > .form-group:has(input[name="email"]) {
    grid-column: 1 / -1 !important;
    width: 100% !important;
}

.cc-reviews-page .pm-review-grid > .form-group:has(input[name="name"]) input,
.cc-reviews-page .pm-review-grid > .form-group:has(input[name="email"]) input {
    width: 100% !important;
    max-width: none !important;
}

/* ================================
   1.0.56 BLOG + FOOTER BLOG LINKS
   ================================ */
.cc-footer-blog-main {
    margin-bottom: 5px !important;
}
.cc-footer-blog-latest {
    margin: 0 0 13px 11px;
    padding-left: 11px;
    border-left: 1px solid rgba(224,179,79,.26);
}
.cc-footer-blog-latest a {
    position: relative;
    margin-bottom: 6px !important;
    color: rgba(255,255,255,.42) !important;
    font-size: 10px !important;
    line-height: 1.35 !important;
}
.cc-footer-blog-latest a:hover {
    color: #e8bf61 !important;
}

body.cc-blog-layout,
body.cc-blog-single-layout {
    background: #050505 !important;
    color: #f3ede2;
}
body.cc-blog-layout #page-container,
body.cc-blog-single-layout #page-container {
    background: #050505 !important;
}
.cc-blog-page,
.cc-blog-single {
    position: relative;
    min-height: 70vh;
    overflow: hidden;
    background:
        radial-gradient(circle at 18% 10%, rgba(184,127,32,.12), transparent 28%),
        radial-gradient(circle at 82% 28%, rgba(184,127,32,.08), transparent 30%),
        linear-gradient(rgba(4,4,4,.74), rgba(4,4,4,.91)),
        var(--ccpc-backdrop-image, url('https://cardandconquer.com/wp-content/uploads/2026/09/backdrop-cardandconquer.png')) center top / cover no-repeat;
}
.cc-blog-shell {
    width: min(92%, 1320px);
    margin: 0 auto;
}
.cc-blog-hero {
    padding: 62px 0 30px;
}
.cc-blog-hero-inner {
    display: grid;
    grid-template-columns: minmax(0,1fr) 220px;
    gap: 36px;
    align-items: center;
    min-height: 230px;
    padding: 34px 40px;
    border: 1px solid rgba(224,179,79,.42);
    background: linear-gradient(120deg, rgba(6,6,6,.94), rgba(28,22,11,.86));
    box-shadow: 0 22px 55px rgba(0,0,0,.26);
}
.cc-blog-hero h1,
.cc-blog-article-hero h1,
.cc-blog-card h2,
.cc-blog-product-head h2 {
    font-family: Georgia,'Times New Roman',serif;
    font-weight: 400;
    color: #f4efe5;
}
.cc-blog-hero h1 {
    margin: 7px 0 10px;
    font-size: clamp(48px,7vw,82px);
    line-height: .95;
}
.cc-blog-hero p {
    max-width: 680px;
    margin: 0;
    color: rgba(244,239,229,.68);
    font-size: 15px;
    line-height: 1.7;
}
.cc-blog-hero-mark {
    display: flex;
    justify-content: center;
    align-items: center;
}
.cc-blog-hero-mark img {
    width: min(190px,100%);
    height: auto;
    object-fit: contain;
}
.cc-blog-overview {
    padding: 18px 0 72px;
}
.cc-blog-overview-heading {
    margin: 18px 0 24px;
}
.cc-blog-overview-heading h1,
.cc-blog-overview-heading h2 {
    margin: 6px 0 0;
    color: #f4efe5;
    font-family: Georgia,'Times New Roman',serif;
    font-size: clamp(30px,4vw,48px);
    font-weight: 400;
    line-height: 1.05;
}
.cc-blog-grid {
    display: grid;
    grid-template-columns: repeat(3,minmax(0,1fr));
    gap: 24px;
}
.cc-blog-card {
    min-width: 0;
    overflow: hidden;
    border: 1px solid rgba(224,179,79,.27);
    background: rgba(7,7,7,.88);
    box-shadow: 0 18px 44px rgba(0,0,0,.22);
}
.cc-blog-card.is-featured {
    grid-column: span 2;
}
.cc-blog-card-media {
    display: block;
    position: relative;
    height: 260px;
    overflow: hidden;
    background: linear-gradient(135deg,#111,#080808);
}
.cc-blog-card.is-featured .cc-blog-card-media {
    height: 360px;
}
.cc-blog-card-media > img,
.cc-blog-media-fallback {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.cc-blog-card-media > img {
    display: block;
    transition: transform .28s ease;
}
.cc-blog-card:hover .cc-blog-card-media > img {
    transform: scale(1.025);
}
.cc-blog-media-fallback {
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(circle at 50% 50%, rgba(224,179,79,.12), transparent 42%),
        linear-gradient(145deg,#101010,#060606);
}
.cc-blog-media-fallback img {
    width: 150px;
    max-width: 42%;
    height: auto;
    opacity: .9;
}
.cc-blog-card-copy {
    padding: 24px;
}
.cc-blog-card-meta,
.cc-blog-article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 9px 16px;
    align-items: center;
    color: rgba(255,255,255,.46);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
}
.cc-blog-card-meta span,
.cc-blog-article-meta span {
    color: #e6bb59;
}
.cc-blog-card h2 {
    margin: 10px 0 11px;
    font-size: clamp(23px,2.2vw,34px);
    line-height: 1.08;
}
.cc-blog-card h2 a {
    color: inherit !important;
    text-decoration: none !important;
}
.cc-blog-card p {
    margin: 0 0 18px;
    color: rgba(244,239,229,.64);
    font-size: 13px;
    line-height: 1.7;
}
.cc-blog-readmore {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    color: #e6bb59 !important;
    font-size: 11px;
    font-weight: 800;
    text-decoration: none !important;
    text-transform: uppercase;
    letter-spacing: .06em;
}
.cc-blog-pagination {
    display: flex;
    justify-content: center;
    gap: 7px;
    margin-top: 38px;
}
.cc-blog-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    min-height: 40px;
    padding: 8px 12px;
    border: 1px solid rgba(224,179,79,.28);
    color: rgba(255,255,255,.68) !important;
    text-decoration: none !important;
}
.cc-blog-pagination .page-numbers.current,
.cc-blog-pagination a.page-numbers:hover {
    border-color: #d9a83d;
    background: rgba(217,168,61,.12);
    color: #f0c767 !important;
}
.cc-blog-empty {
    padding: 42px;
    border: 1px solid rgba(224,179,79,.28);
    background: rgba(5,5,5,.82);
    color: rgba(244,239,229,.72);
}

.cc-blog-article {
    padding: 0 0 80px;
}
.cc-blog-article-hero {
    padding: 70px 0 30px;
}
.cc-blog-article-shell {
    width: min(92%, 1080px);
    margin: 0 auto;
    padding: 26px 30px 30px;
    border: 1px solid rgba(224,179,79,.24);
    background: linear-gradient(135deg, rgba(6,6,6,.9), rgba(26,19,8,.72));
}
.cc-blog-back {
    display: inline-block;
    margin-bottom: 24px;
    color: rgba(224,179,79,.82) !important;
    font-size: 12px;
    font-weight: 750;
    text-decoration: none !important;
}
.cc-blog-article-meta {
    margin-bottom: 13px;
}
.cc-blog-article-hero h1 {
    max-width: 1040px;
    margin: 0;
    font-size: clamp(42px,6vw,78px);
    line-height: 1.01;
}
.cc-blog-featured-image {
    width: min(92%, 1260px);
    margin: 26px auto 44px;
    border: 1px solid rgba(224,179,79,.28);
    background: #090909;
    box-shadow: 0 28px 70px rgba(0,0,0,.28);
}
.cc-blog-featured-image img {
    display: block;
    width: 100%;
    max-height: 720px;
    object-fit: cover;
}
.cc-blog-article-content {
    width: min(90%, 860px);
    margin: 0 auto;
    color: rgba(244,239,229,.82);
    font-size: 17px;
    line-height: 1.85;
}
.cc-blog-article-content > :first-child {
    margin-top: 0;
}
.cc-blog-article-content h2,
.cc-blog-article-content h3,
.cc-blog-article-content h4 {
    margin: 1.65em 0 .55em;
    color: #f5efe5;
    font-family: Georgia,'Times New Roman',serif;
    font-weight: 400;
    line-height: 1.15;
}
.cc-blog-article-content h2 { font-size: clamp(30px,4vw,46px); }
.cc-blog-article-content h3 { font-size: clamp(24px,3vw,34px); }
.cc-blog-article-content p,
.cc-blog-article-content ul,
.cc-blog-article-content ol,
.cc-blog-article-content blockquote {
    margin-top: 0;
    margin-bottom: 1.35em;
}
.cc-blog-article-content a {
    color: #e9be5d !important;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}
.cc-blog-article-content ul,
.cc-blog-article-content ol {
    padding-left: 1.4em;
}
.cc-blog-article-content blockquote {
    padding: 18px 22px;
    border-left: 2px solid #d7a838;
    background: rgba(224,179,79,.055);
    color: rgba(244,239,229,.76);
}
.cc-blog-article-content img {
    max-width: 100%;
    height: auto;
}
.cc-blog-article-content figure {
    max-width: 100%;
    margin: 34px 0;
}
.cc-blog-article-content figcaption {
    margin-top: 8px;
    color: rgba(255,255,255,.42);
    font-size: 11px;
    line-height: 1.45;
}
.cc-blog-article-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 28px 0;
    background: rgba(5,5,5,.68);
}
.cc-blog-article-content th,
.cc-blog-article-content td {
    padding: 12px 14px;
    border: 1px solid rgba(224,179,79,.20);
    text-align: left;
}
.cc-blog-product-breakout {
    width: min(1220px, calc(100vw - 44px));
    margin: 52px 50%;
    transform: translateX(-50%);
    padding: 28px;
    border: 1px solid rgba(224,179,79,.30);
    background: linear-gradient(140deg, rgba(7,7,7,.96), rgba(22,17,9,.92));
}
.cc-blog-product-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 20px;
}
.cc-blog-product-head h2 {
    margin: 5px 0 0;
    font-size: clamp(28px,3.5vw,42px);
}
.cc-blog-product-head > a {
    color: #e6bb59 !important;
    font-size: 11px;
    font-weight: 750;
    text-decoration: none !important;
}
.cc-blog-product-grid {
    display: grid;
    grid-template-columns: repeat(4,minmax(0,1fr));
    gap: 14px;
}
.cc-blog-product-grid .cc-home-product-card {
    min-width: 0;
}
.cc-blog-article-footer {
    width: min(90%, 860px);
    margin: 44px auto 0;
    padding-top: 24px;
    border-top: 1px solid rgba(224,179,79,.22);
}
.cc-blog-article-footer a {
    color: #e9be5d !important;
    text-decoration: none !important;
    font-size: 12px;
    font-weight: 750;
}

@media (max-width: 980px) {
    .cc-blog-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
    .cc-blog-card.is-featured { grid-column: span 2; }
    .cc-blog-product-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
}
@media (max-width: 720px) {
    .cc-blog-hero { padding-top: 32px; }
    .cc-blog-hero-inner { grid-template-columns: 1fr; padding: 24px; min-height: 0; }
    .cc-blog-hero-mark { display: none; }
    .cc-blog-grid { grid-template-columns: 1fr; }
    .cc-blog-card.is-featured { grid-column: auto; }
    .cc-blog-card-media,
    .cc-blog-card.is-featured .cc-blog-card-media { height: 245px; }
    .cc-blog-article-hero { padding-top: 42px; }
    .cc-blog-featured-image { margin-top: 14px; margin-bottom: 30px; }
    .cc-blog-article-content { font-size: 15px; line-height: 1.75; }
    .cc-blog-product-breakout { width: calc(100vw - 24px); padding: 18px; margin-top: 38px; margin-bottom: 38px; }
    .cc-blog-product-head { align-items: flex-start; flex-direction: column; gap: 8px; }
}
@media (max-width: 500px) {
    .cc-blog-product-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
    .cc-blog-card-copy { padding: 20px; }
    .cc-blog-article-hero h1 { font-size: clamp(36px,12vw,54px); }
    .cc-footer-blog-latest { margin-left: 7px; padding-left: 8px; }
    .cc-footer-blog-latest a { font-size: 9px !important; }
}
.cc-blog-product-grid .cc-home-product-media {
    min-height: 255px;
    padding: 16px 14px 10px;
}
.cc-blog-product-grid .cc-home-product-media img {
    height: 225px;
}
@media (max-width: 500px) {
    .cc-blog-product-grid .cc-home-product-media { min-height: 190px; padding: 12px 9px 8px; }
    .cc-blog-product-grid .cc-home-product-media img { height: 165px; }
    .cc-blog-product-grid .cc-home-product-copy { padding: 11px; }
    .cc-blog-product-grid .cc-home-product-copy h3 { font-size: 12px !important; }
}

/* =========================================================
   1.0.57 PERFORMANCE / PAINT COST
   ========================================================= */
/* Fixed full-page backgrounds are expensive to repaint and do not add value
   to the premium layout. Keep the same artwork, but let it scroll normally. */
body.cc-account-page-layout #main-content,
body.cc-contact-page-layout #main-content,
body.cc-checkout-page-layout #main-content,
body.cc-legal-page-layout #main-content,
.cc-checkout-shortcode-shell,
.cc-account-shortcode-shell,
body.cc-tcg-inkoop-page-layout #main-content,
body.cc-reviews-page-layout #main-content,
.cc-blog-page,
.cc-blog-single {
    background-attachment: scroll !important;
}

/* Let Chromium skip layout/paint work for large below-the-fold storefront
   sections until they approach the viewport. The intrinsic size prevents
   scroll jumps while the section is skipped. */
.cc-home-products-section,
.cc-home-category-section,
.cc-home-campaign,
.cc-home-inkoop,
.cc-home-reviews-section,
.cc-home-why-section,
.cc-home-seo-section,
.cc-blog-overview,
.cc-blog-product-breakout,
.cc-premium-footer {
    content-visibility: auto;
    contain-intrinsic-size: auto 720px;
}


/* =========================================================
   1.0.60 LIGHTHOUSE CONTRAST
   =========================================================
   A legacy/default WooCommerce product loop can still be rendered inside
   homepage content by WooCommerce/Divi. On the dark Card & Conquer surface
   WooCommerce's defaults (#333 titles / #666 prices) fail WCAG contrast.
   Keep those fallback loops readable without changing the premium cards. */
.cc-homepage .woocommerce ul.products li.product a.woocommerce-LoopProduct-link .woocommerce-loop-product__title,
.cc-homepage ul.products li.product a.woocommerce-LoopProduct-link .woocommerce-loop-product__title,
body.home .woocommerce ul.products li.product a.woocommerce-LoopProduct-link .woocommerce-loop-product__title,
body.home ul.products li.product a.woocommerce-LoopProduct-link .woocommerce-loop-product__title {
    color: #f4efe5 !important;
}

.cc-homepage .woocommerce ul.products li.product a.woocommerce-LoopProduct-link .price,
.cc-homepage .woocommerce ul.products li.product a.woocommerce-LoopProduct-link .price .amount,
.cc-homepage .woocommerce ul.products li.product a.woocommerce-LoopProduct-link .price bdi,
.cc-homepage ul.products li.product a.woocommerce-LoopProduct-link .price,
.cc-homepage ul.products li.product a.woocommerce-LoopProduct-link .price .amount,
.cc-homepage ul.products li.product a.woocommerce-LoopProduct-link .price bdi,
body.home .woocommerce ul.products li.product a.woocommerce-LoopProduct-link .price,
body.home .woocommerce ul.products li.product a.woocommerce-LoopProduct-link .price .amount,
body.home .woocommerce ul.products li.product a.woocommerce-LoopProduct-link .price bdi,
body.home ul.products li.product a.woocommerce-LoopProduct-link .price,
body.home ul.products li.product a.woocommerce-LoopProduct-link .price .amount,
body.home ul.products li.product a.woocommerce-LoopProduct-link .price bdi {
    color: #e9be5d !important;
}

/* Lighthouse target-size: default WooCommerce pagination links were only
   22px wide and directly adjacent. Give every clickable page number a clear
   32px target and a small gap. */
nav.woocommerce-pagination ul.page-numbers {
    display: flex !important;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
}
nav.woocommerce-pagination ul.page-numbers li {
    float: none !important;
    margin: 0 !important;
    border: 0 !important;
}
nav.woocommerce-pagination ul.page-numbers li > a.page-numbers,
nav.woocommerce-pagination ul.page-numbers li > span.page-numbers {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    min-width: 32px !important;
    min-height: 32px !important;
    padding: 5px 8px !important;
    line-height: 1 !important;
}


/* =========================================================
   1.0.61 LIGHTHOUSE ACCESSIBILITY
   =========================================================
   WooCommerce's default sale badge used white text on a pale orange
   background. On the dark homepage that combination fails WCAG AA. */
.cc-homepage ul.products li.product .onsale,
body.home ul.products li.product .onsale {
    background: #d4ad52 !important;
    color: #111111 !important;
    text-shadow: none !important;
}


/* =========================================================
   1.0.62 LIGHTHOUSE FINAL PERFORMANCE PASS
   =========================================================
   Divi/Power Manager were still causing eleven Open Sans/Cinzel font files to
   be fetched before first paint. The Card & Conquer surfaces already use
   Georgia headings, so keep the homepage UI on local system fonts. This avoids
   the Google Fonts critical chain without changing the premium typography. */
body.home {
    font-family: Arial, Helvetica, sans-serif !important;
}
body.home .cc-full-header,
body.home .cc-full-header a,
body.home .cc-full-header button,
body.home .cc-full-header input,
body.home .cc-full-header span,
body.home .cc-full-header small,
body.home .cc-full-header strong,
body.home .cc-homepage,
body.home .cc-homepage a,
body.home .cc-homepage button,
body.home .cc-homepage input,
body.home .cc-homepage select,
body.home .cc-homepage textarea,
body.home .cc-homepage span,
body.home .cc-homepage small,
body.home .cc-homepage strong,
body.home .cc-homepage p,
body.home .cc-homepage label,
body.home .cc-premium-footer,
body.home .cc-premium-footer a,
body.home .cc-premium-footer button,
body.home .cc-premium-footer input,
body.home .cc-premium-footer span,
body.home .cc-premium-footer small,
body.home .cc-premium-footer strong,
body.home .cc-premium-footer p,
body.home #pm-cookie-popup,
body.home #pm-cookie-popup *,
body.home #chatbot-container,
body.home #chatbot-container * {
    font-family: Arial, Helvetica, sans-serif !important;
}
body.home h1,
body.home h2,
body.home h3,
body.home .cc-home-hero-copy h1,
body.home .cc-home-section-head h2,
body.home .cc-premium-footer h2 {
    font-family: Georgia, 'Times New Roman', serif !important;
}

/* Avoid expensive alpha-aware blur/drop-shadow painting in the LCP hero. */
body.home .cc-home-hero-stage {
    contain: layout paint;
}


/* =========================================================
   1.0.63 DARK CONTENT HEADING READABILITY
   =========================================================
   Product descriptions and legacy/editor content can carry Divi/WooCommerce
   heading colours intended for a light background. Keep H1-H4 readable on
   Card & Conquer's dark storefront, including nested spans with inline colour. */
body:not(.wp-admin) #main-content h1,
body:not(.wp-admin) #main-content h2,
body:not(.wp-admin) #main-content h3,
body:not(.wp-admin) #main-content h4,
body.cc-product-layout .cc-product-description-panel h1,
body.cc-product-layout .cc-product-description-panel h2,
body.cc-product-layout .cc-product-description-panel h3,
body.cc-product-layout .cc-product-description-panel h4,
body.cc-product-layout .woocommerce-product-details__short-description h1,
body.cc-product-layout .woocommerce-product-details__short-description h2,
body.cc-product-layout .woocommerce-product-details__short-description h3,
body.cc-product-layout .woocommerce-product-details__short-description h4 {
    color: #f4efe5 !important;
    text-shadow: 0 1px 2px rgba(0,0,0,.72) !important;
}

/* Editors sometimes wrap the visible title in a span with its own dark
   colour. Force those children to inherit the accessible heading colour. */
body:not(.wp-admin) #main-content h1 *,
body:not(.wp-admin) #main-content h2 *,
body:not(.wp-admin) #main-content h3 *,
body:not(.wp-admin) #main-content h4 *,
body.cc-product-layout .cc-product-description-panel h1 *,
body.cc-product-layout .cc-product-description-panel h2 *,
body.cc-product-layout .cc-product-description-panel h3 *,
body.cc-product-layout .cc-product-description-panel h4 * {
    color: inherit !important;
}

/* Rich product copy gets a little extra separation from the backdrop while
   keeping the existing hierarchy and typography intact. */
body.cc-product-layout .cc-product-description-panel h1,
body.cc-product-layout .cc-product-description-panel h2,
body.cc-product-layout .cc-product-description-panel h3,
body.cc-product-layout .cc-product-description-panel h4 {
    font-family: Georgia, 'Times New Roman', serif !important;
    font-weight: 400 !important;
    line-height: 1.18 !important;
    margin-top: 1.35em;
    margin-bottom: .48em;
}
body.cc-product-layout .cc-product-description-panel h1 { font-size: clamp(30px, 3.2vw, 44px) !important; }
body.cc-product-layout .cc-product-description-panel h2 { font-size: clamp(26px, 2.8vw, 38px) !important; }
body.cc-product-layout .cc-product-description-panel h3 { font-size: clamp(22px, 2.3vw, 31px) !important; }
body.cc-product-layout .cc-product-description-panel h4 { font-size: clamp(18px, 1.9vw, 25px) !important; }


/* =========================================================
   1.0.64 PREMIUM TAXONOMY FOOTER GAP
   =========================================================
   Divi Theme Builder wraps the global footer in its own section/row. On the
   custom taxonomy template that wrapper could expose Divi's default white
   background/padding between #main-content and the Card & Conquer footer.
   Keep the complete hand-off dark and remove only the redundant wrapper
   spacing around the premium footer; the footer itself controls its spacing. */
body.cc-premium-taxonomy-layout,
body.cc-premium-taxonomy-layout #page-container,
body.cc-premium-taxonomy-layout #et-main-area,
body.cc-premium-taxonomy-layout .et-l--footer,
body.cc-premium-taxonomy-layout .et-l--footer .et_builder_inner_content {
    background: #050606 !important;
}

body.cc-premium-taxonomy-layout .et-l--footer .et_pb_section:has(.cc-premium-footer),
body.cc-premium-taxonomy-layout .et-l--footer .et_pb_row:has(.cc-premium-footer),
body.cc-premium-taxonomy-layout .et-l--footer .et_pb_column:has(.cc-premium-footer),
body.cc-premium-taxonomy-layout .et-l--footer .et_pb_module:has(.cc-premium-footer),
body.cc-premium-taxonomy-layout .et-l--footer .et_pb_code:has(.cc-premium-footer),
body.cc-premium-taxonomy-layout .et-l--footer .et_pb_code_inner:has(.cc-premium-footer) {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    background: #050606 !important;
}

body.cc-premium-taxonomy-layout .et-l--footer .et_pb_row:has(.cc-premium-footer) {
    width: 100% !important;
    max-width: none !important;
}


/* =========================================================
   1.0.68 HOMEPAGE NATIVE SHOP LOOP REMOVAL + PREMIUM FOOTER HAND-OFF
   =========================================================
   [cc_homepage] has its own product grids and AJAX load-more controls. When
   WooCommerce/Divi also appends its classic shop loop to the front page, hide
   that duplicate loop immediately so it cannot flash before the JS cleanup.
   The custom Card & Conquer grids do not use ul.products. */
body.home .woocommerce-result-count,
body.home .woocommerce-ordering,
body.home ul.products,
body.home nav.woocommerce-pagination,
body.home .et_pb_shop {
    display: none !important;
}

/* The white strip was Divi's wrapper around our footer. The footer shortcode
   already owns its spacing/background, so flatten that redundant wrapper on
   every page where the premium footer is actually present, not just taxonomy
   archives. */
body:not(.wp-admin) .et-l--footer,
body:not(.wp-admin) .et-l--footer .et_builder_inner_content {
    background: #050606 !important;
}
body:not(.wp-admin) .et-l--footer .et_pb_section:has(.cc-premium-footer),
body:not(.wp-admin) .et-l--footer .et_pb_row:has(.cc-premium-footer),
body:not(.wp-admin) .et-l--footer .et_pb_column:has(.cc-premium-footer),
body:not(.wp-admin) .et-l--footer .et_pb_module:has(.cc-premium-footer),
body:not(.wp-admin) .et-l--footer .et_pb_code:has(.cc-premium-footer),
body:not(.wp-admin) .et-l--footer .et_pb_code_inner:has(.cc-premium-footer) {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    background: #050606 !important;
}
body:not(.wp-admin) .et-l--footer .et_pb_row:has(.cc-premium-footer) {
    width: 100% !important;
    max-width: none !important;
}

/* =========================================================
   1.0.73 ACCESSORIES MENU LINK FIX + ACCESSORY URLS + PREMIUM PRODUCT FEEDBACK + STAFFELKORTING
   ========================================================= */

/* Product notices are floating toasts, so adding to cart never creates a
   white/layout bar between the header and the product hero. */
body.cc-product-layout .woocommerce-notices-wrapper {
    position: fixed !important;
    z-index: 999999 !important;
    top: 76px !important;
    right: 24px !important;
    left: auto !important;
    width: min(520px, calc(100vw - 48px)) !important;
    height: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    background: transparent !important;
    pointer-events: none;
}

body.cc-product-layout .woocommerce-notices-wrapper:empty {
    display: none !important;
}

body.cc-product-layout .woocommerce-notices-wrapper .woocommerce-message,
body.cc-product-layout .woocommerce-notices-wrapper .woocommerce-info,
body.cc-product-layout .woocommerce-notices-wrapper .woocommerce-error {
    position: relative;
    display: flex !important;
    align-items: center;
    gap: 12px;
    min-height: 58px;
    margin: 0 0 10px !important;
    padding: 13px 46px 13px 52px !important;
    overflow: hidden;
    border: 1px solid rgba(229, 185, 88, .42) !important;
    border-left: 3px solid #e2b754 !important;
    border-radius: 7px !important;
    background:
        radial-gradient(circle at 8% 0%, rgba(226, 183, 84, .13), transparent 38%),
        linear-gradient(135deg, rgba(15, 16, 16, .985), rgba(5, 6, 6, .985)) !important;
    color: #f4efe5 !important;
    box-shadow: 0 22px 54px rgba(0, 0, 0, .46), inset 0 1px rgba(255, 255, 255, .03) !important;
    font-size: 13px !important;
    line-height: 1.42 !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    pointer-events: auto;
}

body.cc-product-layout .woocommerce-notices-wrapper .woocommerce-message::before,
body.cc-product-layout .woocommerce-notices-wrapper .woocommerce-info::before,
body.cc-product-layout .woocommerce-notices-wrapper .woocommerce-error::before {
    position: absolute !important;
    top: 50% !important;
    left: 14px !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 25px;
    height: 25px;
    margin: 0 !important;
    transform: translateY(-50%);
    border: 1px solid rgba(229, 185, 88, .48);
    border-radius: 50%;
    background: rgba(229, 185, 88, .08);
    color: #e7bd5d !important;
    font-size: 12px !important;
    line-height: 1 !important;
}

body.cc-product-layout .woocommerce-notices-wrapper .button,
body.cc-product-layout .woocommerce-notices-wrapper a.button,
body.cc-product-layout .woocommerce-notices-wrapper .wc-forward {
    order: 2;
    flex: 0 0 auto;
    float: none !important;
    margin: 0 0 0 auto !important;
    padding: 9px 11px !important;
    border: 1px solid rgba(229, 185, 88, .62) !important;
    border-radius: 4px !important;
    background: rgba(229, 185, 88, .09) !important;
    color: #f0c76b !important;
    font-size: 11px !important;
    font-weight: 800 !important;
    line-height: 1.1 !important;
    letter-spacing: .01em;
    text-decoration: none !important;
    box-shadow: none !important;
}

body.cc-product-layout .woocommerce-notices-wrapper .button:hover,
body.cc-product-layout .woocommerce-notices-wrapper a.button:hover,
body.cc-product-layout .woocommerce-notices-wrapper .wc-forward:hover {
    background: #e1b552 !important;
    color: #090a0a !important;
}

body.cc-product-layout .cc-notice-close {
    position: absolute;
    z-index: 2;
    top: 8px;
    right: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    padding: 0;
    border: 0;
    background: transparent;
    color: rgba(255,255,255,.55);
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
}

body.cc-product-layout .cc-notice-close:hover {
    color: #f0c35f;
}

body.cc-product-layout .woocommerce-notices-wrapper .cc-notice-is-hiding {
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity .18s ease, transform .18s ease;
}

/* Compact premium quantity-pricing table directly below the normal product price. */
body.cc-product-layout .cc-quantity-pricing {
    width: 100%;
    max-width: none;
    margin: 8px 0 18px;
    overflow: hidden;
    border: 1px solid rgba(229, 185, 88, .24);
    border-radius: 8px;
    background:
        radial-gradient(circle at 0 0, rgba(229, 185, 88, .08), transparent 34%),
        linear-gradient(145deg, rgba(15, 16, 16, .96), rgba(6, 7, 7, .96));
    box-shadow: inset 0 1px rgba(255,255,255,.025), 0 14px 34px rgba(0,0,0,.16);
}

body.cc-product-layout .cc-quantity-pricing-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 14px 15px 13px;
    border-bottom: 1px solid rgba(255,255,255,.07);
}

body.cc-product-layout .cc-quantity-pricing-top > div {
    display: grid;
    gap: 3px;
}

body.cc-product-layout .cc-quantity-pricing-kicker {
    color: #e5b957;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .11em;
    text-transform: uppercase;
}

body.cc-product-layout .cc-quantity-pricing-top strong {
    color: #f5f0e8;
    font-size: 14px;
    font-weight: 750;
    line-height: 1.35;
}

body.cc-product-layout .cc-quantity-pricing-auto {
    flex: 0 0 auto;
    padding: 6px 8px;
    border: 1px solid rgba(229,185,88,.24);
    border-radius: 999px;
    background: rgba(229,185,88,.055);
    color: rgba(240,199,107,.86);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
}

body.cc-product-layout .cc-quantity-pricing-table-wrap {
    padding: 0 14px 12px;
    overflow-x: auto;
    scrollbar-width: thin;
}

body.cc-product-layout .cc-quantity-pricing-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}

body.cc-product-layout .cc-quantity-pricing-table thead th {
    padding: 10px 12px;
    border-bottom: 1px solid rgba(255,255,255,.09);
    color: rgba(255,255,255,.48);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    text-align: left;
}

body.cc-product-layout .cc-quantity-pricing-table tbody tr {
    background: rgba(7, 8, 8, .78);
}

body.cc-product-layout .cc-quantity-pricing-table tbody tr.is-tier {
    background: linear-gradient(180deg, rgba(229,185,88,.04), rgba(7,8,8,.78));
}

body.cc-product-layout .cc-quantity-pricing-table tbody tr + tr td {
    border-top: 1px solid rgba(255,255,255,.07);
}

body.cc-product-layout .cc-quantity-pricing-table td {
    padding: 11px 12px;
    vertical-align: middle;
}

body.cc-product-layout .cc-quantity-pricing-table .cc-quantity-pricing-range {
    color: #f0ece5;
    font-size: 12px;
    font-weight: 730;
    line-height: 1.35;
}

body.cc-product-layout .cc-quantity-pricing-table .cc-quantity-pricing-price {
    white-space: nowrap;
}

body.cc-product-layout .cc-quantity-pricing-table .cc-quantity-pricing-price strong,
body.cc-product-layout .cc-quantity-pricing-table .cc-quantity-pricing-price .woocommerce-Price-amount {
    color: #f0c35f !important;
    font-size: 17px !important;
    font-weight: 850 !important;
    line-height: 1.05 !important;
}

body.cc-product-layout .cc-quantity-pricing-table .cc-quantity-pricing-price small {
    display: block;
    margin-top: 3px;
    color: rgba(255,255,255,.42);
    font-size: 10px;
}

body.cc-product-layout .cc-quantity-pricing-table .cc-quantity-pricing-shipping {
    color: #f0ece5;
    font-size: 11px;
    font-weight: 700;
    line-height: 1.35;
}

body.cc-product-layout .cc-quantity-pricing-table .cc-quantity-pricing-saving {
    color: #76d79b;
    font-size: 11px;
    font-weight: 730;
    line-height: 1.35;
}

body.cc-product-layout .cc-quantity-pricing-table .cc-quantity-pricing-saving.is-normal {
    color: rgba(255,255,255,.38);
}

body.cc-product-layout .cc-quantity-pricing-note {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-top: 1px solid rgba(255,255,255,.07);
    color: rgba(255,255,255,.55);
    font-size: 10px;
    line-height: 1.45;
}

body.cc-product-layout .cc-quantity-pricing-note > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    border: 1px solid rgba(229,185,88,.34);
    border-radius: 50%;
    color: #e7bd5d;
    font-size: 9px;
}

@media (max-width: 680px) {
    body.cc-product-layout .woocommerce-notices-wrapper {
        top: 66px !important;
        right: 12px !important;
        width: calc(100vw - 24px) !important;
    }

    body.cc-product-layout .woocommerce-notices-wrapper .woocommerce-message,
    body.cc-product-layout .woocommerce-notices-wrapper .woocommerce-info,
    body.cc-product-layout .woocommerce-notices-wrapper .woocommerce-error {
        display: grid !important;
        grid-template-columns: minmax(0, 1fr);
        gap: 9px;
        padding: 13px 42px 13px 50px !important;
    }

    body.cc-product-layout .woocommerce-notices-wrapper .button,
    body.cc-product-layout .woocommerce-notices-wrapper a.button,
    body.cc-product-layout .woocommerce-notices-wrapper .wc-forward {
        width: max-content;
        margin-left: 0 !important;
    }

    body.cc-product-layout .cc-quantity-pricing-top {
        align-items: flex-start;
        flex-direction: column;
    }

    body.cc-product-layout .cc-quantity-pricing-table-wrap {
        padding: 0 10px 10px;
    }

    body.cc-product-layout .cc-quantity-pricing-table {
        min-width: 520px;
        table-layout: auto;
    }

    body.cc-product-layout .cc-quantity-pricing-table thead th,
    body.cc-product-layout .cc-quantity-pricing-table td {
        padding-left: 10px;
        padding-right: 10px;
    }

    body.cc-product-layout .cc-quantity-pricing-table .cc-quantity-pricing-price strong,
    body.cc-product-layout .cc-quantity-pricing-table .cc-quantity-pricing-price .woocommerce-Price-amount {
        font-size: 15px !important;
    }
}

@media (max-width: 430px) {
    body.cc-product-layout .cc-quantity-pricing-auto {
        width: 100%;
        text-align: center;
    }

    body.cc-product-layout .cc-quantity-pricing-table thead th {
        font-size: 9px;
        letter-spacing: .05em;
    }

    body.cc-product-layout .cc-quantity-pricing-table .cc-quantity-pricing-range,
    body.cc-product-layout .cc-quantity-pricing-table .cc-quantity-pricing-saving {
        font-size: 10px;
    }
}


/* 1.0.76 AJAX single-product add-to-cart loading state. */
body.cc-product-layout .summary .single_add_to_cart_button.cc-ajax-loading,
body.cc-product-layout .cc-product-summary .single_add_to_cart_button.cc-ajax-loading {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: wait !important;
    opacity: .88;
    pointer-events: none;
}

body.cc-product-layout .summary .single_add_to_cart_button.cc-ajax-loading::after,
body.cc-product-layout .cc-product-summary .single_add_to_cart_button.cc-ajax-loading::after {
    content: '';
    display: inline-block;
    width: 15px;
    height: 15px;
    flex: 0 0 15px;
    border: 2px solid rgba(8, 9, 9, .30);
    border-top-color: #090a0a;
    border-radius: 50%;
    animation: ccAjaxCartSpin .68s linear infinite;
}

@keyframes ccAjaxCartSpin {
    to { transform: rotate(360deg); }
}

body.cc-product-layout .woocommerce-notices-wrapper .cc-ajax-notice-message {
    min-width: 0;
    flex: 1 1 auto;
}

/* Generic per-page hero/form controlled from the WordPress page backend. */
.cc-generic-page-hero {
    padding: clamp(34px, 6vw, 76px) 20px;
    border-bottom: 1px solid rgba(229,185,88,.16);
    background:
        radial-gradient(circle at 15% 10%, rgba(229,185,88,.09), transparent 34%),
        linear-gradient(145deg, #111212, #070808 72%);
    color: #f5f0e8;
}
.cc-generic-page-hero-inner {
    width: min(1180px, 100%);
    margin: 0 auto;
}
.cc-generic-page-hero h1 {
    max-width: 820px;
    margin: 8px 0 12px;
    color: #fff;
    font-size: clamp(32px, 5vw, 62px);
    line-height: 1.02;
}
.cc-generic-page-hero p {
    max-width: 760px;
    margin: 0;
    color: rgba(255,255,255,.72);
    font-size: clamp(15px, 1.8vw, 18px);
    line-height: 1.65;
}
.cc-generic-page-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}
.cc-generic-page-form {
    width: min(1180px, calc(100% - 40px));
    margin: 34px auto 54px;
}

/* 1.0.79 page CMS: custom content/form blocks added from Beheer > Pagina's. */
.cc-cms-extra-blocks {
    width: 100%;
    background: #090a0a;
}
.cc-cms-content-block {
    padding: clamp(38px, 6vw, 72px) 20px;
    border-top: 1px solid rgba(229,185,88,.12);
    background:
        radial-gradient(circle at 12% 0, rgba(229,185,88,.06), transparent 31%),
        linear-gradient(145deg, rgba(15,16,16,.98), rgba(7,8,8,.98));
    color: #f5f0e8;
}
.cc-cms-content-block:nth-child(even) {
    background: linear-gradient(145deg, #0b0c0c, #111212);
}
.cc-cms-content-inner {
    width: min(1180px, 100%);
    margin: 0 auto;
}
.cc-cms-content-inner h2 {
    max-width: 820px;
    margin: 7px 0 12px;
    color: #fff;
    font-size: clamp(26px, 3.8vw, 44px);
    line-height: 1.08;
}
.cc-cms-content-copy {
    max-width: 840px;
    color: rgba(255,255,255,.72);
    font-size: 15px;
    line-height: 1.75;
}
.cc-cms-content-copy > :first-child { margin-top: 0; }
.cc-cms-content-copy > :last-child { margin-bottom: 0; }
.cc-cms-content-inner > .cc-home-button { margin-top: 20px; }
.cc-cms-form-block .wpforms-container {
    max-width: 860px;
    margin: 22px 0 0 !important;
}

/* 1.0.83 flexible CaC Beheer blocks. */
.cc-cms-content-block,
.cc-cms-code-block,
.cc-cms-products-block {
    width: 100%;
    box-sizing: border-box;
}
.cc-cms-content-block.cc-cms-style-quiet {
    background: #090a0a;
    border-top-color: rgba(255,255,255,.07);
}
.cc-cms-content-block.cc-cms-style-gold {
    background:
        radial-gradient(circle at 10% 0, rgba(229,185,88,.15), transparent 38%),
        linear-gradient(145deg, #12110e, #080909);
    border-top-color: rgba(229,185,88,.3);
}
.cc-cms-content-block.cc-cms-style-full .cc-cms-content-inner,
.cc-cms-code-block.cc-cms-style-full,
.cc-cms-products-block.cc-cms-style-full {
    width: 100%;
    max-width: none;
}
.cc-cms-content-copy-wrap {
    min-width: 0;
}
.cc-cms-content-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}
.cc-cms-image-text .cc-cms-content-inner {
    display: grid;
    grid-template-columns: minmax(260px, .9fr) minmax(0, 1.1fr);
    align-items: center;
    gap: clamp(28px, 5vw, 72px);
}
.cc-cms-image-text .cc-cms-content-inner.is-image-right .cc-cms-content-media {
    order: 2;
}
.cc-cms-content-media img {
    display: block;
    width: 100%;
    max-height: 560px;
    object-fit: contain;
}
.cc-cms-links-block .cc-cms-content-copy-wrap {
    width: 100%;
}
.cc-cms-link-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 10px;
    margin-top: 22px;
}
.cc-cms-link-grid a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    min-height: 54px;
    padding: 12px 15px;
    border: 1px solid rgba(229,185,88,.22);
    background: rgba(255,255,255,.025);
    color: #f3eee5;
    font-weight: 750;
    text-decoration: none;
}
.cc-cms-link-grid a:hover {
    border-color: rgba(229,185,88,.55);
    background: rgba(229,185,88,.07);
    color: #f0c35f;
}
.cc-cms-products-block > .cc-home-section {
    margin-top: 0;
    margin-bottom: 0;
}
.cc-cms-code-block {
    background: transparent;
}
@media (max-width: 760px) {
    .cc-cms-image-text .cc-cms-content-inner,
    .cc-cms-image-text .cc-cms-content-inner.is-image-right {
        grid-template-columns: 1fr;
    }
    .cc-cms-image-text .cc-cms-content-inner.is-image-right .cc-cms-content-media {
        order: 0;
    }
}

/* =========================================================
   1.0.86 MOBILE PRODUCT GRIDS - TWO COLUMNS
   ========================================================= */
@media (max-width: 620px) {
    /* Homepage, Accessoires, PSA pages, taxonomy archives and CMS product blocks. */
    .cc-home-product-grid,
    .cc-graded-product-grid,
    .cc-cms-products-block .cc-home-product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 8px !important;
    }

    .cc-home-product-card {
        min-width: 0;
    }

    .cc-home-product-media {
        min-height: 190px !important;
        padding: 10px 7px 7px !important;
    }

    .cc-home-product-media img {
        width: 100% !important;
        max-width: 100% !important;
        height: 172px !important;
        object-fit: contain !important;
    }

    .cc-home-product-copy {
        padding: 9px !important;
    }

    .cc-home-product-meta {
        margin-bottom: 5px;
        font-size: 9px;
    }

    .cc-home-product-copy h3 {
        margin-bottom: 10px !important;
        font-size: 11px !important;
        line-height: 1.35 !important;
    }

    .cc-home-product-bottom {
        gap: 6px;
    }

    .cc-home-product-price,
    .cc-home-product-price .woocommerce-Price-amount {
        font-size: 13px !important;
    }

    .cc-home-product-arrow {
        width: 27px;
        height: 27px;
        flex: 0 0 27px;
        font-size: 14px;
    }

    .cc-home-product-badge,
    .cc-home-product-stock-badge {
        top: 7px;
        padding: 5px 6px;
        font-size: 8px;
    }

    .cc-home-product-badge { left: 7px; }
    .cc-home-product-stock-badge { right: 7px; }

    /* Search result products use the same two-column mobile rhythm. */
    .cc-search-products.products {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 8px !important;
    }

    .cc-search-products.products li.product {
        min-width: 0;
        padding: 8px 8px 10px !important;
    }

    .cc-search-products.products li.product img {
        height: 180px !important;
        margin-bottom: 9px !important;
        padding: 7px !important;
    }

    .cc-search-products.products li.product .woocommerce-loop-product__title {
        min-height: 0;
        margin-bottom: 7px !important;
        font-size: 11px !important;
        line-height: 1.35 !important;
    }

    .cc-search-products.products li.product .price {
        font-size: 13px !important;
    }

    .cc-search-products.products li.product .button,
    .cc-search-products.products li.product .added_to_cart {
        padding: 9px 7px !important;
        font-size: 9px !important;
    }

    /* Related and upsell products also stay two-up instead of becoming full width. */
    body.cc-product-layout .related.products ul.products,
    body.cc-product-layout .upsells.products ul.products,
    body.cc-product-layout .cc-product-after-summary .related.products ul.products,
    body.cc-product-layout .cc-product-after-summary .upsells.products ul.products {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 8px !important;
    }
}

@media (max-width: 390px) {
    /* Keep two columns even on smaller phones; make the cards tighter instead. */
    .cc-home-product-grid,
    .cc-graded-product-grid,
    .cc-search-products.products,
    body.cc-product-layout .related.products ul.products,
    body.cc-product-layout .upsells.products ul.products,
    body.cc-product-layout .cc-product-after-summary .related.products ul.products,
    body.cc-product-layout .cc-product-after-summary .upsells.products ul.products {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }

    .cc-home-product-media {
        min-height: 165px !important;
    }

    .cc-home-product-media img {
        height: 148px !important;
    }

    .cc-search-products.products li.product img {
        height: 155px !important;
    }
}


/* 1.0.87: WordPress keeps page titles in the CMS, but CaC pages render their own visible headings. */
body.cc-hide-native-page-title #main-content > .container #left-area > article > h1.entry-title,
body.cc-hide-native-page-title #main-content > .container #left-area > article > .et_post_meta_wrapper > h1.entry-title,
body.cc-hide-native-page-title #main-content > .container article.page > h1.entry-title {
    display: none !important;
}

body.cc-hide-native-page-title #main-content > .container #left-area > article > .et_post_meta_wrapper:has(> h1.entry-title:empty) {
    display: none !important;
}

/* =========================================================
   1.0.90 DESKTOP HEADER FIT
   Keep all main navigation items, including Accessoires, on one line.
   ========================================================= */
@media (min-width: 1241px) {
    .cc-full-header-main {
        grid-template-columns: minmax(0, 1fr) minmax(330px, 395px);
        gap: 22px;
    }

    .cc-full-header-menu {
        gap: clamp(14px, 1.25vw, 23px);
    }

    .cc-full-header-menu a {
        font-size: 12px;
        letter-spacing: .015em;
    }

    .cc-header-search {
        max-width: 395px;
    }
}

@media (min-width: 1241px) and (max-width: 1500px) {
    .cc-full-header-inner {
        grid-template-columns: 190px minmax(0, 1fr);
        column-gap: 24px;
        padding-left: 20px;
        padding-right: 20px;
    }

    .cc-full-header-logo img {
        max-width: 185px;
        max-height: 96px;
    }

    .cc-full-header-menu {
        gap: 13px;
    }

    .cc-full-header-menu a {
        font-size: 11.5px;
    }

    .cc-full-header-main {
        grid-template-columns: minmax(0, 1fr) minmax(300px, 350px);
        gap: 18px;
    }

    .cc-header-search {
        max-width: 350px;
    }
}


/* ==========================================================
   PRODUCTAFBEELDINGEN OP HOVER
   1.0.91: rustig automatisch heen-en-weer, zonder pijlen/dots.
   ========================================================== */

/* Bedieningsknoppen zijn niet meer nodig: desktop wisselt op hover,
   touch blijft de bestaande swipe-logica gebruiken waar die aanwezig is. */
.ccpc-product-slider .ccpc-slider-button,
.ccpc-product-slider .ccpc-slider-dots {
    display: none !important;
}

.ccpc-product-slider .ccpc-product-slide {
    transition: opacity .55s ease, visibility .55s ease;
}

.cc-home-product-media.has-hover-gallery {
    isolation: isolate;
}

.cc-home-product-hover-slide {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 18px 12px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .55s ease, visibility .55s ease;
}

.cc-home-product-hover-slide.is-active {
    opacity: 1;
    visibility: visible;
}

.cc-home-product-media .cc-home-product-hover-slide img {
    position: relative;
    z-index: 2;
    display: block;
    width: auto !important;
    max-width: 100% !important;
    height: 315px !important;
    max-height: 100% !important;
    margin: 0 !important;
    object-fit: contain;
}

@media (max-width: 980px) {
    .cc-home-product-hover-slide {
        padding: 14px 10px 8px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .ccpc-product-slider .ccpc-product-slide,
    .cc-home-product-hover-slide {
        transition: none !important;
    }
}


@media (max-width: 620px) {
    .cc-home-product-hover-slide {
        padding: 10px 7px 7px !important;
    }

    .cc-home-product-media .cc-home-product-hover-slide img {
        width: 100% !important;
        max-width: 100% !important;
        height: 172px !important;
    }
}

@media (max-width: 390px) {
    .cc-home-product-media .cc-home-product-hover-slide img {
        height: 148px !important;
    }
}

/* =========================================================
   1.0.94 BLOG ARTICLE MOBILE / INTERNAL-LINKING QA
   ========================================================= */
/* The in-article product row is meaningful content and must actually render in
   full-page captures as well as normal scrolling. Do not let content-visibility
   leave an empty intrinsic-size placeholder here. */
body.cc-blog-single-layout .cc-blog-product-breakout {
    content-visibility: visible !important;
    contain-intrinsic-size: none !important;
}

@media (max-width: 720px) {
    body.cc-blog-single-layout .cc-blog-article {
        padding-bottom: 54px;
    }

    body.cc-blog-single-layout .cc-blog-article-hero {
        padding: 26px 0 12px;
    }

    body.cc-blog-single-layout .cc-blog-article-shell,
    body.cc-blog-single-layout .cc-blog-article-content,
    body.cc-blog-single-layout .cc-blog-article-footer {
        width: calc(100% - 32px);
        max-width: none;
    }

    body.cc-blog-single-layout .cc-blog-article-shell {
        padding: 18px 18px 20px;
    }

    body.cc-blog-single-layout .cc-blog-back {
        margin-bottom: 16px;
        font-size: 11px;
    }

    body.cc-blog-single-layout .cc-blog-article-meta {
        margin-bottom: 9px;
        gap: 7px 11px;
        font-size: 9px;
    }

    body.cc-blog-single-layout .cc-blog-article-hero h1 {
        max-width: 100%;
        font-size: clamp(30px, 8.8vw, 38px);
        line-height: 1.04;
        letter-spacing: -.018em;
        overflow-wrap: normal;
        word-break: normal;
        hyphens: auto;
    }

    body.cc-blog-single-layout .cc-blog-featured-image {
        width: calc(100% - 32px);
        margin: 14px auto 28px;
    }

    body.cc-blog-single-layout .cc-blog-featured-image img {
        width: 100%;
        max-height: none;
        aspect-ratio: 16 / 10;
        object-fit: cover;
    }

    body.cc-blog-single-layout .cc-blog-article-content {
        font-size: 16px;
        line-height: 1.72;
    }

    body.cc-blog-single-layout .cc-blog-article-content h2,
    body.cc-blog-single-layout .cc-blog-article-content h3,
    body.cc-blog-single-layout .cc-blog-article-content h4 {
        margin-top: 1.5em;
        margin-bottom: .55em;
        line-height: 1.12;
        overflow-wrap: normal;
        word-break: normal;
        hyphens: auto;
    }

    body.cc-blog-single-layout .cc-blog-article-content h2 {
        font-size: clamp(24px, 7vw, 29px);
    }

    body.cc-blog-single-layout .cc-blog-article-content h3 {
        font-size: clamp(21px, 6vw, 25px);
    }

    body.cc-blog-single-layout .cc-blog-article-content p,
    body.cc-blog-single-layout .cc-blog-article-content ul,
    body.cc-blog-single-layout .cc-blog-article-content ol,
    body.cc-blog-single-layout .cc-blog-article-content blockquote {
        margin-bottom: 1.2em;
    }

    body.cc-blog-single-layout .cc-blog-article-content figure {
        margin: 24px 0;
    }

    body.cc-blog-single-layout .cc-blog-product-breakout {
        width: calc(100vw - 24px);
        margin: 34px 50%;
        padding: 14px;
        transform: translateX(-50%);
    }

    body.cc-blog-single-layout .cc-blog-product-head {
        margin-bottom: 14px;
    }

    body.cc-blog-single-layout .cc-blog-product-head h2 {
        font-size: 25px;
    }

    body.cc-blog-single-layout .cc-blog-product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 9px;
    }
}

@media (max-width: 420px) {
    body.cc-blog-single-layout .cc-blog-article-shell,
    body.cc-blog-single-layout .cc-blog-article-content,
    body.cc-blog-single-layout .cc-blog-article-footer,
    body.cc-blog-single-layout .cc-blog-featured-image {
        width: calc(100% - 26px);
    }

    body.cc-blog-single-layout .cc-blog-article-hero h1 {
        font-size: clamp(28px, 8.2vw, 34px);
    }

    body.cc-blog-single-layout .cc-blog-article-content {
        font-size: 15.5px;
    }
}



/* =========================================================
   1.0.98 BLOG: browser title only, no visible WordPress page title
   ========================================================= */
body.cc-blog-layout #main-content h1.entry-title,
body.cc-blog-layout #main-content .et_post_meta_wrapper > h1.entry-title,
body.cc-blog-layout #main-content article.page > h1.entry-title {
    display: none !important;
}

.cc-blog-hero-no-page-title {
    padding-bottom: 18px;
}

.cc-blog-hero-no-page-title .cc-blog-hero-inner {
    min-height: 150px;
}

.cc-blog-hero-no-page-title .cc-home-eyebrow {
    margin-bottom: 8px;
}

.cc-blog-overview-heading h1 {
    margin: 6px 0 0;
    color: #f4efe5;
    font-family: Georgia,'Times New Roman',serif;
    font-size: clamp(30px,4vw,48px);
    font-weight: 400;
    line-height: 1.05;
}


/* =========================================================
   1.0.99 FRONT PAGE NATIVE TITLE HARD STOP
   Divi may render the static WordPress title before the shortcode content.
   The homepage has its own CaC hero/H1, so the native title must never show.
   ========================================================= */
body.home.cc-hide-native-page-title #main-content > .container #left-area > article > h1,
body.home.cc-hide-native-page-title #main-content > .container #left-area > article > .et_post_meta_wrapper,
body.home.cc-hide-native-page-title #main-content > .container article.page > h1.entry-title,
body.home.cc-hide-native-page-title #main-content article.page > h1.entry-title,
body.home #main-content > .container #left-area > article > h1.entry-title,
body.home #main-content > .container #left-area > article > .et_post_meta_wrapper > h1.entry-title,
body.home #main-content > .container article.page > h1.entry-title {
    display: none !important;
    margin: 0 !important;
    padding: 0 !important;
    height: 0 !important;
    overflow: hidden !important;
}


/* 1.1.1 - never show an empty quantity shell when only one item can be bought. */
body.cc-product-layout .cc-product-summary .quantity.cc-quantity-single-hidden,
body.cc-product-layout .cc-product-summary .quantity:has(input.qty[type="hidden"]) {
    display: none !important;
    width: 0 !important;
    min-width: 0 !important;
    height: 0 !important;
    min-height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    overflow: hidden !important;
}
