/* ================================================
    PURE BAJAR — Modern eCommerce Design System
    v2.0 | Bootstrap 5 Based
    ================================================ */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
  /* Brand Colors */
  --pb-primary: #004d33;
  --pb-primary-rgb: 0, 77, 51;
  --pb-secondary: #0a1931;
  --pb-accent: #f97316;
  
  /* Semantic Colors */
  --pb-success: #22c55e;
  --pb-danger: #ef4444;
  --pb-warning: #f59e0b;
  --pb-info: #06b6d4;
  
  /* Neutral Palette */
    --pb-bg: #fdfdfd;
    --pb-border: #eee;
    --pb-text: #2d3436;

    /* Premium Organic Theme */
    --pb-organic-green: #004d33;
    --pb-organic-green-rgb: 0, 77, 51;
    --pb-organic-sage: #ecfdf5;
    --pb-organic-cream: #fffbeb;
    --pb-organic-text: #1a2f24;
    --pb-serif: "Playfair Display", Georgia, serif;
}

/* Typography Extensions */
.pb-serif { font-family: var(--pb-serif); }
.pb-premium-title { 
    font-family: var(--pb-serif); 
    color: var(--pb-organic-green); 
    font-weight: 800;
    letter-spacing: -0.5px;
    font-size: 2.5rem; /* Reduced from 3.5rem */
}

/* Premium Product Page Specifics */
.pb-product-hero-wrap {
    padding-top: 2rem;
    padding-bottom: 4rem;
}

.pb-product-main-img-card {
    border-radius: 2rem;
    overflow: hidden;
    position: relative;
    background: #fff;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.pb-product-main-img-card:hover {
    transform: translateY(-5px);
}

.pb-quality-overlay {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    padding: 1rem 1.5rem;
    border-radius: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.pb-quality-icon {
    width: 40px;
    height: 40px;
    background: var(--pb-organic-green);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pb-feature-tag {
    background: var(--pb-organic-sage);
    color: var(--pb-organic-green);
    font-weight: 600;
    padding: 0.75rem 1.25rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.pb-qty-selector-premium {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 2rem;
    display: flex;
    align-items: center;
    padding: 0.25rem;
    width: fit-content;
}

.pb-qty-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: #fff;
    color: var(--pb-organic-green);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    transition: all 0.2s;
}

.pb-qty-btn:hover { background: var(--pb-organic-green); color: #fff; }

.pb-qty-input-premium {
    width: 50px;
    border: none;
    background: transparent;
    text-align: center;
    font-weight: 700;
    color: var(--pb-organic-text);
}

.pb-add-to-cart-premium {
    background: var(--pb-organic-green);
    color: #fff;
    border: none;
    padding: 1rem 3rem;
    border-radius: 2rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s;
}

.pb-add-to-cart-premium:hover {
    background: #004d33;
    transform: scale(1.02);
    box-shadow: 0 10px 25px rgba(0, 100, 66, 0.2);
    color: #fff;
}

.pb-quick-add-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--pb-organic-green);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 10px rgba(0, 100, 66, 0.15);
}

.pb-quick-add-btn:hover {
    transform: scale(1.1) rotate(90deg);
    background: #004d33;
    box-shadow: 0 6px 15px rgba(0, 100, 66, 0.25);
    color: #fff;
}

.pb-wishlist-btn-premium {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    border: 1px solid #e2e8f0;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    transition: all 0.3s;
}

.pb-wishlist-btn-premium:hover {
    color: #ef4444;
    border-color: #fecaca;
    background: #fef2f2;
}

/* Wisdom Sections */
.pb-wisdom-card {
    border-radius: 2rem;
    padding: 3rem;
    height: 100%;
}

.pb-wisdom-nutritional { background: #f0f9ff; border: 1px solid #e0f2fe; }
.pb-wisdom-process { background: #f0fdf4; border: 1px solid #dcfce7; }

/* Reviews */
.pb-review-item {
    padding-bottom: 2.5rem;
    margin-bottom: 2.5rem;
    border-bottom: 1px solid #f1f5f9;
}

.pb-review-stars { color: #f59e0b; }

/* Premium Auth Layout */
.pb-auth-container {
    min-height: calc(100vh - 400px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 0;
}

.pb-auth-card {
    background: #fff;
    border-radius: 2rem;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.08);
    display: flex;
    width: 100%;
    max-width: 1100px;
    min-height: 700px;
}

.pb-auth-visual {
    width: 50%;
    background: var(--pb-organic-green);
    color: #fff;
    padding: 4rem;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
}

.pb-auth-visual-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
    mix-blend-mode: multiply;
}

.pb-auth-content {
    position: relative;
    z-index: 2;
}

.pb-auth-form-wrap {
    width: 50%;
    padding: 4rem;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.pb-auth-input {
    background: #f1f5f9;
    border: 1px solid transparent;
    border-radius: 1rem;
    padding: 1rem 1.25rem;
    transition: all 0.3s;
    font-weight: 500;
}

.pb-auth-input:focus {
    background: #fff;
    border-color: var(--pb-organic-green);
    box-shadow: 0 0 0 4px rgba(0, 100, 66, 0.05);
}

.pb-social-btn {
    border: 1px solid #e2e8f0;
    border-radius: 1rem;
    padding: 0.75rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-weight: 600;
    color: #1e293b;
    transition: all 0.3s;
    background: #fff;
}

.pb-social-btn:hover {
    background: #f8fafc;
    border-color: #cbd5e1;
    transform: translateY(-2px);
}

@media (max-width: 992px) {
    .pb-auth-card { flex-direction: column; }
    .pb-auth-visual { width: 100%; min-height: 300px; padding: 2rem; }
    .pb-auth-form-wrap { width: 100%; padding: 2rem; }
}

/* Dual Auth Form Components */
.pb-auth-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.pb-auth-header-icon {
    width: 60px;
    height: 60px;
    background: #f97316; /* Orange icon bg from image */
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    box-shadow: 0 10px 20px rgba(249, 115, 22, 0.2);
}

.pb-auth-dual-split {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.pb-auth-panel {
    flex: 1;
    background: #f8fafc;
    border-radius: 1.5rem;
    padding: 2.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.pb-auth-separator {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #cbd5e1;
    height: 100%;
}

.pb-auth-separator::before,
.pb-auth-separator::after {
    content: '';
    width: 1px;
    height: 120px;
    background: #e2e8f0;
}

.pb-auth-separator-text {
    width: 40px;
    height: 40px;
    border: 1px solid #e2e8f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    background: #fff;
    margin: 1rem 0;
    color: #94a3b8;
}

.pb-btn-otp {
    background: #f97316;
    color: #fff;
    font-weight: 600;
    border-radius: 0.75rem;
    padding: 0.8rem;
    border: none;
    transition: all 0.3s;
}

.pb-btn-otp:hover {
    background: #ea580c;
    transform: translateY(-2px);
}

/* Ghorer Bazar Style Header Redesign */
.pb-header-action-group {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.pb-header-action-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #475569;
    transition: all 0.3s;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    gap: 0.25rem;
}

.pb-header-action-item i {
    font-size: 1.25rem;
    color: var(--pb-primary);
}

.pb-header-action-item:hover {
    color: var(--pb-primary);
    transform: translateY(-2px);
}

.pb-nav-tier3-dark {
    background: #004d33; /* Dark Forest Green matching the theme but looking premium */
    min-height: 48px;
    display: flex;
    align-items: center;
    overflow: hidden; /* Ensure nothing jumps out */
}

.pb-nav-tier3-dark .navbar-nav {
    flex-wrap: nowrap; /* Force one line */
    width: 100%;
}

.pb-nav-tier3-dark .nav-link {
    color: #fff;
    font-weight: 700;
    font-size: 0.72rem; /* Reduced for single line fit */
    padding: 0.75rem 1rem;
    letter-spacing: 0.3px;
    transition: background 0.2s;
    white-space: nowrap; /* Keep on one line */
    text-transform: uppercase;
}

.pb-nav-tier3-dark .nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Split Hero Grid */
.pb-hero-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.pb-hero-main-slider {
    border-radius: 0.5rem;
    overflow: hidden;
    height: 500px; /* Increased height for better presence and alignment */
}

.pb-hero-side-banners {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    height: 500px; /* Force sidebar to match slider height */
}

.pb-side-banner-item {
    border-radius: 0.5rem;
    overflow: hidden;
    flex: 1;
    position: relative;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.pb-side-banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Featured Categories Circle Style */
.pb-marquee-wrapper {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    padding: 1rem 0;
}

.pb-marquee-scroll {
    display: flex;
    width: max-content;
    animation: pbMarqueeLoop 30s linear infinite;
    gap: 2rem;
}

.pb-marquee-scroll:hover {
    animation-play-state: paused;
}

@keyframes pbMarqueeLoop {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.pb-cat-circle-card {
    text-align: center;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
    width: 120px;
    vertical-align: top;
}

.pb-cat-circle-img-wrap {
    width: 100px;
    height: 100px;
    background: #fff;
    border: 1px solid #eef2ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.75rem;
    transition: all 0.3s;
    padding: 0.25rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}

.pb-cat-circle-card:hover .pb-cat-circle-img-wrap {
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(15, 123, 101, 0.1);
    border-color: var(--pb-primary);
}

.pb-cat-circle-name {
    font-size: 0.85rem;
    font-weight: 700;
    color: #334155;
}

/* Section-specific Corner Rounding Refining */
.pb-section-responsive .rounded-4,
.pb-section-responsive .rounded-5 {
    border-radius: 0.65rem !important; /* Unified smaller rounding */
}

@media (max-width: 992px) {
    .pb-hero-grid { grid-template-columns: 1fr; }
    .pb-hero-side-banners { display: none; }
}

@media (max-width: 1200px) {
    .pb-auth-dual-split { flex-direction: column; gap: 2rem; }
    .pb-auth-separator { display: none; }
}
  
  /* Effects */
  --pb-card-shadow: 0 4px 20px -2px rgba(0, 0, 0, 0.05), 0 2px 10px -2px rgba(0, 0, 0, 0.03);
  --pb-card-shadow-hover: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --pb-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  
  /* Typography */
  --pb-font-main: 'Inter', sans-serif;
  --pb-font-serif: 'Outfit', sans-serif;
  
  /* Border Radius */
  --pb-radius-sm: 8px;
  --pb-radius: 12px;
  --pb-radius-lg: 16px;
 
  /* Footer Preservation */
  --pb-green-footer: #0F4A3C;
  --pb-gold-footer: #C88442;
}

/* ================================================
   3. MODERN FLASH SALE UI
   ================================================ */
.pb-flash-card-premium {
    background: rgba(255, 255, 255, 0.5) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.04) !important;
    z-index: 1;
}

.pb-flash-card-premium::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: rgba(var(--pb-primary-rgb), 0.03);
    border-radius: 50%;
    filter: blur(60px);
}

.pb-flash-badge-modern {
    background: #ef4444; /* Red */
    color: #fff;
    padding: 0.6rem 1.75rem;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.9rem;
    letter-spacing: 1.5px;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 10px 20px rgba(239, 68, 68, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.pb-flash-badge-modern i {
    color: #ffd700;
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

.pb-flash-badge-modern::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.3), transparent);
    transform: rotate(45deg);
    animation: pbFlashSweep 3s infinite;
}

@keyframes pbFlashSweep {
    0% { transform: translateX(-100%) rotate(45deg); }
    100% { transform: translateX(100%) rotate(45deg); }
}

.pb-timer-modern-wrap {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.pb-timer-unit-modern {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pb-timer-val-modern {
    background: #fff;
    width: 70px;
    height: 75px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 800;
    color: #1e293b;
    border-radius: 1rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid #f1f5f9;
    position: relative;
    z-index: 1;
}

.pb-timer-val-modern::after {
    content: '';
    position: absolute;
    bottom: 0px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #ef4444;
    border-radius: 0 0 1rem 1rem;
}

.pb-timer-unit-modern .small {
    margin-top: 0.6rem;
    text-transform: uppercase;
    font-size: 0.65rem;
    font-weight: 800;
    color: #64748b;
    letter-spacing: 1px;
}

.pb-timer-sep-modern {
    font-size: 1.5rem;
    font-weight: 800;
    color: #cbd5e1;
    margin-top: -1.75rem;
}

@keyframes pbPulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.9; }
    100% { transform: scale(1); opacity: 1; }
}

.pb-timer-sec-box {
    animation: pbPulse 1s infinite;
}

.pb-timer-sec-box .pb-timer-val-modern {
    background: #ef4444;
    color: #fff;
    border-color: #ef4444;
}

.pb-timer-sec-box .pb-timer-val-modern::after {
    display: none;
}

 
/* ================================================
   33. TIERED HEADER (iShop Style)
   ================================================ */
.pb-topbar-promo { background: rgba(var(--pb-primary-rgb), 0.1); color: var(--pb-primary); font-size: 0.85rem; padding: 0.6rem 0; font-weight: 600; border-bottom: 1px solid rgba(var(--pb-primary-rgb), 0.05); }
.pb-topbar-promo a { color: var(--pb-primary); text-decoration: none; opacity: 1; }
.pb-topbar-promo a:hover { opacity: 0.8; }
.pb-topbar-promo .dropdown-menu a { color: var(--pb-text) !important; opacity: 1; }
.pb-topbar-promo .dropdown-menu a:hover { color: var(--pb-primary) !important; background: var(--pb-bg-alt); }

.pb-header-main { background: #fff; padding: 0.85rem 0; border-bottom: 1px solid var(--pb-border); transition: padding 0.3s ease, box-shadow 0.3s ease; }
.pb-header-main.sticky { position: fixed; top: 0; left: 0; right: 0; z-index: 1040; padding: 0.4rem 0; background: rgba(255,255,255,0.98); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); box-shadow: 0 2px 20px rgba(0,0,0,0.08); transition: all 0.2s ease; }
@keyframes pbSlideDown { from { transform: translateY(-100%); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.pb-header-main.sticky img { height: 50px !important; }
.pb-header-main.sticky .pb-search-complex { border-width: 1px; }
.pb-header-main.sticky .small.text-muted { display: none !important; }
.pb-header-main.sticky .leading-tight .fw-bold { font-size: 0.8rem !important; }
.pb-search-modern { 
    display: flex; 
    align-items: center;
    background: rgba(248, 250, 252, 0.6) !important; 
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 50px !important; 
    border: 1px solid rgba(var(--pb-primary-rgb), 0.1) !important;
    transition: all 0.3s ease; 
    width: 100%; 
    padding: 2px 8px;
    box-shadow: inset 0 2px 5px rgba(0,0,0,0.02);
}
.pb-search-modern:focus-within { 
    background: #fff !important; 
    border-color: var(--pb-primary) !important; 
    box-shadow: 0 10px 30px rgba(var(--pb-primary-rgb), 0.08); 
}
.pb-search-modern-input { 
    width: 100%; 
    border: 0 !important; 
    background: transparent !important; 
    padding: 0.75rem 1.25rem !important; 
    font-size: 0.95rem !important; 
    color: #334155 !important;
    box-shadow: none !important;
    outline: none !important;
}
.pb-search-modern-btn { 
    background: transparent; 
    color: var(--pb-primary); 
    border: 0; 
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    transition: all 0.3s ease; 
    opacity: 0.6;
}
.pb-search-modern-btn:hover { opacity: 1; transform: scale(1.1); }
@media (max-width: 991px) {
  .pb-search-complex { border-radius: 12px; }
  .pb-search-cat { display: none; }
}

.pb-nav-tier3 { background: #fff; border-bottom: 1px solid var(--pb-border); }
.pb-nav-list-main { list-style: none; padding: 0; margin: 0; display: flex; gap: 2rem; justify-content: center; }
.pb-nav-link-main { display: block; padding: 0.75rem 0; color: var(--pb-text); font-weight: 700; text-transform: uppercase; letter-spacing: 1px; font-size: 0.85rem; text-decoration: none; transition: var(--pb-transition); border-bottom: 2px solid transparent; }
.pb-nav-link-main:hover { color: var(--pb-primary); border-color: var(--pb-primary); }

.pb-nav-tier3 a { transition: var(--pb-transition); }
.pb-nav-tier3 a:hover { color: var(--pb-primary) !important; transform: translateX(3px); }
.pb-nav-tier3 a:hover i { color: var(--pb-primary) !important; }
.pb-nav-tier3 a.text-danger:hover { color: #dc3545 !important; } /* Keep Hot Deals red on hover */
.row-cols-lg-7 > * {
  flex: 0 0 auto;
  width: 14.2857142857%;
}

@media (max-width: 1200px) {
  .row-cols-lg-7 > * { width: 20%; /* 5 items on medium screens */ }
}
@media (max-width: 992px) {
  .row-cols-lg-7 > * { width: 25%; /* 4 items on small screens */ }
}
@media (max-width: 768px) {
  .row-cols-lg-7 > * { width: 50%; /* 2 items on mobile */ }
}

.pb-hero-side-banners { display: flex; flex-direction: column; gap: 1.5rem; height: 500px; }
.pb-hero-side-banner { height: calc(50% - 0.75rem); border-radius: var(--pb-radius-lg); overflow: hidden; background: var(--pb-bg-alt); position: relative; }
.pb-hero-side-banner img { width: 100%; height: 100%; object-fit: cover; }

/* ------------------------------------------------
   2. BASE & TYPOGRAPHY
   ------------------------------------------------ */
*,*::before,*::after{box-sizing:border-box}
html{scroll-behavior:smooth}
body { 
  font-family: var(--pb-font-main); 
  background: var(--pb-bg); 
  color: var(--pb-text); 
  line-height: 1.6; 
  -webkit-font-smoothing: antialiased; 
  -moz-osx-font-smoothing: grayscale;
}
h1, h2, h3, h4, h5, h6, .pb-serif { 
  font-family: var(--pb-font-serif); 
  font-weight: 700; 
  color: var(--pb-secondary); 
  line-height: 1.25;
}
a { 
  color: var(--pb-primary); 
  text-decoration: none; 
  transition: var(--pb-transition); 
}
a:hover { color: var(--pb-primary-dark); }
img { max-width: 100%; height: auto; border-radius: inherit; }

/* Modern Utility Styles */
.pb-glass {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.pb-shadow { box-shadow: var(--pb-card-shadow); }
.pb-hover-lift { transition: var(--pb-transition); }
.pb-hover-lift:hover { transform: translateY(-5px); box-shadow: var(--pb-card-shadow-hover); }
.pb-glow:hover { box-shadow: 0 0 20px rgba(var(--pb-primary-rgb), 0.15); }

.pb-section-title {
  font-family: var(--pb-font-serif);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--pb-secondary);
  position: relative;
  display: inline-block;
}
.pb-section-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 40px;
  height: 4px;
  background: var(--pb-primary);
  border-radius: 2px;
}

/* ================================================
   38. FOOTER (Matches Top Primary Color)
   ================================================ */
.pb-footer { background: #004d33; color: rgba(255,255,255,0.85); padding: 80px 0 0; }
.pb-footer h1, .pb-footer h2, .pb-footer h3, .pb-footer h4, .pb-footer h5, .pb-footer h6 { color: #fff; }
.pb-footer a { color: rgba(255,255,255,0.7); text-decoration: none; transition: var(--pb-transition); }
.pb-footer a:hover { color: #fff; transform: translateX(5px); }
.pb-footer-social a { 
    display: inline-flex; align-items: center; justify-content: center; 
    background: transparent; color: #fff; margin-right: 20px; 
    font-size: 1.25rem; transition: var(--pb-transition); 
}
.pb-footer-social a:hover { opacity: 0.8; transform: translateY(-3px); color: #fff; }
.pb-footer-bottom { background: rgba(0,0,0,0.1); padding: 25px 0; border-top: 1px solid rgba(255,255,255,0.05); font-size: 0.85rem; color: rgba(255,255,255,0.6); }
.pb-footer-bottom a { color: #fff; opacity: 0.8; }
.pb-footer-bottom a:hover { opacity: 1; color: #fff; }

/* ================================================
   100. ADMIN DASHBOARD SYSTEM
   ================================================ */
.pb-admin-topbar { height: 70px; background: #fff; border-bottom: 1px solid #edf2f7; display: flex; align-items: center; justify-content: space-between; padding: 0 1.5rem; position: fixed; top: 0; left: 0; right: 0; z-index: 1045; }
.pb-admin-topbar-brand img { height: 40px; }
.pb-admin-topbar-actions { display: flex; gap: 1.5rem; align-items: center; }
.pb-admin-topbar-actions a { color: #4a5568; text-decoration: none; font-weight: 600; font-size: 0.9rem; }
.pb-admin-topbar-logout { color: #e53e3e !important; }

.pb-admin-wrapper { display: flex; padding-top: 70px; min-height: 100vh; background: #f8fafc; }

.pb-admin-sidebar { width: 260px; background: #1a202c; color: #fff; height: calc(100vh - 70px); position: fixed; left: 0; top: 70px; overflow-y: auto; transition: 0.3s ease; z-index: 1041; padding: 1rem 0; border-right: 1px solid rgba(255,255,255,0.05); }
.pb-admin-sidebar::-webkit-scrollbar { width: 4px; }
.pb-admin-sidebar::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.1); border-radius: 10px; }

.pb-admin-sidebar-search { 
    margin: 0 1.25rem 1.5rem; 
    background: rgba(255, 255, 255, 0.05); 
    backdrop-filter: blur(10px); 
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1); 
    border-radius: 12px; 
    display: flex; 
    align-items: center; 
    padding: 0 15px; 
    transition: all 0.3s ease;
}
.pb-admin-sidebar-search:focus-within { 
    background: rgba(255, 255, 255, 0.12); 
    border-color: rgba(255, 255, 255, 0.3); 
    transform: translateY(-1px);
}
.pb-admin-sidebar-search i { color: rgba(255, 255, 255, 0.4); font-size: 0.85rem; }
.pb-admin-sidebar-search input { 
    background: transparent; 
    border: 0; 
    color: #fff; 
    padding: 0.75rem 10px; 
    font-size: 0.85rem; 
    width: 100%; 
    outline: none; 
}
.pb-admin-sidebar-search input::placeholder { color: rgba(255, 255, 255, 0.3); }

.pb-admin-nav-item { display: flex; align-items: center; gap: 0.75rem; padding: 0.85rem 1.5rem; color: rgba(255,255,255,0.7) !important; text-decoration: none; font-size: 0.9rem; font-weight: 500; transition: all 0.2s; cursor: pointer; border-left: 3px solid transparent; }
.pb-admin-nav-item i { width: 20px; text-align: center; opacity: 0.8; }
.pb-admin-nav-item:hover, .pb-admin-nav-item.active { background: rgba(255,255,255,0.05); color: #fff !important; border-left-color: var(--pb-primary); }
.pb-admin-nav-item.active i { color: var(--pb-primary); opacity: 1; }

.pb-admin-nav-section { padding: 1.5rem 1.5rem 0.5rem; font-size: 0.7rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,0.3); }

.pb-admin-submenu { display: none; background: rgba(0,0,0,0.2); padding: 0.5rem 0; }
.pb-admin-submenu .pb-admin-nav-item { padding-left: 3rem; font-size: 0.85rem; }
.pb-admin-submenu.open { display: block; }
.pb-admin-nav-parent { position: relative; }
.pb-admin-chevron { margin-left: auto; font-size: 0.7rem; opacity: 0.5; transition: 0.3s; }
.pb-admin-nav-parent.open .pb-admin-chevron { transform: rotate(180deg); }

.pb-admin-main { flex: 1; margin-left: 260px; padding: 2rem; position: relative; }

@media (max-width: 991px) {
    .pb-admin-sidebar { transform: translateX(-100%); width: 280px; }
    .pb-admin-sidebar.show { transform: translateX(0); box-shadow: 20px 0 50px rgba(0,0,0,0.5); }
    .pb-admin-main { margin-left: 0; }
}

/* Admin Cards & Helpers */
.pb-admin-card { background: #fff; border-radius: 12px; border: 1px solid #edf2f7; box-shadow: 0 4px 6px -1px rgba(0,0,0,0.02); }
.pb-admin-btn { background: var(--pb-primary); color: #fff; border: 0; padding: 0.6rem 1.25rem; border-radius: 8px; font-weight: 600; display: inline-flex; align-items: center; gap: 0.5rem; transition: 0.3s; }
.pb-admin-btn:hover { opacity: 0.9; transform: translateY(-1px); }
.pb-admin-table th { background: #f8fafc; border-bottom: 2px solid #edf2f7; color: #4a5568; font-weight: 700; text-transform: uppercase; font-size: 0.75rem; vertical-align: middle; }
.pb-admin-table td { vertical-align: middle; color: #2d3748; font-size: 0.9rem; }
.pb-admin-table td { vertical-align: middle; color: #2d3748; font-size: 0.9rem; }

/* ================================================
   110. CHECKOUT PAGE REDESIGN (Reference based)
   ================================================ */
.pb-checkout-header h2 { font-family: 'Outfit', sans-serif; font-weight: 800; font-size: 2.5rem; color: var(--pb-secondary); margin-bottom: 0.5rem; }
.pb-checkout-header p { color: var(--pb-text-muted); font-size: 1rem; }

.pb-checkout-step-head { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem; }
.pb-checkout-step-num { 
    width: 32px; height: 32px; background: rgba(var(--pb-primary-rgb), 0.15); 
    color: var(--pb-primary); font-weight: 700; border-radius: 50%; 
    display: flex; align-items: center; justify-content: center; font-size: 0.9rem; 
}
.pb-checkout-step-title { font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 1.25rem; color: var(--pb-secondary); margin: 0; }

.pb-checkout-card { background: #fff; border-radius: 16px; border: 1px solid #edf2f7; box-shadow: 0 10px 30px rgba(0,0,0,0.02); padding: 2rem; margin-bottom: 2rem; }
.pb-checkout-input { 
    background: rgba(var(--pb-primary-rgb), 0.04) !important; border: 1px solid rgba(var(--pb-primary-rgb), 0.08) !important;
    border-radius: 12px !important; padding: 0.85rem 1.25rem !important; font-size: 0.95rem !important; 
    transition: var(--pb-transition);
}
.pb-checkout-input:focus { 
    background: #fff !important; border-color: var(--pb-primary) !important; 
    box-shadow: 0 0 0 4px rgba(var(--pb-primary-rgb), 0.05) !important; 
}

.pb-payment-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.pb-payment-item { position: relative; }
.pb-payment-label { 
    width: 100%; display: flex; align-items: center; gap: 1rem; padding: 1.25rem; 
    background: #fff; border: 2px solid #edf2f7; border-radius: 12px; cursor: pointer; transition: var(--pb-transition);
}
.pb-payment-item input:checked + .pb-payment-label { border-color: var(--pb-primary); background: rgba(var(--pb-primary-rgb), 0.02); box-shadow: 0 4px 15px rgba(var(--pb-primary-rgb), 0.05); }
.pb-payment-label i { font-size: 1.25rem; width: 24px; text-align: center; }

.pb-order-summary-box { background: rgba(var(--pb-primary-rgb), 0.03); border-radius: 20px; border: 1px solid rgba(var(--pb-primary-rgb), 0.05); }
.pb-order-summary-title { font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 1.5rem; color: var(--pb-primary); margin-bottom: 1.5rem; }
.pb-order-item { background: #fff; border-radius: 12px; padding: 10px; margin-bottom: 1rem; display: flex; align-items: center; gap: 12px; border: 1px solid #f1f5f9; }
.pb-order-item img { width: 50px; height: 50px; border-radius: 8px; object-fit: cover; }
.pb-confirm-btn { 
    background: var(--pb-primary); color: #fff; font-weight: 700; padding: 1.25rem; 
    border-radius: 12px; border: 0; display: flex; align-items: center; justify-content: center; gap: 10px; 
    transition: var(--pb-transition);
}
.pb-confirm-btn:hover { background: #003322; transform: translateY(-2px); box-shadow: 0 10px 20px rgba(0,77,51,0.2); }

@media (max-width: 768px) {
    .pb-payment-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   USER ACCOUNT / DASHBOARD REDESIGN (Premium Forest Green Theme)
   ========================================================================== */

:root {
    --pb-forest-green: #004d33;
    --pb-sage: #e8f5e9;
    --pb-sidebar-dark: #003322;
}

.pb-account-sidebar {
    border: none !important;
    overflow: hidden;
}

.pb-sidebar-user {
    background: linear-gradient(135deg, var(--pb-sidebar-dark), #1e293b);
}

.pb-sidebar-nav .list-group-item {
    border: none !important;
    font-size: 0.92rem;
    font-weight: 600;
    border-radius: 0 !important;
    color: #475569;
}

.pb-sidebar-nav .list-group-item i {
    width: 25px;
    font-size: 1.1rem;
    opacity: 0.7;
}

.pb-sidebar-nav .list-group-item.active {
    background-color: var(--pb-forest-green) !important;
    color: #fff !important;
    box-shadow: 0 4px 12px rgba(0, 77, 64, 0.2);
}

.pb-sidebar-nav .list-group-item.active i {
    color: #fff !important;
    opacity: 1;
}

/* Stat Cards */
.pb-stat-card {
    border: 1px solid #f1f5f9 !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.pb-stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.06) !important;
    border-color: #e2e8f0 !important;
}

.pb-stat-icon {
    background: #f8fafc;
    border: 1px solid #f1f5f9;
}

/* Account Tables */
.table-hover tbody tr:hover {
    background-color: #f8fafc !important;
}

.badge.rounded-pill {
    font-weight: 600;
    padding: 0.5em 1em;
}

/* Page Headers */
.pb-section-header h4 {
    letter-spacing: -0.01em;
}

/* Responsive fixes for Account Sidebar */
@media (max-width: 991.98px) {
    .pb-account-sidebar {
        margin-bottom: 2rem;
    }
}
/* Premium Login Redesign */
.pb-login-wrapper { min-height: 80vh; display: flex; align-items: center; justify-content: center; padding: 3rem 1rem; background: #fafafa; }
.pb-login-card { background: #fff; width: 100%; max-width: 900px; border-radius: 24px; box-shadow: 0 30px 60px rgba(0,0,0,0.05); padding: 3rem; position: relative; }
.pb-login-header { text-align: center; margin-bottom: 3rem; }
.pb-login-icon-box { 
    width: 64px; height: 64px; background: #f97316; border-radius: 16px; 
    display: flex; align-items: center; justify-content: center; 
    color: #fff; font-size: 1.5rem; margin-bottom: 1rem; box-shadow: 0 10px 20px rgba(249,115,22,0.2);
}
.pb-login-grid { display: grid; grid-template-columns: 1fr auto 1fr; gap: 3rem; align-items: center; }
.pb-login-panel { background: #f8fafc; border-radius: 20px; padding: 2.5rem; height: 100%; display: flex; flex-direction: column; }
.pb-login-panel h6 { font-weight: 700; color: #334155; margin-bottom: 1.5rem; font-size: 1rem; }
.pb-login-separator { display: flex; flex-direction: column; align-items: center; height: 100%; gap: 1rem; }
.pb-login-separator-line { width: 1px; flex: 1; background: #e2e8f0; }
.pb-login-separator-text { 
    width: 44px; height: 44px; border: 1px solid #e2e8f0; border-radius: 50%; 
    display: flex; align-items: center; justify-content: center; 
    font-size: 0.75rem; font-weight: 800; background: #fff; color: #94a3b8; 
}
.pb-login-input-group { position: relative; margin-bottom: 1.25rem; }
.pb-login-input-group i { position: absolute; left: 16px; top: 50%; transform: translateY(-50%); color: #94a3b8; transition: all 0.3s; }
.pb-login-input { 
    width: 100%; background: #fff; border: 1px solid #e2e8f0; border-radius: 12px; 
    padding: 0.85rem 1rem 0.85rem 3rem; font-size: 0.95rem; font-weight: 500; 
    transition: all 0.3s; color: #1e293b;
}
.pb-login-input:focus { border-color: #004d33; box-shadow: 0 0 0 4px rgba(0,77,51,0.05); background: #fff; }
.pb-login-input:focus + i { color: #004d33; }
.pb-btn-login { 
    background: #004d33; color: #fff; border: 0; padding: 0.9rem; border-radius: 12px; 
    font-weight: 700; width: 100%; transition: all 0.3s; margin-top: 1rem;
}
.pb-btn-login:hover { background: #003322; transform: translateY(-2px); box-shadow: 0 10px 20px rgba(0,77,51,0.2); color: #fff; }
.pb-login-footer-links { display: flex; justify-content: space-between; align-items: center; margin-top: 0.75rem; font-size: 0.8rem; }
.pb-login-footer-links a { color: #f97316; font-weight: 600; text-decoration: none; }
.pb-login-social-sep { display: flex; align-items: center; gap: 1rem; margin: 3rem 0 2rem; }
.pb-login-social-sep::before, .pb-login-social-sep::after { content: ''; flex: 1; height: 1px; background: #e2e8f0; }
.pb-login-social-sep span { color: #94a3b8; font-size: 0.85rem; font-weight: 500; }
@media (max-width: 991px) {
    .pb-login-separator { display: none; }
}

/* --- Shopping Window (Mini Cart) Redesign --- */
.pb-shopping-window {
    width: 450px !important;
    border-left: none;
    box-shadow: -10px 0 30px rgba(0,0,0,0.1);
}

.pb-shopping-window .offcanvas-header {
    background: #ffffff !important;
    color: #1e293b !important;
    border-bottom: 1px solid #f1f5f9;
    padding: 1.5rem;
}

.pb-shopping-window .offcanvas-title {
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #000;
}

.pb-sw-close {
    background: none;
    border: none;
    font-size: 0.9rem;
    font-weight: 600;
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.2s;
}

.pb-sw-close:hover {
    color: var(--pb-primary);
}

/* Cart Item Cards */
.pb-sw-item {
    background: #ffffff !important;
    border: 1px solid #f1f5f9 !important;
    border-radius: 12px;
    padding: 1rem !important;
    margin-bottom: 1rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.02);
    position: relative;
    transition: transform 0.2s;
}

.pb-sw-item:hover {
    transform: translateY(-2px);
    border-color: #e2e8f0 !important;
}

.pb-sw-item-img-box {
    width: 70px;
    height: 70px;
    padding: 5px;
    border: 1px solid #f1f5f9;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pb-sw-item-img-box img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.pb-sw-item-title {
    font-weight: 700;
    font-size: 0.95rem;
    color: #1e293b;
    margin-bottom: 5px;
}

/* Qty Selector Pill */
.pb-sw-qty-pill {
    display: inline-flex;
    align-items: center;
    background: #f8fafc;
    border: 1px solid #f1f5f9;
    border-radius: 8px;
    padding: 2px;
}

.pb-sw-qty-btn {
    width: 28px !important;
    height: 28px !important;
    border: none !important;
    background: none !important;
    color: #64748b !important;
    font-size: 1.1rem !important;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    border-radius: 6px !important;
}

.pb-sw-qty-btn:hover {
    background: #fff !important;
    color: #f97316 !important;
}

.pb-sw-qty-val {
    min-width: 30px;
    text-align: center;
    font-weight: 800;
    font-size: 0.9rem;
    color: #1e293b;
}

.pb-sw-price-line {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 500;
}

.pb-sw-price-line strong {
    color: #000;
    font-weight: 700;
}

.pb-sw-remove {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    color: #94a3b8;
    font-size: 1.1rem;
    transition: color 0.2s;
}

.pb-sw-remove:hover {
    color: #ef4444;
}

/* Upsell / Suggestions (Smaller) */
.pb-sw-suggestions {
    background: #f8fafc;
    padding: 1rem 1.25rem;
}

.pb-sw-section-title {
    font-size: 0.9rem;
    font-weight: 800;
    color: #1e293b;
    position: relative;
    padding-bottom: 6px;
    margin-bottom: 0.75rem;
}

.pb-sw-suggestion-card {
    background: #fff;
    border-radius: 10px;
    padding: 0.6rem;
    display: flex;
    gap: 10px;
    align-items: center;
    border: 1px solid #f1f5f9;
    min-width: 200px;
    margin-right: 0.75rem;
    flex-shrink: 0;
}

.pb-sw-suggestion-img {
    width: 45px;
    height: 45px;
    background: #f8fafc;
    border-radius: 8px;
    padding: 3px;
    flex-shrink: 0;
}

.pb-sw-suggestion-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.pb-sw-suggestion-title {
    font-weight: 700;
    font-size: 0.8rem;
    color: #1e293b;
    margin-bottom: 1px;
    line-height: 1.2;
}

.pb-sw-suggestion-price {
    font-size: 11px;
    color: #64748b;
    margin-bottom: 4px;
}

.pb-sw-suggestion-btn {
    background: #f97316 !important;
    color: #fff !important;
    border: none !important;
    padding: 2px 10px !important;
    border-radius: 15px !important;
    font-weight: 800 !important;
    font-size: 10px !important;
    text-transform: uppercase;
}

/* Footer Section */
.pb-sw-footer {
    background: #ffffff;
    border-top: 1px solid #f1f5f9;
    padding: 1.5rem;
}

.pb-sw-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.pb-sw-total-label {
    font-weight: 800;
    font-size: 1.1rem;
    color: #1e293b;
}

.pb-sw-total-val {
    font-weight: 800;
    font-size: 1.25rem;
    color: #000;
}

.pb-sw-btn-checkout {
    background: #f97316 !important;
    border: none !important;
    color: #fff !important;
    font-weight: 800 !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 1.2rem !important;
    border-radius: 12px !important;
    width: 100%;
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.2);
    transition: transform 0.2s, box-shadow 0.2s;
    text-decoration: none;
    display: block;
    text-align: center;
}

.pb-sw-btn-checkout:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(249, 115, 22, 0.3);
    color: #fff !important;
}

/* --- Order Success Redesign --- */
.pb-success-page { background: #fafdfc; padding: 4rem 1rem; min-height: 90vh; }
.pb-success-container { max-width: 850px; margin: 0 auto; text-align: center; }

/* Hero Section */
.pb-success-check-wrapper { margin-bottom: 2.5rem; display: flex; justify-content: center; }
.pb-success-check-circle { 
    width: 80px; height: 80px; background: #004d33; color: #fff; 
    border-radius: 50%; display: flex; align-items: center; justify-content: center; 
    font-size: 2.5rem; box-shadow: 0 10px 30px rgba(0,77,51,0.2); 
}

.pb-success-title { font-size: 2.8rem; font-weight: 800; color: #004d33; margin-bottom: 0.5rem; letter-spacing: -1px; }
.pb-success-subtitle { font-size: 1.1rem; color: #004d33; font-style: italic; opacity: 0.8; margin-bottom: 3rem; }

/* Order ID Box */
.pb-success-id-box { 
    background: #eef9f5; border-radius: 16px; padding: 2rem; 
    display: inline-block; min-width: 400px; margin-bottom: 4rem; 
}
.pb-success-id-label { font-size: 0.85rem; font-weight: 700; color: #64748b; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 0.5rem; }
.pb-success-id-val { font-size: 2rem; font-weight: 800; color: #004d33; letter-spacing: 2px; }

/* Tracking Stepper */
.pb-success-tracking-title { font-size: 1.5rem; font-weight: 800; color: #1e293b; margin-bottom: 3rem; }
.pb-success-stepper { display: flex; justify-content: space-between; position: relative; margin-bottom: 5rem; padding: 0 2rem; }
.pb-success-stepper::before { content: ''; position: absolute; top: 20px; left: 10%; right: 10%; height: 2px; background: #e2e8f0; z-index: 1; }
.pb-success-stepper-progress { position: absolute; top: 20px; left: 10%; height: 2px; background: #004d33; z-index: 2; transition: width 1s ease; }

.pb-success-step { position: relative; z-index: 3; flex: 1; display: flex; flex-direction: column; align-items: center; }
.pb-success-step-icon { 
    width: 40px; height: 40px; background: #fff; border: 2px solid #e2e8f0; 
    border-radius: 8px; display: flex; align-items: center; justify-content: center; 
    color: #94a3b8; font-size: 1.1rem; margin-bottom: 1rem; transition: all 0.3s;
}
.pb-success-step.active .pb-success-step-icon { background: #004d33; border-color: #004d33; color: #fff; box-shadow: 0 8px 15px rgba(0,77,51,0.2); }
.pb-success-step.upcoming .pb-success-step-icon { background: #eef9f5; border-color: #bbf7d0; color: #004d33; }

.pb-success-step-label { font-weight: 700; font-size: 0.95rem; color: #1e293b; margin-bottom: 4px; }
.pb-success-step-desc { font-size: 0.8rem; color: #64748b; }

/* Details Grid */
.pb-success-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-bottom: 5rem; text-align: left; }
.pb-success-info-card { background: #fff; border-radius: 20px; padding: 2rem; border: 1px solid #f1f5f9; box-shadow: 0 10px 40px rgba(0,0,0,0.02); }

.pb-success-arrival-label { font-size: 0.95rem; font-weight: 700; color: #059669; margin-bottom: 1rem; display: flex; align-items: center; gap: 8px; }
.pb-success-arrival-date { font-size: 2rem; font-weight: 800; color: #1e293b; margin-bottom: 0.25rem; }
.pb-success-arrival-time { font-size: 1.1rem; color: #64748b; font-weight: 600; margin-bottom: 1.5rem; }
.pb-success-arrival-note { font-size: 0.85rem; color: #64748b; font-style: italic; display: flex; align-items: center; gap: 8px; }

.pb-success-actions { display: flex; flex-direction: column; gap: 1rem; }
.pb-btn-track { background: #004d33; color: #fff; border: none; border-radius: 12px; padding: 1.1rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.5px; display: flex; align-items: center; justify-content: center; gap: 10px; text-decoration: none; transition: all 0.2s; }
.pb-btn-track:hover { background: #003322; transform: translateY(-2px); color: #fff !important; }
.pb-btn-harvest { background: #bbf7d0; color: #004d33; border: none; border-radius: 12px; padding: 1.1rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.5px; display: flex; align-items: center; justify-content: center; gap: 10px; text-decoration: none; transition: all 0.2s; }
.pb-btn-harvest:hover { background: #dcfce7; transform: translateY(-2px); color: #004d33 !important; }

/* Bottom Columns */
.pb-success-bottom { display: grid; grid-template-columns: 1.5fr 1.5fr 1fr; gap: 3rem; text-align: left; padding-top: 4rem; border-top: 1px solid #eef2f6; }
.pb-success-bt-col h6 { font-size: 0.8rem; font-weight: 800; color: #94a3b8; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 1.5rem; }
.pb-success-bt-text { font-size: 0.95rem; color: #475569; line-height: 1.6; font-weight: 500; }
.pb-success-bt-highlight { font-weight: 700; color: #004d33; display: block; margin-top: 0.25rem; }
.pb-success-payment-pill { display: inline-flex; align-items: center; gap: 10px; color: #475569; font-weight: 600; font-size: 0.95rem; }
.pb-success-payment-pill i { font-size: 1.25rem; color: #004d33; }

@media (max-width: 768px) {
    .pb-success-grid, .pb-success-bottom { grid-template-columns: 1fr; gap: 2rem; }
    .pb-success-id-box { min-width: 100%; box-sizing: border-box; padding: 1.5rem; }
    .pb-success-title { font-size: 2rem; }
    .pb-success-stepper { flex-direction: column; gap: 2rem; padding: 0; }
    .pb-success-stepper::before { display: none; }
}

/* --- Modern Product Card Styles --- */
.pb-product-card {
    background: #ffffff;
    border: 1px solid #f1f5f9;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.pb-product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    border-color: rgba(var(--pb-primary-rgb), 0.1);
}

.pb-p-img-wrap {
    position: relative;
    padding-top: 100%; /* 1:1 Aspect Ratio */
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    overflow: hidden;
}

.pb-p-img-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.5s ease;
}

.pb-product-card:hover .pb-p-img-link {
    transform: scale(1.05);
}

.pb-p-img-link img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    mix-blend-mode: multiply;
}

/* Glassmorphism Badge */
.pb-p-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(var(--pb-primary-rgb), 0.8);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #fff;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    z-index: 5;
    text-transform: uppercase;
}

/* Modern Quick Add */
.pb-p-quick-add {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 10;
    width: 38px;
    height: 38px;
    background: #fff;
    color: var(--pb-primary);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 0;
    transform: translateX(10px);
}

.pb-product-card:hover .pb-p-quick-add {
    opacity: 1;
    transform: translateX(0);
}

.pb-p-quick-add:hover {
    background: var(--pb-accent);
    color: #fff;
    transform: scale(1.1);
}

.pb-p-body {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.pb-p-cat {
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #94a3b8;
    margin-bottom: 0.5rem;
}

.pb-p-title {
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
    line-height: 1.4;
    height: 2.8em;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-decoration: none;
    transition: color 0.2s;
}

.pb-p-title:hover {
    color: var(--pb-primary);
}

.pb-p-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
}

.pb-p-price-wrap {
    display: flex;
    flex-direction: column;
}

.pb-p-price {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--pb-primary);
}

.pb-p-old-price {
    font-size: 0.8rem;
    color: #94a3b8;
    text-decoration: line-through;
    margin-bottom: -2px;
}

@media (max-width: 576px) {
    .pb-p-quick-add {
        opacity: 1;
        transform: none;
    }
    .pb-p-body {
        padding: 1rem;
    }
    .pb-p-title {
        font-size: 0.85rem;
    }
    .pb-p-price {
        font-size: 1rem;
    }
}
