﻿/*
Theme Name: Notes & Roots
Theme URI: https://notesnroots.com
Author: Notes & Roots Atelier
Author URI: https://notesnroots.com
Description: Bespoke Luxury Fragrance & Scalp Care WooCommerce Theme for Notes & Roots Atelier Pakistan. Features mouse-hover image swapping, interactive category filtering, animated badges, and WhatsApp Concierge ordering.
Version: 2.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
Text Domain: notes-roots
*/

:root {
  --nr-bg: #080808;
  --nr-dark: #0E0E0E;
  --nr-surface: #141414;
  --nr-card: #171717;
  --nr-card-hover: #1E1E1E;
  --nr-gold: #C9A86A;
  --nr-gold-light: #E8D5A3;
  --nr-gold-dark: #A37F3E;
  --nr-gold-glow: rgba(201, 168, 106, 0.25);
  --nr-text: #FFFFFF;
  --nr-text-muted: rgba(255, 255, 255, 0.6);
  --nr-text-dim: rgba(255, 255, 255, 0.4);
  --nr-border: rgba(255, 255, 255, 0.08);
  --nr-border-gold: rgba(201, 168, 106, 0.35);
  --nr-font-serif: 'Playfair Display', Georgia, serif;
  --nr-font-sans: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --nr-font-accent: 'Cinzel', serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: var(--nr-bg);
  color: var(--nr-text);
  font-family: var(--nr-font-sans);
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s ease;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Container */
.nr-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 25px;
}

@media (min-width: 768px) {
  .nr-container {
    padding: 0 45px;
  }
}

/* ==========================================================================
   TOP ANNOUNCEMENT BAR & MARQUEE
   ========================================================================== */
.nr-announcement-bar {
  background: #0A0A0A;
  border-bottom: 1px solid var(--nr-border);
  padding: 8px 15px;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--nr-text-muted);
  text-align: center;
  position: relative;
  z-index: 101;
}

.nr-announcement-bar a {
  color: var(--nr-gold);
  font-weight: 600;
  margin-left: 5px;
}

.nr-announcement-bar a:hover {
  color: var(--nr-gold-light);
  text-decoration: underline;
}

/* ==========================================================================
   HEADER & STICKY NAVIGATION
   ========================================================================== */
.nr-site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8, 8, 8, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--nr-border);
  transition: all 0.3s ease;
}

.nr-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 85px;
}

/* Nav links */
.nr-nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nr-nav-link {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--nr-text-muted);
  position: relative;
  padding: 8px 0;
}

.nr-nav-link:hover,
.nr-nav-link.active {
  color: var(--nr-gold);
}

.nr-nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--nr-gold);
  transition: width 0.3s ease;
}

.nr-nav-link:hover::after,
.nr-nav-link.active::after {
  width: 100%;
}

/* Center Brand Logo */
.nr-brand-logo-wrap {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.nr-brand-logo-img {
  height: 48px;
  width: auto;
  object-contain: contain;
  transition: transform 0.4s ease;
}

.nr-brand-logo-wrap:hover .nr-brand-logo-img {
  transform: scale(1.05);
}

.nr-brand-tagline {
  font-size: 8px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--nr-text-dim);
  margin-top: 3px;
  font-weight: 500;
}

/* Header Utilities */
.nr-header-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

.nr-action-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--nr-border);
  background: var(--nr-surface);
  color: var(--nr-text-muted);
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
}

.nr-action-btn:hover {
  border-color: var(--nr-gold);
  color: var(--nr-gold);
  transform: translateY(-2px);
}

.nr-cart-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--nr-gold);
  color: #000;
  font-size: 10px;
  font-weight: 700;
  min-width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}

.nr-wa-btn-header {
  display: none;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 30px;
  border: 1px solid #25D366;
  background: rgba(37, 211, 102, 0.1);
  color: #25D366;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.nr-wa-btn-header:hover {
  background: #25D366;
  color: #000;
}

@media (min-width: 1024px) {
  .nr-wa-btn-header {
    display: inline-flex;
  }
}

.nr-mobile-toggle {
  display: none;
  background: transparent;
  border: none;
  color: #fff;
  cursor: pointer;
  font-size: 22px;
}

@media (max-width: 1023px) {
  .nr-nav-links {
    display: none;
  }
  .nr-mobile-toggle {
    display: block;
  }
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.nr-hero-section {
  position: relative;
  min-height: 82vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: radial-gradient(circle at center, #191612 0%, #080808 75%);
  border-bottom: 1px solid var(--nr-border);
  padding: 80px 20px;
  text-align: center;
}

.nr-hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1592945403244-b3fbafd7f539?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
  opacity: 0.18;
  filter: grayscale(40%);
  mix-blend-mode: luminosity;
}

.nr-hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}

.nr-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 18px;
  border-radius: 30px;
  border: 1px solid var(--nr-border-gold);
  background: rgba(201, 168, 106, 0.08);
  color: var(--nr-gold);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 25px;
}

.nr-hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--nr-gold);
  box-shadow: 0 0 10px var(--nr-gold);
}

.nr-hero-title {
  font-family: var(--nr-font-serif);
  font-size: clamp(2.5rem, 6.5vw, 5.2rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.5px;
  margin-bottom: 25px;
  color: #FFFFFF;
}

.nr-hero-title em {
  font-style: italic;
  color: var(--nr-gold);
  font-weight: 300;
}

.nr-hero-desc {
  font-size: clamp(14px, 1.8vw, 17px);
  color: var(--nr-text-muted);
  max-width: 680px;
  margin: 0 auto 40px;
  font-weight: 300;
  line-height: 1.8;
}

.nr-hero-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.nr-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 36px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  border-radius: 0px;
  cursor: pointer;
  transition: all 0.4s ease;
  position: relative;
}

.nr-btn-gold {
  background: var(--nr-gold);
  color: #080808;
  border: 1px solid var(--nr-gold);
}

.nr-btn-gold:hover {
  background: transparent;
  color: var(--nr-gold);
  box-shadow: 0 0 25px var(--nr-gold-glow);
}

.nr-btn-outline {
  background: transparent;
  color: #FFFFFF;
  border: 1px solid var(--nr-border);
}

.nr-btn-outline:hover {
  border-color: var(--nr-gold);
  color: var(--nr-gold);
}

/* ==========================================================================
   CATEGORY PORTALS ("THE DUAL PILLARS")
   ========================================================================== */
.nr-portals-section {
  display: grid;
  grid-template-columns: 1fr;
  border-bottom: 1px solid var(--nr-border);
  background: var(--nr-dark);
}

@media (min-width: 768px) {
  .nr-portals-section {
    grid-template-columns: 1fr 1fr;
  }
}

.nr-portal-card {
  position: relative;
  min-height: 380px;
  padding: 50px 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  border-bottom: 1px solid var(--nr-border);
  background: var(--nr-surface);
  transition: all 0.5s ease;
}

@media (min-width: 768px) {
  .nr-portal-card:first-child {
    border-right: 1px solid var(--nr-border);
    border-bottom: none;
  }
}

.nr-portal-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.25;
  transition: transform 0.8s ease, opacity 0.8s ease;
}

.nr-portal-card:hover .nr-portal-bg {
  transform: scale(1.08);
  opacity: 0.38;
}

.nr-portal-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(14, 14, 14, 0.95) 15%, rgba(14, 14, 14, 0.4) 60%, rgba(14, 14, 14, 0.8) 100%);
}

.nr-portal-content {
  position: relative;
  z-index: 2;
}

.nr-portal-tag {
  font-size: 10px;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--nr-gold);
  font-weight: 600;
  margin-bottom: 12px;
}

.nr-portal-title {
  font-family: var(--nr-font-serif);
  font-size: 32px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 10px;
}

.nr-portal-desc {
  color: var(--nr-text-muted);
  font-size: 14px;
  max-width: 420px;
  font-weight: 300;
  margin-bottom: 20px;
  line-height: 1.7;
}

.nr-portal-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--nr-gold);
  transition: all 0.3s ease;
}

.nr-portal-card:hover .nr-portal-link {
  color: #fff;
  transform: translateX(6px);
}

/* ==========================================================================
   INTERACTIVE CATEGORY FILTER TABS
   ========================================================================== */
.nr-filter-section {
  padding: 90px 0 30px;
  text-align: center;
}

.nr-section-header {
  margin-bottom: 45px;
  text-align: center;
}

.nr-section-sub {
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--nr-gold);
  font-weight: 600;
  margin-bottom: 12px;
  display: block;
}

.nr-section-title {
  font-family: var(--nr-font-serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  color: #fff;
  margin-bottom: 15px;
}

.nr-filter-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.nr-filter-btn {
  background: var(--nr-surface);
  border: 1px solid var(--nr-border);
  color: var(--nr-text-muted);
  padding: 10px 24px;
  border-radius: 30px;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.nr-filter-btn:hover {
  border-color: var(--nr-gold);
  color: #fff;
}

.nr-filter-btn.active {
  background: var(--nr-gold);
  color: #080808;
  border-color: var(--nr-gold);
  font-weight: 600;
  box-shadow: 0 4px 20px var(--nr-gold-glow);
}

/* ==========================================================================
   PRODUCT GRID & HOVER IMAGE FLIP
   ========================================================================== */
.nr-products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

@media (min-width: 1024px) {
  .nr-products-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.nr-product-card {
  background: var(--nr-card);
  border: 1px solid var(--nr-border);
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.4s ease;
  position: relative;
}

.nr-product-card:hover {
  border-color: var(--nr-border-gold);
  background: var(--nr-card-hover);
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
}

/* Media Container with 4:5 Aspect Ratio */
.nr-card-media {
  position: relative;
  aspect-ratio: 4 / 5;
  background: #111;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Primary Image */
.nr-card-img-primary {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.6s ease, transform 0.8s ease;
  opacity: 1;
}

/* Hover Swap Image */
.nr-card-img-hover {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.6s ease, transform 0.8s ease;
  opacity: 0;
  transform: scale(1.05);
}

.nr-product-card:hover .nr-card-img-hover {
  opacity: 1;
  transform: scale(1.08);
}

.nr-product-card:hover .nr-card-img-primary {
  opacity: 0;
}

/* Top Badges */
.nr-card-badge-wrap {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.nr-badge-category {
  background: var(--nr-gold);
  color: #080808;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 2px;
}

/* Animated GIF / Shimmer Badge for Top Perfumes */
.nr-badge-animated {
  background: linear-gradient(135deg, #C9A86A 0%, #FFF2CC 50%, #C9A86A 100%);
  background-size: 200% 200%;
  animation: nrShimmer 2.5s infinite linear;
  color: #000;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 2px;
  box-shadow: 0 0 10px rgba(201, 168, 106, 0.6);
}

@keyframes nrShimmer {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.nr-badge-sale {
  background: #B33939;
  color: #fff;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 2px;
}

/* Card Content */
.nr-card-body {
  padding: 22px 18px 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.nr-card-category-text {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--nr-gold);
  margin-bottom: 6px;
  font-weight: 600;
}

.nr-card-title {
  font-family: var(--nr-font-serif);
  font-size: 18px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.35;
  transition: color 0.3s ease;
}

.nr-product-card:hover .nr-card-title {
  color: var(--nr-gold);
}

.nr-card-notes-preview {
  font-size: 11px;
  color: var(--nr-text-dim);
  font-style: italic;
  margin-bottom: 14px;
  line-height: 1.5;
  min-height: 33px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.nr-card-price-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-top: auto;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--nr-border);
}

.nr-card-regular-price {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  text-decoration: line-through;
}

.nr-card-sale-price {
  font-size: 18px;
  font-weight: 700;
  color: var(--nr-gold);
}

/* Card Actions */
.nr-card-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding-top: 14px;
}

.nr-card-btn-bag {
  background: var(--nr-surface);
  border: 1px solid var(--nr-border);
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 10px 8px;
  border-radius: 2px;
  cursor: pointer;
  text-align: center;
  transition: all 0.3s ease;
}

.nr-card-btn-bag:hover {
  background: var(--nr-gold);
  border-color: var(--nr-gold);
  color: #080808;
}

.nr-card-btn-wa {
  background: rgba(37, 211, 102, 0.12);
  border: 1px solid rgba(37, 211, 102, 0.4);
  color: #25D366;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 10px 8px;
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  text-align: center;
  transition: all 0.3s ease;
}

.nr-card-btn-wa:hover {
  background: #25D366;
  color: #000;
  border-color: #25D366;
}

/* ==========================================================================
   SPOTLIGHT SECTION ("BOTANICAL SANCTUM")
   ========================================================================== */
.nr-spotlight-section {
  padding: 100px 0;
  background: #0B0E0D;
  border-top: 1px solid var(--nr-border);
  border-bottom: 1px solid var(--nr-border);
  position: relative;
  overflow: hidden;
}

.nr-spotlight-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
  align-items: center;
}

@media (min-width: 992px) {
  .nr-spotlight-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.nr-spotlight-img-wrap {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--nr-border-gold);
  box-shadow: 0 25px 50px rgba(0,0,0,0.8);
}

.nr-spotlight-content {
  padding-left: 0;
}

@media (min-width: 992px) {
  .nr-spotlight-content {
    padding-left: 20px;
  }
}

.nr-spotlight-ingredients-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin: 30px 0;
}

.nr-ingredient-item {
  background: var(--nr-surface);
  border: 1px solid var(--nr-border);
  padding: 14px 16px;
  border-radius: 4px;
}

.nr-ingredient-title {
  font-size: 12px;
  color: var(--nr-gold);
  font-weight: 600;
  margin-bottom: 4px;
}

.nr-ingredient-sub {
  font-size: 11px;
  color: var(--nr-text-dim);
}

/* ==========================================================================
   FEATURES / TRUST BANNER
   ========================================================================== */
.nr-trust-section {
  padding: 70px 0;
  border-bottom: 1px solid var(--nr-border);
  background: var(--nr-dark);
}

.nr-trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

@media (min-width: 1024px) {
  .nr-trust-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.nr-trust-item {
  text-align: center;
  padding: 20px;
}

.nr-trust-icon {
  font-size: 32px;
  color: var(--nr-gold);
  margin-bottom: 15px;
}

.nr-trust-title {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 6px;
}

.nr-trust-desc {
  font-size: 12px;
  color: var(--nr-text-dim);
}

/* ==========================================================================
   WHATSAPP VIP BANNER
   ========================================================================== */
.nr-wa-banner-section {
  padding: 80px 20px;
  background: radial-gradient(circle at center, #152219 0%, #080808 80%);
  text-align: center;
  border-bottom: 1px solid var(--nr-border);
}

.nr-wa-banner-title {
  font-family: var(--nr-font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  color: #fff;
  margin-bottom: 15px;
}

.nr-wa-banner-desc {
  font-size: 16px;
  color: var(--nr-text-muted);
  max-width: 600px;
  margin: 0 auto 30px;
}

.nr-wa-big-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 45px;
  border-radius: 40px;
  background: #25D366;
  color: #000;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.35);
  transition: all 0.3s ease;
}

.nr-wa-big-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(37, 211, 102, 0.5);
  background: #2BF075;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.nr-site-footer {
  background: #050505;
  border-top: 1px solid var(--nr-border);
  padding: 80px 0 30px;
}

.nr-footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

@media (min-width: 768px) {
  .nr-footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}

.nr-footer-col h4 {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--nr-gold);
  margin-bottom: 22px;
  font-weight: 600;
}

.nr-footer-links {
  list-style: none;
}

.nr-footer-links li {
  margin-bottom: 12px;
}

.nr-footer-links a {
  font-size: 13px;
  color: var(--nr-text-dim);
  transition: color 0.3s ease;
}

.nr-footer-links a:hover {
  color: var(--nr-gold);
  padding-left: 5px;
}

.nr-footer-bottom {
  padding-top: 30px;
  border-top: 1px solid var(--nr-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
  font-size: 11px;
  color: var(--nr-text-dim);
}

/* ==========================================================================
   FLOATING WHATSAPP BUTTON
   ========================================================================== */
.nr-float-wa {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 999;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.45);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.nr-float-wa:hover {
  transform: scale(1.12);
  box-shadow: 0 15px 35px rgba(37, 211, 102, 0.6);
}

.nr-float-wa svg {
  width: 32px;
  height: 32px;
  fill: #fff;
}

/* ==========================================================================
   WOOCOMMERCE OVERRIDES (Shop, Cart, Checkout, Single)
   ========================================================================== */
.woocommerce .woocommerce-breadcrumb {
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--nr-text-dim);
  margin-bottom: 30px;
}

.woocommerce .woocommerce-breadcrumb a {
  color: var(--nr-gold);
}

.woocommerce-products-header__title {
  font-family: var(--nr-font-serif);
  font-size: 38px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 30px;
}

/* Cart & Checkout */
.woocommerce table.shop_table {
  background: var(--nr-card) !important;
  border: 1px solid var(--nr-border) !important;
  border-radius: 4px;
  color: #fff;
}

.woocommerce table.shop_table th {
  color: var(--nr-gold) !important;
  font-family: var(--nr-font-sans);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 11px;
}

.woocommerce table.shop_table td {
  border-top: 1px solid var(--nr-border) !important;
}

.woocommerce #respond input#submit.alt,
.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt {
  background-color: var(--nr-gold) !important;
  color: #080808 !important;
  font-weight: 700 !important;
  letter-spacing: 2px !important;
  text-transform: uppercase !important;
  border-radius: 0 !important;
  padding: 15px 30px !important;
}

.woocommerce #respond input#submit.alt:hover,
.woocommerce a.button.alt:hover,
.woocommerce button.button.alt:hover,
.woocommerce input.button.alt:hover {
  background-color: var(--nr-gold-light) !important;
  color: #000 !important;
}

.woocommerce-info,
.woocommerce-message {
  background-color: var(--nr-surface) !important;
  color: #fff !important;
  border-top-color: var(--nr-gold) !important;
}
