/* ============================================================
   NOVA VENDING — Brand Gradient System
   Drop-in CSS for buttons, text, borders, glows.
   ============================================================ */

/* -----------------------------
   AQUIRE FONT (test)
   ----------------------------- */
@font-face {
    font-family: 'Aquire';
    src: url('../fonts/aquire/Aquire-BW0ox.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: 'Aquire';
    src: url('../fonts/aquire/AquireBold-8Ma60.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
}
@font-face {
    font-family: 'Aquire';
    src: url('../fonts/aquire/AquireLight-YzE0o.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Aquire', sans-serif !important;
}

/* -----------------------------
   1. BRAND TOKENS (CSS variables)
   ----------------------------- */
   :root {
/* Core brand colours */
--nova-navy:       #07152f;   /* deep blue-black background */
--nova-navy-soft:  #102452;   /* hover/raised surfaces */

--nova-blue-deep:  #E91E8C;   /* gradient anchor */
--nova-blue:       #F0479A;   /* gradient mid */
--nova-blue-light: #FF8A3D;   /* gradient anchor */
--nova-cyan:       #FFB03D;   /* glow/accent support */
--nova-ice:        #FFE0C2;   /* subtle highlight */

--nova-white:      #ffffff;

/* Brand gradients */
--nova-gradient:        linear-gradient(135deg, #E91E8C 0%, #F0479A 55%, #FF8A3D 100%);
--nova-gradient-vert:   linear-gradient(180deg, #FF8A3D 0%, #F0479A 50%, #E91E8C 100%);
--nova-gradient-soft:   linear-gradient(135deg, #F0479A 0%, #FF8A3D 100%);
--nova-gradient-deep:   linear-gradient(135deg, #B0006D 0%, #E91E8C 50%, #F0479A 100%);
--nova-radial-glow:     radial-gradient(circle at 30% 30%, #FFB03D 0%, #F0479A 45%, #E91E8C 100%);

/* Shadows / glows */
--nova-shadow-sm:  0 2px 8px rgba(240, 71, 154, 0.25);
--nova-shadow-md:  0 6px 20px rgba(240, 71, 154, 0.35);
--nova-shadow-lg:  0 12px 40px rgba(255, 138, 61, 0.40);
--nova-glow:       0 0 24px rgba(240, 71, 154, 0.55);
    
      /* Motion */
      --nova-ease:      cubic-bezier(0.4, 0, 0.2, 1);
      --nova-duration:  220ms;
    
      /* Hero-2 decorative PNG layers (lime/green -> pink/orange); tweak hue if assets change */
      --nova-hero-decor-filter: hue-rotate(215deg) saturate(1.45) brightness(1.25);
    }
    
    /* ============================================================
       2. BUTTONS
       ============================================================ */
    
    /* Shared base — apply to every variant */
    .btn-nova {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      padding: 0.75rem 1.5rem;
      font-family: 'Inter', -apple-system, system-ui, sans-serif;
      font-weight: 600;
      font-size: 0.95rem;
      letter-spacing: 0.02em;
      border: none;
      border-radius: 8px;
      cursor: pointer;
      text-decoration: none;
      user-select: none;
      transition: transform var(--nova-duration) var(--nova-ease),
                  box-shadow var(--nova-duration) var(--nova-ease),
                  filter var(--nova-duration) var(--nova-ease),
                  background-position var(--nova-duration) var(--nova-ease);
      will-change: transform;
    }
    .btn-nova:focus-visible {
      outline: 2px solid var(--nova-blue-light);
      outline-offset: 3px;
    }
    .btn-nova:disabled {
      opacity: 0.5;
      cursor: not-allowed;
      filter: grayscale(0.4);
    }
    
    /* --- Primary: solid gradient fill --- */
    .btn-nova--primary {
      color: var(--nova-white);
      background: var(--nova-gradient);
      background-size: 150% 150%;
      background-position: 0% 50%;
      box-shadow: var(--nova-shadow-md);
    }
    .btn-nova--primary:hover {
      background-position: 100% 50%;
      box-shadow: var(--nova-shadow-lg);
      transform: translateY(-1px);
    }
    .btn-nova--primary:active {
      transform: translateY(0);
      box-shadow: var(--nova-shadow-sm);
    }
    
    /* --- Outline: gradient border, transparent fill --- */
    .btn-nova--outline {
      color: var(--nova-blue);
      background:
        linear-gradient(var(--nova-navy), var(--nova-navy)) padding-box,
        var(--nova-gradient) border-box;
      border: 2px solid transparent;
    }
    .btn-nova--outline:hover {
      color: var(--nova-white);
      background:
        var(--nova-gradient) padding-box,
        var(--nova-gradient) border-box;
      box-shadow: var(--nova-shadow-md);
    }
    
    /* --- Ghost: gradient text only --- */
    .btn-nova--ghost {
      background: transparent;
      -webkit-background-clip: text;
              background-clip: text;
      background-image: var(--nova-gradient);
      color: transparent;
      padding: 0.5rem 0.75rem;
    }
    .btn-nova--ghost:hover {
      filter: brightness(1.15);
    }
    
    /* --- Glow: primary + ambient halo --- */
    .btn-nova--glow {
      color: var(--nova-white);
      background: var(--nova-gradient);
      box-shadow: var(--nova-shadow-md), var(--nova-glow);
    }
    .btn-nova--glow:hover {
      box-shadow: var(--nova-shadow-lg), 0 0 36px rgba(255, 138, 61, 0.65);
      transform: translateY(-1px);
    }
    
    /* ============================================================
       3. TEXT, BORDERS, BACKGROUNDS — utilities
       ============================================================ */
    
    /* Gradient text — use on h1, h2, .accent, etc. */
    .nova-text {
      background: var(--nova-gradient);
      -webkit-background-clip: text;
              background-clip: text;
      -webkit-text-fill-color: transparent;
              color: transparent;
    }
    
    /* Gradient background block */
    .nova-bg { background: var(--nova-gradient); color: var(--nova-white); }
    
    /* Gradient border (any block element) */
    .nova-border {
      border: 2px solid transparent;
      background:
        linear-gradient(var(--nova-navy), var(--nova-navy)) padding-box,
        var(--nova-gradient) border-box;
    }
    
    /* Underline accent for links */
    .nova-link {
      color: var(--nova-blue);
      text-decoration: none;
      background-image: var(--nova-gradient);
      background-size: 100% 2px;
      background-position: 0 100%;
      background-repeat: no-repeat;
      padding-bottom: 2px;
      transition: background-size var(--nova-duration) var(--nova-ease);
    }
    .nova-link:hover { background-size: 100% 100%; -webkit-background-clip: text; background-clip: text; color: transparent; }
    
    /* Divider line */
    .nova-divider {
      height: 2px;
      border: 0;
      background: var(--nova-gradient);
      border-radius: 2px;
    }
    
    /* Card with gradient top edge */
    .nova-card {
      position: relative;
      background: var(--nova-navy-soft);
      color: var(--nova-white);
      border-radius: 12px;
      padding: 1.5rem;
      overflow: hidden;
    }
    .nova-card::before {
      content: "";
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 4px;
      background: var(--nova-gradient);
    }
    
    /* Theme header CTA — gradient on wrapper ( .theme-btn keeps hover pseudo-elements ) */
    .header-button:has(.theme-btn:not(.style-2)) {
      display: inline-block;
      border-radius: 100px;
      background: var(--nova-gradient);
      transition: transform 0.25s ease;
      transform-origin: center;
    }
    .header-button:has(.theme-btn:not(.style-2)):hover {
      transform: scale(1.04);
    }
    .header-button .theme-btn:not(.style-2) {
      background: transparent;
      border-radius: 100px;
      color:#fff;
    }
    .header-button .theme-btn:not(.style-2):hover,
    .header-button .theme-btn:not(.style-2):focus {
      color: #0098ff;
    }
    .header-2.header-3 .header-right .header-right-icon .header-button .theme-btn:not(.style-2),
    .header-2.header-3 .header-right .header-right-icon .header-button .theme-btn:not(.style-2)::before,
    .header-2.header-3 .header-right .header-right-icon .header-button .theme-btn:not(.style-2)::after {
      border-radius: 100px;
    }
    
    /* Shop / Banner 2 hero — replace theme green & olive gradient with Nova palette */
    .hero-2 .hero-content .sub-title {
      color: var(--nova-blue-light);
      background: none;
      -webkit-text-fill-color: var(--nova-blue-light);
    }
    .hero-2 .hero-content h1 {
      background: var(--nova-gradient-vert);
	background-size: 100% 50%;
      -webkit-background-clip: text;
              background-clip: text;
      -webkit-text-fill-color: transparent;
              color: transparent;
    }
    .hero-2 .hero-content h1 span {
      background: none;
      -webkit-text-fill-color: var(--nova-white);
              color: var(--nova-white);
    }
    .hero-2 .theme-btn.style-2 {
      background: var(--nova-gradient);
      background-size: 150% 150%;
      background-position: 0% 50%;
      box-shadow: var(--nova-shadow-sm);
    }
    .hero-2 .theme-btn.style-2:hover {
      background-position: 100% 50%;
      box-shadow: var(--nova-shadow-md);
    }
    .hero-2 .theme-btn.style-2 svg path {
      fill: var(--nova-white);
    }
    
    /* Hide hero-2 CTA on shop/product-archive page */
    body.post-type-archive-product .hero-2 .theme-btn.style-2 {
      display: none;
    }
    
    /* Decorative overlay images only — not .hero-image (product/campaign art)
    .hero-2 .top-shape img,
    .hero-2 .top-line img,
    .hero-2 .bottom-shape img,
    .hero-2 .left-shape img,
    .hero-2 .right-shape img,
    .hero-2 .right-shape2 img,
    .hero-2 .right-shape-3 img,
    .hero-2 .blur-shape img {
      -webkit-filter: var(--nova-hero-decor-filter);
              filter: var(--nova-hero-decor-filter);
    } */

    /* USK product grid — title links use Nova blue accent */
    .usk-glossy-grid .usk-title {
      color: var(--nova-blue-light) !important;
    }
    .usk-glossy-grid .usk-title:hover {
      color: var(--nova-blue-light) !important;
    }
    .usk-glossy-grid .usk-price .woocommerce-Price-amount {
      color: var(--nova-blue);
    }
    .usk-glossy-grid .usk-rating {
      display: none !important;
    }

    /* FA 6.0 ships fa-twitter but not fa-x-twitter (added in 6.4+); alias it */
    .fa-x-twitter::before {
      content: "\f099";
    }

    /* Testimonials style2 — product image beside title in .client-info */
    .testimonial-box-items-2 .client-info img {
      max-width: 150px;
      height: auto;
    }
    
    /* ============================================================
       4. USAGE EXAMPLES (HTML)
       ============================================================
       <button class="btn-nova btn-nova--primary">Buy Now</button>
       <button class="btn-nova btn-nova--outline">Learn More</button>
       <button class="btn-nova btn-nova--ghost">Skip</button>
       <button class="btn-nova btn-nova--glow">Restock</button>
    
       <h1 class="nova-text">High Profit</h1>
       <a class="nova-link" href="#">View dashboard</a>
       <hr class="nova-divider">
    
       <div class="nova-card">
         <h3 class="nova-text">Today's Revenue</h3>
         <p>£412 across 14 machines</p>
       </div>
       ============================================================ */

       .elementor-element.elementor-element-349a869 a.theme-btn.style-2.wow.fadeInUp {
        display: none;
      }

      .prod_pg_img .woocommerce-product-gallery__image img {
        object-fit: cover !important;
        height: 355px !important;
      }

    /* ============================================================
       5. WOOLENTOR "ADD TO BASKET" BUTTONS — match header .theme-btn
       ============================================================ */

    .woolentor-editorial-list-card a.woolentor-cart-btn,
    .woolentor-editorial-grid-card a.woolentor-cart-btn {
      position: relative;
      display: inline-block;
      background: var(--nova-gradient) !important;
      background-size: 150% 150% !important;
      background-position: 0% 50% !important;
      color: var(--nova-white) !important;
      font-size: 16px;
      font-weight: 700;
      height: 52px;
      line-height: 52px;
      padding: 0 30px !important;
      border: none !important;
      border-radius: 100px !important;
      text-transform: uppercase;
      letter-spacing: 0.02em;
      overflow: hidden;
      z-index: 1;
      transition: all 0.5s linear;
      /* box-shadow: var(--nova-shadow-md); */
      text-decoration: none;
      text-align: center;
    }
    
    .woolentor-product-grid-editorial.list-aspect-4-3 .woolentor-editorial-list-card .woolentor-product-image{
      height: auto !important;
    }

    .woolentor-editorial-list-card a.woolentor-cart-btn::before,
    .woolentor-editorial-grid-card a.woolentor-cart-btn::before {
      position: absolute;
      content: "";
      background: var(--nova-white);
      width: 120%;
      height: 0;
      padding-bottom: 120%;
      top: -110%;
      left: -10%;
      border-radius: 50%;
      transform: translate3d(0, 68%, 0) scale3d(0, 0, 0);
      z-index: -1;
    }

    .woolentor-editorial-list-card a.woolentor-cart-btn::after,
    .woolentor-editorial-grid-card a.woolentor-cart-btn::after {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      content: "";
      background: var(--nova-white);
      transform: translate3d(0, -100%, 0);
      transition: transform 0.4s cubic-bezier(0.1, 0, 0.3, 1);
      z-index: -1;
      border-radius: 100px;
    }

    .woolentor-editorial-list-card a.woolentor-cart-btn:hover,
    .woolentor-editorial-grid-card a.woolentor-cart-btn:hover {
      color: var(--nova-navy) !important;
      background: var(--nova-gradient) !important;
      box-shadow: var(--nova-shadow-lg);
      transform: none !important;
    }

    .woolentor-editorial-list-card a.woolentor-cart-btn:hover::before,
    .woolentor-editorial-grid-card a.woolentor-cart-btn:hover::before {
      transform: translate3d(0, 0, 0) scale3d(1, 1, 1);
      transition: transform 0.4s cubic-bezier(0.1, 0, 0.3, 1);
    }

    .woolentor-editorial-list-card a.woolentor-cart-btn:hover::after,
    .woolentor-editorial-grid-card a.woolentor-cart-btn:hover::after {
      transform: translate3d(0, 0, 0);
      transition-duration: 0.05s;
      transition-delay: 0.4s;
      transition-timing-function: linear;
    }

    /* Loading / added states keep gradient pill shape */
    a.woolentor-cart-btn.button.add_to_cart_button.ajax_add_to_cart.loading,
    a.woolentor-cart-btn.button.add_to_cart_button.ajax_add_to_cart.added {
      border-radius: 100px !important;
    }

    /* ============================================================
       6. WOOLENTOR SIDE MINI CART — Nova theme overrides
       ============================================================ */

    /* Panel container */
    .woolentor_cart_content_container {
      background: var(--nova-navy) !important;
      border-right: 1px solid rgba(255, 138, 61, 0.15);
      box-shadow: 4px 0 30px rgba(0, 0, 0, 0.6);
    }

    /* Header bar */
    .woolentor_mini_cart_header {
      background: var(--nova-navy-soft);
      border-bottom: 1px solid rgba(255, 138, 61, 0.2) !important;
      padding: 18px 15px !important;
    }
    .woolentor_mini_cart_header h2 {
      color: var(--nova-white) !important;
      font-family: 'Aquire', sans-serif !important;
      font-size: 18px !important;
      letter-spacing: 0.04em;
      background: var(--nova-gradient);
      -webkit-background-clip: text;
              background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    /* Close button */
    .woolentor_mini_cart_close {
      color: var(--nova-cyan) !important;
    }
    .woolentor_mini_cart_close:hover {
      color: var(--nova-blue-light) !important;
    }

    /* Cart items list */
    .woolentor_mini_cart_content ul li {
      border-bottom: 1px solid rgba(255, 255, 255, 0.06);
      padding-bottom: 12px;
    }

    /* Product title */
    .woolentor_mini_cart_content ul li .woolentor_mini_title h3,
    .woolentor_mini_cart_content ul li .woolentor_mini_title h3 a {
      color: var(--nova-white) !important;
      font-family: 'Aquire', sans-serif !important;
      font-size: 14px !important;
      font-weight: 400;
    }
    .woolentor_mini_cart_content ul li .woolentor_mini_title h3 a:hover {
      color: var(--nova-blue-light) !important;
    }

    /* Price / quantity text */
    .woolentor_mini_cart_content ul li .woolentor_cart_single_content,
    .woolentor_mini_cart_content ul li .woolentor_cart_single_content .woocommerce-Price-amount,
    .woolentor_mini_cart_content ul li .woolentor_cart_single_content .quantity {
      color: rgba(255, 255, 255, 0.7) !important;
    }
    .woolentor_mini_cart_content ul li .woolentor_cart_single_content .woocommerce-Price-amount {
      color: var(--nova-blue-light) !important;
      font-weight: 600;
    }

    /* Remove button */
    .woolentor_mini_cart_content ul li .woolentor_del {
      background: var(--nova-navy-soft) !important;
      color: var(--nova-cyan) !important;
      border-radius: 4px;
    }
    .woolentor_mini_cart_content ul li a.woolentor_del.remove:hover {
      background: var(--nova-blue-deep) !important;
      color: var(--nova-white) !important;
    }

    /* Product thumbnail */
    .woolentor_mini_cart_content ul li .woolentor_mini_cart_img img {
      border-radius: 8px;
      border: 1px solid rgba(255, 138, 61, 0.15);
    }

    /* Footer / subtotal area */
    .woolentor_mini_cart_footer {
      border-top: 1px solid rgba(255, 138, 61, 0.2) !important;
      background: var(--nova-navy-soft);
      padding: 20px 0 25px 0 !important;
    }
    .woolentor_sub_total {
      color: var(--nova-white) !important;
      font-weight: 600;
      font-size: 16px !important;
    }
    .woolentor_sub_total .woocommerce-Price-amount {
      color: var(--nova-blue-light) !important;
    }

    /* Buttons: View Cart & Checkout */
    .woolentor_button_area a {
      background: var(--nova-navy) !important;
      color: var(--nova-white) !important;
      border: 1px solid rgba(255, 138, 61, 0.3);
      border-radius: 6px;
      font-weight: 600;
      font-size: 13px;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      transition: all var(--nova-duration) var(--nova-ease) !important;
    }
    .woolentor_button_area a:hover {
      color: var(--nova-white) !important;
      border-color: transparent;
    }
    .woolentor_button_area a::before {
      background: var(--nova-gradient) !important;
      border-radius: 6px;
    }

    /* Floating cart icon button */
    .woolentor_mini_cart_icon_area {
      background: var(--nova-navy) !important;
      border: 1px solid rgba(255, 138, 61, 0.3) !important;
      box-shadow: var(--nova-shadow-md);
    }
    .woolentor_mini_cart_icon_area:hover {
      box-shadow: var(--nova-shadow-lg);
      border-color: var(--nova-blue-light) !important;
    }
    .woolentor_mini_cart_icon {
      color: var(--nova-blue-light) !important;
    }
    .woolentor_mini_cart_counter {
      background: var(--nova-gradient) !important;
      color: var(--nova-white) !important;
      font-weight: 700;
    }

    /* Empty cart message */
    .woolentor_empty_cart_body {
      color: rgba(255, 255, 255, 0.5) !important;
    }

    /* Overlay backdrop */
    body.woolentor_mini_cart_open .woolentor_body_opacity {
      background: var(--nova-navy) !important;
      opacity: 0.85 !important;
    }

    /* ── Product Grid Filter Bar ── */
    .woolentor-product-filters.woolentor-style-one {
      background: var(--nova-gradient) !important;
      color: #fff !important;
      padding: 7px !important;
    }
    .woolentor-product-filters.woolentor-style-one .woolentor-filter-count,
    .woolentor-product-filters.woolentor-style-one .woolentor-view-controls,
    .woolentor-product-filters.woolentor-style-one .woocommerce-ordering select.orderby {
      color: #fff !important;
    }
    .woolentor-product-filters.woolentor-style-one .woocommerce-ordering select.orderby {
      border-color: rgba(255, 255, 255, 0.4) !important;
      background-color: transparent !important;
    }
    .woolentor-product-filters.woolentor-style-one .woolentor-layout-btn.woolentor-active,
    .woolentor-product-filters.woolentor-style-one .woolentor-layout-btn:hover {
      background: var(--nova-blue-light) !important;
    }

    /* ── Single Product Thumbnail – corner clip ── */
    .prod_pg_img .woocommerce-product-gallery__image img {
      /* clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%, 0 15%); */
      border-radius: 30px;
    }

    /* ── Video button ripple color ── */
    .ripple::before,
    .ripple::after {
      box-shadow: 0 0 0 0 rgba(255, 138, 61, 0.5) !important;
    }

    /* ── Hero slider arrow icons ── */
    .hero-3 .array-btn .array-next svg path,
    .hero-3 .array-btn .array-prev svg path {
      fill: var(--nova-blue-light) !important;
    }

    /* ── Counter box icons ── */
    .counter_box .feature-record-item .icon img {
      max-width: 70px;
      margin-left: 30px;
    }
