/*
Theme Name: PaintByNumber Child
Template: flatsome
Description: Premium child theme for paintingbynumber.store on Flatsome
Version: 2.0.0
*/

/* ============================================
   PaintByNumber.store — Premium Art Brand CSS
   Design: Gallery-inspired, canvas-textured, warm & inviting
   Target: Adults 25-55, creative hobbies, home decor, gifting
   ============================================ */

/* === CSS Custom Properties === */
:root {
    /* Brand Palette */
    --pbn-primary: #1a3a5c;
    --pbn-primary-light: #2a5080;
    --pbn-primary-dark: #0f2840;
    --pbn-secondary: #c9964c;
    --pbn-secondary-light: #d4a965;
    --pbn-secondary-dark: #b88339;
    --pbn-accent: #e8725a;
    --pbn-accent-light: #f0907c;

    /* Surfaces */
    --pbn-bg: #faf8f5;
    --pbn-bg-warm: #f5f0e8;
    --pbn-bg-cream: #fdf9f3;
    --pbn-surface: #f5f0e8;
    --pbn-surface-hover: #efe8db;

    /* Text */
    --pbn-text: #2c2c2c;
    --pbn-text-secondary: #5a5a5a;
    --pbn-text-light: #8a8a8a;
    --pbn-text-on-dark: rgba(255, 255, 255, 0.92);

    /* Effects */
    --pbn-shadow-sm: 0 2px 8px rgba(26, 58, 92, 0.06);
    --pbn-shadow-md: 0 4px 16px rgba(26, 58, 92, 0.1);
    --pbn-shadow-lg: 0 8px 32px rgba(26, 58, 92, 0.14);
    --pbn-shadow-xl: 0 12px 48px rgba(26, 58, 92, 0.18);
    --pbn-shadow-gold: 0 4px 20px rgba(201, 150, 76, 0.2);

    /* Borders */
    --pbn-radius-sm: 6px;
    --pbn-radius-md: 10px;
    --pbn-radius-lg: 16px;
    --pbn-radius-xl: 24px;
    --pbn-border-light: 1px solid rgba(201, 150, 76, 0.15);

    /* Transitions */
    --pbn-ease: cubic-bezier(0.25, 0.8, 0.25, 1);
    --pbn-ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
    --pbn-duration: 0.35s;
    --pbn-duration-slow: 0.5s;

    /* Typography */
    --pbn-font-display: "Playfair Display", "Georgia", serif;
    --pbn-font-body: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;

    /* Spacing scale */
    --pbn-space-xs: 4px;
    --pbn-space-sm: 8px;
    --pbn-space-md: 16px;
    --pbn-space-lg: 32px;
    --pbn-space-xl: 48px;
    --pbn-space-2xl: 64px;
}

/* === Canvas Texture Background === */
body {
    background-color: var(--pbn-bg);
    background-image:
        url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='60' height='60' filter='url(%23n)' opacity='0.015'/%3E%3C/svg%3E");
    color: var(--pbn-text);
    font-family: var(--pbn-font-body);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* === Selection Color === */
::selection {
    background: rgba(201, 150, 76, 0.25);
    color: var(--pbn-primary-dark);
}

::-moz-selection {
    background: rgba(201, 150, 76, 0.25);
    color: var(--pbn-primary-dark);
}

/* === Custom Scrollbar === */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--pbn-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--pbn-secondary);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--pbn-secondary-dark);
}

/* Firefox scrollbar */
html {
    scrollbar-width: thin;
    scrollbar-color: var(--pbn-secondary) var(--pbn-bg);
}

/* === Typography Hierarchy === */
h1, h2, h3, h4, .section-title,
.page-title,
.product_title,
.woocommerce-loop-product__title {
    font-family: var(--pbn-font-display);
    color: var(--pbn-primary);
    letter-spacing: -0.01em;
    line-height: 1.2;
}

h1 { font-weight: 700; }
h2 { font-weight: 600; }

/* Section title decorative underline */
.section-title:not(.product_title)::after,
h2.section-title::after {
    content: "";
    display: block;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--pbn-secondary), var(--pbn-secondary-light));
    margin: 12px auto 0;
    border-radius: 2px;
}

/* Homepage section headings */
.section .section-title {
    margin-bottom: 10px;
    font-weight: 700;
}

body, p, .product-small .product-title {
    font-family: var(--pbn-font-body);
}

/* === Scroll Animations === */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

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

@keyframes gentlePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

/* Animate sections on load */
.section > .section-content {
    animation: fadeInUp 0.6s var(--pbn-ease) both;
}

/* Stagger product cards */
.product-small {
    animation: fadeInUp 0.5s var(--pbn-ease) both;
}

.product-small:nth-child(1) { animation-delay: 0s; }
.product-small:nth-child(2) { animation-delay: 0.08s; }
.product-small:nth-child(3) { animation-delay: 0.16s; }
.product-small:nth-child(4) { animation-delay: 0.24s; }
.product-small:nth-child(5) { animation-delay: 0.32s; }
.product-small:nth-child(6) { animation-delay: 0.40s; }
.product-small:nth-child(7) { animation-delay: 0.48s; }
.product-small:nth-child(8) { animation-delay: 0.56s; }

/* === HEADER === */
.header-wrapper {
    transition: box-shadow var(--pbn-duration) ease;
}

.header-wrapper.stuck {
    box-shadow: var(--pbn-shadow-md) !important;
}

/* Logo area */
.header-main .logo a img {
    transition: transform var(--pbn-duration) var(--pbn-ease);
}

.header-main .logo a:hover img {
    transform: scale(1.03);
}

/* Navigation links */
.header-nav .nav > li > a {
    font-family: var(--pbn-font-body);
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.3px;
    transition: color var(--pbn-duration) ease;
    position: relative;
}

.header-nav .nav > li > a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--pbn-secondary);
    transition: all var(--pbn-duration) var(--pbn-ease);
    transform: translateX(-50%);
}

.header-nav .nav > li > a:hover::after,
.header-nav .nav > li.active > a::after,
.header-nav .nav > li.current-menu-item > a::after {
    width: 70%;
}

/* Dropdown menus */
.nav-dropdown {
    border-radius: var(--pbn-radius-md) !important;
    box-shadow: var(--pbn-shadow-lg) !important;
    border: var(--pbn-border-light) !important;
    overflow: hidden;
}

/* Cart icon */
.cart-icon .cart-count {
    background: var(--pbn-accent) !important;
    font-weight: 600;
}

/* === HERO SECTION === */
.banner,
section[label="Hero"],
section:first-of-type[dark="true"] {
    position: relative;
}

/* Hero gradient overlay shimmer */
section:first-of-type[dark="true"]::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(26, 58, 92, 0.15) 0%,
        rgba(201, 150, 76, 0.08) 50%,
        rgba(26, 58, 92, 0.1) 100%
    );
    z-index: 1;
    pointer-events: none;
}

/* Hero button styling */
.section-content .button.white {
    border: 2px solid rgba(255, 255, 255, 0.85) !important;
    backdrop-filter: blur(4px);
    background: rgba(255, 255, 255, 0.08) !important;
    transition: all var(--pbn-duration) var(--pbn-ease);
    font-weight: 600;
    letter-spacing: 0.5px;
}

.section-content .button.white:hover {
    background: rgba(255, 255, 255, 0.95) !important;
    color: var(--pbn-primary) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(255, 255, 255, 0.2);
}

/* === TRUST BAR === */
.icon-box {
    transition: transform var(--pbn-duration) var(--pbn-ease);
    padding: 12px 8px;
}

.icon-box:hover {
    transform: translateY(-3px);
}

.icon-box .icon-box-img {
    margin-bottom: 8px;
}

.icon-box .icon {
    font-size: 28px !important;
    background: linear-gradient(135deg, var(--pbn-secondary), var(--pbn-secondary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.icon-box h5,
.icon-box .icon-box-text {
    font-family: var(--pbn-font-body);
}

.icon-box h5 {
    font-weight: 600;
    font-size: 14px;
    color: var(--pbn-primary);
}

.icon-box .icon-box-text p {
    color: var(--pbn-text-secondary);
    font-size: 12.5px;
}

/* === BUTTONS (Global) === */
.button.primary,
.button.checkout,
.single_add_to_cart_button,
button.button[type="submit"],
.wc-block-components-button {
    background: linear-gradient(135deg, var(--pbn-primary) 0%, var(--pbn-primary-light) 100%) !important;
    border: none !important;
    border-radius: var(--pbn-radius-sm);
    font-family: var(--pbn-font-body);
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 13px 30px;
    transition: all var(--pbn-duration) var(--pbn-ease);
    box-shadow: 0 4px 15px rgba(26, 58, 92, 0.25);
    position: relative;
    overflow: hidden;
}

.button.primary:hover,
.button.checkout:hover,
.single_add_to_cart_button:hover,
button.button[type="submit"]:hover {
    background: linear-gradient(135deg, var(--pbn-primary-light) 0%, var(--pbn-primary) 100%) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(26, 58, 92, 0.35);
}

.button.primary:active,
.single_add_to_cart_button:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(26, 58, 92, 0.25);
}

/* Secondary / outline buttons */
.button.secondary,
.button.alt {
    border: 2px solid var(--pbn-primary) !important;
    color: var(--pbn-primary) !important;
    background: transparent !important;
    border-radius: var(--pbn-radius-sm);
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all var(--pbn-duration) var(--pbn-ease);
}

.button.secondary:hover,
.button.alt:hover {
    background: var(--pbn-primary) !important;
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: var(--pbn-shadow-md);
}

/* Gold accent button for CTAs */
.button.success {
    background: linear-gradient(135deg, var(--pbn-secondary) 0%, var(--pbn-secondary-light) 100%) !important;
    border: none !important;
    color: #fff !important;
    box-shadow: var(--pbn-shadow-gold);
}

.button.success:hover {
    background: linear-gradient(135deg, var(--pbn-secondary-dark) 0%, var(--pbn-secondary) 100%) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(201, 150, 76, 0.35);
}

/* === PRODUCT CARDS === */
.product-small {
    transition: transform var(--pbn-duration) var(--pbn-ease);
}

.product-small .col-inner {
    background: #fff;
    border-radius: var(--pbn-radius-md);
    overflow: hidden;
    transition: all var(--pbn-duration) var(--pbn-ease);
    box-shadow: var(--pbn-shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.product-small:hover .col-inner {
    box-shadow: var(--pbn-shadow-lg);
    transform: translateY(-6px);
}

/* Product image */
.product-small .box-image {
    overflow: hidden;
    border-radius: var(--pbn-radius-md) var(--pbn-radius-md) 0 0;
    position: relative;
}

.product-small .box-image img {
    transition: transform 0.6s var(--pbn-ease);
}

.product-small:hover .box-image img {
    transform: scale(1.06);
}

/* Image overlay on hover */
.product-small .box-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(26, 58, 92, 0.12) 0%,
        transparent 50%
    );
    opacity: 0;
    transition: opacity var(--pbn-duration) ease;
    pointer-events: none;
    z-index: 1;
}

.product-small:hover .box-image::after {
    opacity: 1;
}

/* Quick view button */
.product-small .quick-view {
    opacity: 0;
    transform: translateY(10px);
    transition: all var(--pbn-duration) var(--pbn-ease);
}

.product-small:hover .quick-view {
    opacity: 1;
    transform: translateY(0);
}

/* Product text area */
.product-small .box-text {
    padding: 14px 12px 16px;
    text-align: center;
}

.product-small .product-title {
    font-family: var(--pbn-font-body);
    font-size: 13.5px;
    font-weight: 500;
    line-height: 1.45;
    color: var(--pbn-text);
    margin-bottom: 6px;
    transition: color var(--pbn-duration) ease;
}

.product-small:hover .product-title {
    color: var(--pbn-primary);
}

/* Price styling */
.product-small .price {
    font-weight: 700;
    font-size: 15px;
    color: var(--pbn-primary);
}

.product-small .price del {
    opacity: 0.4;
    font-weight: 400;
    font-size: 13px;
}

.product-small .price ins {
    text-decoration: none;
    color: var(--pbn-accent);
    font-weight: 700;
}

/* Star ratings on cards */
.product-small .star-rating {
    margin: 4px auto 6px;
}

.star-rating span::before {
    color: var(--pbn-secondary) !important;
}

/* Sale badge */
.badge-container .badge-inner {
    background: linear-gradient(135deg, var(--pbn-accent) 0%, var(--pbn-accent-light) 100%) !important;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.3px;
    border-radius: var(--pbn-radius-sm);
    padding: 4px 10px;
    box-shadow: 0 2px 8px rgba(232, 114, 90, 0.3);
}

/* On-sale badge text */
.callout .inner {
    font-size: 12px;
    font-weight: 600;
}

/* === DIFFICULTY BADGE === */
.pbn-difficulty-badge {
    display: inline-block;
    padding: 3px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    font-family: var(--pbn-font-body);
    color: #fff;
    letter-spacing: 0.3px;
    text-transform: capitalize;
}

.pbn-difficulty-badge.beginner {
    background: linear-gradient(135deg, #28a745, #34ce57);
}

.pbn-difficulty-badge.intermediate {
    background: linear-gradient(135deg, #f0ad4e, #f7c948);
    color: #333;
}

.pbn-difficulty-badge.advanced {
    background: linear-gradient(135deg, #dc3545, #e8606d);
}

/* === CATEGORY CARDS (Shop by Theme) === */
.product-category .col-inner {
    border-radius: var(--pbn-radius-lg);
    overflow: hidden;
    transition: all var(--pbn-duration-slow) var(--pbn-ease);
    box-shadow: var(--pbn-shadow-md);
}

.product-category:hover .col-inner {
    transform: translateY(-6px);
    box-shadow: var(--pbn-shadow-xl);
}

.product-category .box-image img {
    transition: transform 0.7s var(--pbn-ease);
}

.product-category:hover .box-image img {
    transform: scale(1.08);
}

/* Category overlay text */
.product-category .category-title {
    font-family: var(--pbn-font-display);
    font-weight: 700;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* === HOW IT WORKS CARDS === */
.featured-box {
    transition: transform var(--pbn-duration) var(--pbn-ease);
}

.featured-box:hover {
    transform: translateY(-4px);
}

/* Step cards container */
.row .col[class*="solid"] .col-inner {
    border-radius: var(--pbn-radius-md) !important;
    transition: all var(--pbn-duration) var(--pbn-ease);
    box-shadow: var(--pbn-shadow-sm);
    border: 1px solid rgba(201, 150, 76, 0.1) !important;
}

.row .col[class*="solid"]:hover .col-inner {
    box-shadow: var(--pbn-shadow-md);
    border-color: rgba(201, 150, 76, 0.25) !important;
}

/* Step number styling via featured_box titles */
.featured-box h5 {
    font-family: var(--pbn-font-display);
    color: var(--pbn-primary);
    font-size: 18px;
    font-weight: 700;
}

.featured-box .featured-desc {
    color: var(--pbn-text-secondary);
    font-size: 14px;
    line-height: 1.6;
}

/* === FAMOUS PAINTINGS SECTION (Dark BG) === */
section[dark="true"] {
    position: relative;
}

/* Gold accent line for dark sections */
section[dark="true"] .section-title {
    color: #fff;
}

section[dark="true"] .section-title::after {
    background: linear-gradient(90deg, var(--pbn-secondary), var(--pbn-secondary-light));
}

/* Products inside dark section */
section[dark="true"] .product-small .col-inner {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(201, 150, 76, 0.15);
    border-radius: var(--pbn-radius-md);
}

section[dark="true"] .product-small:hover .col-inner {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(201, 150, 76, 0.35);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

section[dark="true"] .product-small .box-image {
    border-radius: var(--pbn-radius-sm);
    overflow: hidden;
}

/* === BANNER CARDS (Art for Every Room) === */
.ux-banner {
    border-radius: var(--pbn-radius-lg);
    overflow: hidden;
    box-shadow: var(--pbn-shadow-md);
    transition: all var(--pbn-duration-slow) var(--pbn-ease);
}

.ux-banner:hover {
    transform: translateY(-5px);
    box-shadow: var(--pbn-shadow-xl);
}

.ux-banner img {
    transition: transform 0.7s var(--pbn-ease);
}

.ux-banner:hover img {
    transform: scale(1.06);
}

.ux-banner .text-box h3 {
    font-family: var(--pbn-font-display);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* === REVIEWS SECTION === */
.jdgm-widget {
    font-family: var(--pbn-font-body);
}

/* === BLOG CARDS === */
.post-item .col-inner {
    border-radius: var(--pbn-radius-md);
    overflow: hidden;
    transition: all var(--pbn-duration) var(--pbn-ease);
    box-shadow: var(--pbn-shadow-sm);
}

.post-item:hover .col-inner {
    box-shadow: var(--pbn-shadow-md);
    transform: translateY(-4px);
}

.post-item .box-image img {
    transition: transform 0.6s var(--pbn-ease);
}

.post-item:hover .box-image img {
    transform: scale(1.04);
}

.post-item .post-title {
    font-family: var(--pbn-font-display);
    font-weight: 600;
    color: var(--pbn-primary);
}

/* === NEWSLETTER SECTION === */
section[dark="true"]:last-of-type .button {
    background: linear-gradient(135deg, var(--pbn-secondary) 0%, var(--pbn-secondary-light) 100%) !important;
    border: none !important;
    color: #fff !important;
    font-weight: 600;
}

section[dark="true"]:last-of-type .button:hover {
    background: linear-gradient(135deg, var(--pbn-secondary-dark) 0%, var(--pbn-secondary) 100%) !important;
    transform: translateY(-2px);
    box-shadow: var(--pbn-shadow-gold);
}

/* === PRODUCT PAGE === */
/* Gallery art-frame effect */
.product-gallery-slider .slide {
    border-radius: var(--pbn-radius-md);
    overflow: hidden;
    box-shadow: var(--pbn-shadow-md);
}

.product-gallery-slider .slide img {
    border-radius: var(--pbn-radius-md);
}

.product-gallery-slider {
    border: 6px solid #fff;
    border-radius: var(--pbn-radius-lg);
    box-shadow: var(--pbn-shadow-lg), inset 0 0 0 1px rgba(201, 150, 76, 0.12);
}

/* Product thumbnails */
.product-gallery-slider .flickity-slider .slide {
    border-radius: var(--pbn-radius-sm);
}

.product-thumbnails .col {
    opacity: 0.6;
    transition: opacity var(--pbn-duration) ease;
    border-radius: var(--pbn-radius-sm);
    overflow: hidden;
}

.product-thumbnails .col.is-nav-selected,
.product-thumbnails .col:hover {
    opacity: 1;
}

/* Product title */
.product-info .product_title {
    font-family: var(--pbn-font-display);
    font-weight: 700;
    font-size: 28px;
    color: var(--pbn-primary);
    line-height: 1.25;
    margin-bottom: 12px;
}

/* Product price */
.product-info .price {
    font-size: 26px;
    font-weight: 700;
    color: var(--pbn-primary);
    margin-bottom: 16px;
}

.product-info .price del {
    font-size: 18px;
    opacity: 0.45;
    font-weight: 400;
}

.product-info .price ins {
    text-decoration: none;
    color: var(--pbn-accent);
}

/* Variation selectors — button-style */
.product-info .variations td.value select {
    background: #fff;
    border: 2px solid var(--pbn-surface);
    border-radius: var(--pbn-radius-sm);
    padding: 10px 16px;
    font-family: var(--pbn-font-body);
    font-weight: 500;
    font-size: 14px;
    color: var(--pbn-text);
    transition: border-color var(--pbn-duration) ease;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M2 4l4 4 4-4' fill='none' stroke='%231a3a5c' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 36px;
}

.product-info .variations td.value select:focus,
.product-info .variations td.value select:hover {
    border-color: var(--pbn-secondary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(201, 150, 76, 0.12);
}

.product-info .variations td.label label {
    font-weight: 600;
    color: var(--pbn-primary);
    font-size: 14px;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

/* Add to cart button on product page */
.product-info .single_add_to_cart_button {
    width: 100%;
    padding: 16px 28px;
    font-size: 16px;
    border-radius: var(--pbn-radius-sm);
}

/* Quantity input */
.product-info .quantity input[type="number"] {
    border: 2px solid var(--pbn-surface);
    border-radius: var(--pbn-radius-sm);
    font-family: var(--pbn-font-body);
    font-weight: 600;
    font-size: 16px;
    text-align: center;
    transition: border-color var(--pbn-duration) ease;
}

.product-info .quantity input[type="number"]:focus {
    border-color: var(--pbn-secondary);
    outline: none;
}

/* === PRODUCT TRUST INFO === */
.pbn-product-trust {
    margin-top: 20px;
    padding: 18px 20px;
    background: var(--pbn-bg-cream);
    border-radius: var(--pbn-radius-md);
    border: var(--pbn-border-light);
    font-size: 13.5px;
    color: var(--pbn-text-secondary);
}

.pbn-product-trust p {
    margin: 0 0 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pbn-product-trust p:last-child {
    margin-bottom: 0;
}

.pbn-product-trust strong {
    color: var(--pbn-text);
}

/* === PRODUCT TABS === */
.woocommerce-tabs .tabs li {
    border: none !important;
    margin-right: 0;
}

.woocommerce-tabs .tabs li a {
    font-family: var(--pbn-font-body);
    font-weight: 600;
    font-size: 14px;
    color: var(--pbn-text-light);
    letter-spacing: 0.3px;
    padding: 12px 20px;
    border-bottom: 2px solid transparent;
    transition: all var(--pbn-duration) ease;
    text-transform: uppercase;
}

.woocommerce-tabs .tabs li.active a,
.woocommerce-tabs .tabs li a:hover {
    color: var(--pbn-primary);
    border-bottom-color: var(--pbn-secondary);
    background: transparent;
}

.woocommerce-tabs .tabs {
    border-bottom: 1px solid var(--pbn-surface);
    margin-bottom: 24px;
}

.woocommerce-tabs .panel {
    animation: fadeIn 0.4s ease;
}

/* What's Included cards */
.pbn-kit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-top: 16px;
}

.pbn-kit-card {
    padding: 20px 16px;
    background: var(--pbn-bg-cream);
    border-radius: var(--pbn-radius-md);
    text-align: center;
    border: var(--pbn-border-light);
    transition: all var(--pbn-duration) var(--pbn-ease);
}

.pbn-kit-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--pbn-shadow-md);
    border-color: rgba(201, 150, 76, 0.3);
}

.pbn-kit-card strong {
    display: block;
    color: var(--pbn-primary);
    font-size: 15px;
    margin-bottom: 6px;
}

.pbn-kit-card small {
    color: var(--pbn-text-secondary);
    font-size: 13px;
    line-height: 1.5;
}

/* === SHOP/ARCHIVE PAGE === */
.shop-page-title,
.woocommerce-products-header__title {
    font-family: var(--pbn-font-display);
    font-weight: 700;
    color: var(--pbn-primary);
}

/* Shop filter bar */
.woocommerce-ordering select {
    border: 2px solid var(--pbn-surface);
    border-radius: var(--pbn-radius-sm);
    font-family: var(--pbn-font-body);
    padding: 8px 14px;
    font-size: 13px;
    transition: border-color var(--pbn-duration) ease;
}

.woocommerce-ordering select:focus {
    border-color: var(--pbn-secondary);
    outline: none;
}

/* Pagination */
.page-numbers {
    font-family: var(--pbn-font-body);
    font-weight: 600;
}

.page-numbers li a,
.page-numbers li span {
    border-radius: var(--pbn-radius-sm) !important;
    transition: all var(--pbn-duration) ease;
}

.page-numbers li span.current {
    background: var(--pbn-primary) !important;
    color: #fff !important;
    box-shadow: var(--pbn-shadow-sm);
}

.page-numbers li a:hover {
    background: var(--pbn-surface) !important;
    color: var(--pbn-primary) !important;
}

/* === CART PAGE === */
.cart-item-name a {
    font-family: var(--pbn-font-body);
    font-weight: 500;
    color: var(--pbn-text);
    transition: color var(--pbn-duration) ease;
}

.cart-item-name a:hover {
    color: var(--pbn-primary);
}

/* Cart totals */
.cart-totals {
    background: var(--pbn-bg-cream);
    border-radius: var(--pbn-radius-md);
    border: var(--pbn-border-light);
}

/* === FOOTER === */
.footer-wrapper {
    background: var(--pbn-primary) !important;
    position: relative;
}

/* Footer top decorative border */
.footer-wrapper::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(
        90deg,
        var(--pbn-secondary),
        var(--pbn-secondary-light),
        var(--pbn-secondary)
    );
}

.footer-1 {
    padding: 48px 0 32px;
}

.footer-wrapper .widget-title {
    font-family: var(--pbn-font-display);
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
    position: relative;
    padding-bottom: 10px;
}

.footer-wrapper .widget-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--pbn-secondary);
    border-radius: 1px;
}

.footer-wrapper a {
    color: rgba(255, 255, 255, 0.75) !important;
    transition: all var(--pbn-duration) ease;
    font-size: 14px;
}

.footer-wrapper a:hover {
    color: var(--pbn-secondary) !important;
    padding-left: 4px;
}

.footer-wrapper p,
.footer-wrapper .textwidget {
    color: rgba(255, 255, 255, 0.65);
    font-size: 14px;
    line-height: 1.7;
}

/* Copyright bar */
.absolute-footer,
.footer-2 {
    background: var(--pbn-primary-dark) !important;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 13px;
}

.absolute-footer p,
.copyright-footer {
    color: rgba(255, 255, 255, 0.5);
}

.payment-icons img {
    opacity: 0.7;
    transition: opacity var(--pbn-duration) ease;
    filter: brightness(0) invert(1);
}

.payment-icons img:hover {
    opacity: 1;
}

/* === BREADCRUMBS === */
.breadcrumbs {
    font-size: 13px;
    color: var(--pbn-text-light);
    padding: 12px 0;
}

.breadcrumbs a {
    color: var(--pbn-text-secondary);
    transition: color var(--pbn-duration) ease;
}

.breadcrumbs a:hover {
    color: var(--pbn-primary);
}

.breadcrumbs .divider {
    color: var(--pbn-text-light);
    opacity: 0.5;
}

/* === FORMS & INPUTS === */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
input[type="search"],
textarea,
select {
    border: 2px solid var(--pbn-surface) !important;
    border-radius: var(--pbn-radius-sm) !important;
    font-family: var(--pbn-font-body);
    padding: 10px 14px;
    transition: border-color var(--pbn-duration) ease, box-shadow var(--pbn-duration) ease;
    background: #fff;
}

input:focus,
textarea:focus,
select:focus {
    border-color: var(--pbn-secondary) !important;
    outline: none !important;
    box-shadow: 0 0 0 3px rgba(201, 150, 76, 0.12) !important;
}

/* Search field */
.searchform input[type="search"] {
    border-radius: var(--pbn-radius-xl) !important;
    padding-left: 18px;
}

/* === NOTICES / ALERTS === */
.woocommerce-message,
.woocommerce-info {
    border-top-color: var(--pbn-secondary) !important;
    background: var(--pbn-bg-cream);
    border-radius: var(--pbn-radius-sm);
    font-family: var(--pbn-font-body);
}

.woocommerce-error {
    border-top-color: var(--pbn-accent) !important;
    border-radius: var(--pbn-radius-sm);
}

/* === SIDEBAR WIDGETS === */
.widget {
    margin-bottom: 24px;
}

.widget .widget-title {
    font-family: var(--pbn-font-display);
    color: var(--pbn-primary);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 14px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--pbn-surface);
}

/* === MOBILE RESPONSIVE === */
/* Breakpoints: Flatsome ≤849px (tablet), ≤549px (mobile)
   Elementor selectors use ≤767px where required */

/* ── Tablet (≤849px) ── */
@media (max-width: 849px) {
    .product-small .box-text { padding: 10px 8px 14px; }
    .product-small .product-title { font-size: 13px; }
    .section-content h1 { font-size: 28px !important; }

    /* Hero H1 Elementor */
    .elementor-23003 .elementor-element.elementor-element-7a944ad .elementor-heading-title {
        font-size: 38px !important;
        line-height: 1.25 !important;
    }

    /* Nav touch targets */
    .nav-sidebar .menu-item > a,
    .mobile-nav > li > a {
        min-height: 44px;
        display: flex;
        align-items: center;
        padding: 14px 20px;
    }

    /* Shop vertical card image overflow */
    .products .box-vertical .box-image {
        min-width: auto !important;
        width: 100% !important;
    }
}

/* ── Mobile (≤549px) ── */
@media (max-width: 549px) {
    /* Product page */
    .product-info .product_title { font-size: 22px; }
    .product-info .price { font-size: 22px; }
    .single_add_to_cart_button {
        width: 100% !important;
        padding: 16px !important;
        font-size: 16px !important;
    }

    /* Product cards */
    .product-small .box-text { padding: 8px 6px 12px; }
    .product-small .product-title { font-size: 12.5px; line-height: 1.4; }
    .product-small .price { font-size: 14px; }

    /* Hero */
    .section-content h1 { font-size: 24px !important; line-height: 1.3 !important; }

    /* Hero H1 Elementor */
    .elementor-23003 .elementor-element.elementor-element-7a944ad .elementor-heading-title {
        font-size: 28px !important;
        line-height: 1.3 !important;
    }

    /* Hero min-height Elementor */
    .elementor-23003 .elementor-element.elementor-element-2061b2fa > .elementor-container {
        min-height: 50vh !important;
    }

    /* Trust bar */
    .icon-box h5 { font-size: 12px; }
    .icon-box .icon-box-text p { font-size: 11px; }

    /* Cards & banners */
    .product-category .col-inner { border-radius: var(--pbn-radius-md); }
    .ux-banner { border-radius: var(--pbn-radius-md); }

    /* Footer */
    .footer-wrapper a:hover { padding-left: 0; }

    /* Touch targets */
    .button, .nav a, a.remove { min-height: 44px; min-width: 44px; }

    /* Tabs */
    .woocommerce-tabs .tabs li a { padding: 10px 14px; font-size: 12px; }

    /* Announcement bar */
    .header-top .html_topbar_left {
        font-size: 11px;
        line-height: 1.4;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 85vw;
    }

    /* Logo */
    #logo { width: 140px !important; }
}

/* ── Elementor tablet (≤767px) ── */
@media (max-width: 767px) {
    /* Hero H1 */
    .elementor-23003 .elementor-element.elementor-element-7a944ad .elementor-heading-title {
        font-size: 32px !important;
        line-height: 1.3 !important;
    }

    /* Hero min-height */
    .elementor-23003 .elementor-element.elementor-element-2061b2fa > .elementor-container {
        min-height: 55vh !important;
    }

    /* Footer columns full width */
    .elementor-38657 .elementor-element.elementor-element-2ba31463,
    .elementor-38657 .elementor-element.elementor-element-6bb9fb30 {
        width: 100% !important;
    }

    /* Product image */
    .elementor-38833 .elementor-element.elementor-element-5ab09c58 img {
        height: auto !important;
        aspect-ratio: 4 / 5;
        object-fit: cover;
    }

    /* JetEngine grid overflow */
    .jet-listing-grid__items { margin: 0 !important; width: 100% !important; }
    .jet-listing-grid__item { padding: 5px !important; }

    /* Image-box 2-column */
    .elementor-element-fe80163,
    .elementor-element-37374f48,
    .elementor-element-1ad41ea,
    .elementor-element-2dd3b1be {
        width: 46% !important;
        max-width: 46% !important;
    }

    /* Trust signal center */
    .elementor-image-box-wrapper { text-align: center; }
    .elementor-image-box-content { margin-top: 10px; }
}

/* ── Elementor desktop (≥768px) ── */
@media (min-width: 768px) {
    .elementor-38657 .elementor-element.elementor-element-3d6740e0,
    .elementor-38657 .elementor-element.elementor-element-9d93c53 {
        width: 25% !important;
    }
}

/* ── Trust boxes 2×2 (550–767px) ── */
@media (min-width: 550px) and (max-width: 767px) {
    .elementor-element-fe80163,
    .elementor-element-37374f48,
    .elementor-element-1ad41ea,
    .elementor-element-2dd3b1be {
        width: 48% !important;
        max-width: 48% !important;
    }
}

/* ── Small phones (≤480px) ── */
@media (max-width: 480px) {
    .elementor-23003 .elementor-element.elementor-element-42e29d4 > .jet-listing-grid > .jet-listing-grid__items {
        --columns: 1 !important;
    }
}
/* === REDUCED MOTION === */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .product-small .box-image img,
    .product-category .box-image img,
    .ux-banner img,
    .post-item .box-image img {
        transition: none;
    }
}

/* === DARK MODE (Bonus) === */
@media (prefers-color-scheme: dark) {
    :root {
        --pbn-bg: #1a1a1f;
        --pbn-bg-warm: #222228;
        --pbn-bg-cream: #252530;
        --pbn-surface: #2a2a35;
        --pbn-surface-hover: #333340;
        --pbn-text: #e8e8ec;
        --pbn-text-secondary: #a0a0aa;
        --pbn-text-light: #6a6a75;
        --pbn-shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.2);
        --pbn-shadow-md: 0 4px 16px rgba(0, 0, 0, 0.3);
        --pbn-shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.35);
        --pbn-shadow-xl: 0 12px 48px rgba(0, 0, 0, 0.4);
    }

    body {
        background-image: none;
    }

    .product-small .col-inner {
        background: var(--pbn-surface);
        border-color: rgba(255, 255, 255, 0.06);
    }

    .header-wrapper,
    .header-main {
        background: #1a1a1f !important;
    }

    .nav-dropdown {
        background: var(--pbn-surface) !important;
    }

    .product-gallery-slider {
        border-color: var(--pbn-surface);
    }

    input[type="text"],
    input[type="email"],
    input[type="tel"],
    input[type="password"],
    input[type="search"],
    textarea,
    select {
        background: var(--pbn-surface) !important;
        color: var(--pbn-text) !important;
        border-color: rgba(255, 255, 255, 0.1) !important;
    }

    .woocommerce-tabs .tabs {
        border-bottom-color: rgba(255, 255, 255, 0.1);
    }

    .pbn-product-trust {
        background: var(--pbn-surface);
        border-color: rgba(255, 255, 255, 0.06);
    }

    .woocommerce-message,
    .woocommerce-info {
        background: var(--pbn-surface);
    }

    img {
        opacity: 0.92;
    }
}

/* === LOADING SKELETON (for lazy-loaded images) === */
.lazy-load-active .box-image {
    background: linear-gradient(
        90deg,
        var(--pbn-surface) 25%,
        var(--pbn-surface-hover) 50%,
        var(--pbn-surface) 75%
    );
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

/* === MISC POLISH === */
/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

/* Image loading fade */
img[loading="lazy"] {
    opacity: 0;
    transition: opacity 0.4s ease;
}

img[loading="lazy"].loaded,
img[loading="lazy"][src] {
    opacity: 1;
}

/* Separator line between sections */
.section + .section {
    position: relative;
}

/* Link hover underline animation */
.product-info a:not(.button),
.footer-wrapper a {
    text-decoration: none;
}

/* Coupon code styling */
.coupon input[type="text"] {
    border-radius: var(--pbn-radius-sm) 0 0 var(--pbn-radius-sm) !important;
}

.coupon .button {
    border-radius: 0 var(--pbn-radius-sm) var(--pbn-radius-sm) 0 !important;
}

/* Related products section */
.related.products > h2,
.upsells > h2 {
    font-family: var(--pbn-font-display);
    color: var(--pbn-primary);
    font-weight: 700;
    font-size: 24px;
    text-align: center;
    margin-bottom: 24px;
}

/* Quick view modal */
.mfp-content {
    border-radius: var(--pbn-radius-lg);
    overflow: hidden;
}

.mfp-bg {
    backdrop-filter: blur(4px);
}

/* Mini cart */
.off-canvas .cart-item {
    border-bottom: 1px solid var(--pbn-surface);
    padding: 12px 0;
}

/* Checkout page */
.woocommerce-checkout .form-row label {
    font-weight: 500;
    color: var(--pbn-text);
    font-size: 14px;
}

/* Order review table */
.woocommerce-checkout-review-order-table {
    border-radius: var(--pbn-radius-md);
    overflow: hidden;
}

/* Flatsome lightbox */
.pswp__bg {
    background: rgba(26, 58, 92, 0.95) !important;
}

/* === Footer Widgets === */
.footer-widgets h5 {
    color: #c9964c !important;
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    margin-bottom: 15px;
    font-weight: 600;
}
.footer-widgets ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-widgets ul li {
    margin-bottom: 8px;
}
.footer-widgets ul li a {
    color: rgba(255,255,255,0.7) !important;
    font-size: 13px;
    text-decoration: none;
    transition: color 0.2s, padding-left 0.2s;
}
.footer-widgets ul li a:hover {
    color: #c9964c !important;
    padding-left: 4px;
}
.footer-widgets p {
    color: rgba(255,255,255,0.7);
    font-size: 13px;
    line-height: 1.6;
}
.pbn-payment-icons {
    margin-top: 15px;
}
.pbn-payment-icons .payment-label {
    color: rgba(255,255,255,0.5) !important;
    font-size: 12px !important;
    margin-bottom: 4px;
}
.pbn-payment-icons .payment-methods {
    color: rgba(255,255,255,0.7) !important;
    font-size: 13px !important;
}

/* === FAQ Accordion Styling === */
.accordion .accordion-title {
    font-family: var(--pbn-font-body);
    font-weight: 600;
    font-size: 15px;
    color: var(--pbn-primary);
    padding: 16px 20px;
    border: none;
    border-bottom: 1px solid rgba(201, 150, 76, 0.12);
    background: transparent;
    transition: background var(--pbn-duration) var(--pbn-ease), color var(--pbn-duration) var(--pbn-ease);
}
.accordion .accordion-title:hover {
    background: var(--pbn-surface);
    color: var(--pbn-secondary-dark);
}
.accordion .accordion-title.active {
    color: var(--pbn-secondary);
    border-bottom-color: var(--pbn-secondary);
}
.accordion .accordion-inner {
    padding: 16px 20px 20px;
    font-size: 14px;
    line-height: 1.7;
    color: var(--pbn-text-secondary);
}
.accordion .accordion-title .toggle {
    color: var(--pbn-secondary);
}

/* === Mobile Hamburger Menu === */
.mfp-content .nav-sidebar {
    background: var(--pbn-bg);
}
.nav-sidebar .nav-sidebar-inner .menu-item > a {
    font-size: 15px;
    font-weight: 500;
    color: var(--pbn-text);
    padding: 12px 20px;
    border-bottom: 1px solid var(--pbn-surface);
    transition: background 0.2s, padding-left 0.2s;
}
.nav-sidebar .nav-sidebar-inner .menu-item > a:hover {
    background: var(--pbn-surface);
    padding-left: 24px;
    color: var(--pbn-secondary);
}
.nav-sidebar .menu-item.active > a {
    color: var(--pbn-secondary);
    font-weight: 600;
}

/* === Cart Dropdown Styling === */
.header-cart-link .cart-icon strong {
    background: var(--pbn-secondary) !important;
    color: #fff !important;
    font-weight: 600;
}
.off-canvas.off-canvas-cart {
    background: var(--pbn-bg);
}
.off-canvas-cart .widget_shopping_cart_content {
    padding: 20px;
}
.off-canvas-cart .cart_list li {
    border-bottom: 1px solid var(--pbn-surface);
    padding: 14px 0;
}
.off-canvas-cart .cart_list li a:not(.remove) {
    color: var(--pbn-text);
    font-weight: 500;
}
.off-canvas-cart .woocommerce-mini-cart__total {
    font-size: 16px;
    font-weight: 600;
    color: var(--pbn-primary);
    padding: 16px 0;
    border-top: 2px solid var(--pbn-secondary);
}
.off-canvas-cart .button.checkout {
    background: var(--pbn-secondary) !important;
    border-color: var(--pbn-secondary) !important;
    font-weight: 600;
}
.off-canvas-cart .button.checkout:hover {
    background: var(--pbn-secondary-dark) !important;
}

/* === Checkout Page Polish === */
.woocommerce-checkout .form-row input.input-text,
.woocommerce-checkout .form-row select,
.woocommerce-checkout .form-row textarea {
    border: 1px solid #ddd;
    border-radius: var(--pbn-radius-sm);
    padding: 12px 14px;
    font-size: 14px;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.woocommerce-checkout .form-row input.input-text:focus,
.woocommerce-checkout .form-row select:focus {
    border-color: var(--pbn-secondary);
    box-shadow: 0 0 0 2px rgba(201, 150, 76, 0.15);
    outline: none;
}
.woocommerce-checkout #place_order {
    background: var(--pbn-secondary) !important;
    border-color: var(--pbn-secondary) !important;
    font-size: 16px;
    font-weight: 700;
    padding: 16px 32px;
    border-radius: var(--pbn-radius-md);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s var(--pbn-ease);
}
.woocommerce-checkout #place_order:hover {
    background: var(--pbn-secondary-dark) !important;
    transform: translateY(-1px);
    box-shadow: var(--pbn-shadow-gold);
}
.woocommerce-checkout .order-review {
    background: var(--pbn-bg-cream);
    border-radius: var(--pbn-radius-lg);
    padding: 24px;
}


/* === UI & UX POLISH === */

/* Product card hover */
.jet-listing-grid__item {
    transition: transform var(--pbn-duration) var(--pbn-ease),
                box-shadow var(--pbn-duration) var(--pbn-ease);
    border-radius: var(--pbn-radius-md);
    overflow: hidden;
}
.jet-listing-grid__item:hover {
    transform: translateY(-4px);
    box-shadow: var(--pbn-shadow-lg);
}

/* JetEngine grid overflow */
.elementor-section .jet-listing-grid { overflow: hidden; }

/* Footer padding */
.footer-1 { padding-top: 45px !important; padding-bottom: 30px !important; }
.footer-2 { padding-top: 15px !important; padding-bottom: 15px !important; }

/* Sale badge brand color */
.onsale {
    background: var(--pbn-secondary) !important;
    color: #fff !important;
    font-weight: 600;
    border-radius: var(--pbn-radius-sm);
    padding: 4px 10px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* CTA button polish */
.elementor-button {
    border-radius: var(--pbn-radius-sm) !important;
    font-weight: 600 !important;
    letter-spacing: 0.5px !important;
    transition: all var(--pbn-duration) var(--pbn-ease) !important;
}
.elementor-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(26, 58, 92, 0.25);
}

/* Lazy image stability */
img[loading="lazy"] {
    background-color: var(--pbn-bg-warm);
    min-height: 100px;
}

/* Dark mode flash prevention */
:root { color-scheme: light; }

/* CLS reduction */
.section > .section-content { animation-fill-mode: backwards; }
.product-small { will-change: transform, opacity; }

/* CTA buttons: gold for money actions */
.single_add_to_cart_button,
.button.checkout,
.wc-proceed-to-checkout .checkout-button,
#place_order {
    background: linear-gradient(135deg, var(--pbn-secondary), var(--pbn-secondary-light)) !important;
    border-color: var(--pbn-secondary) !important;
    color: #fff !important;
    box-shadow: var(--pbn-shadow-gold);
}
.single_add_to_cart_button:hover,
.button.checkout:hover,
.wc-proceed-to-checkout .checkout-button:hover,
#place_order:hover {
    background: linear-gradient(135deg, var(--pbn-secondary-dark), var(--pbn-secondary)) !important;
    transform: translateY(-1px);
}

/* Product image aspect ratio */
.product-small .box-image { aspect-ratio: 1 / 1; overflow: hidden; }
.product-small .box-image img { width: 100%; height: 100%; object-fit: cover; }

/* Low stock urgency badge */
.pbn-low-stock {
    position: absolute;
    bottom: 8px;
    left: 8px;
    background: var(--pbn-accent);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 20px;
    z-index: 2;
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

