/* ============================================================
   UniformArticles — Master Stylesheet
   Developed by Pravax Systems | pravaxsystems.com
   ============================================================ */

/* ============================================================
   1. CSS CUSTOM PROPERTIES (DESIGN TOKENS)
   ============================================================ */
:root {
    /* Primary Palette — Military Navy */
    --navy-950: #050B14;
    --navy-900: #0A1628;
    --navy-800: #0D1B2A;
    --navy-700: #1B2A4A;
    --navy-600: #243B6A;
    --navy-500: #2D4A7A;
    --navy-400: #3D6098;
    --navy-300: #5A80B4;
    --navy-200: #8AADD0;
    --navy-100: #C0D6ED;
    --navy-50:  #E8F0F8;

    /* Accent — Military Gold */
    --gold-600: #9A7B2F;
    --gold-500: #C5A55A;
    --gold-400: #D4B76E;
    --gold-300: #E0C988;
    --gold-200: #ECDBA8;
    --gold-100: #F5ECCC;
    --gold-50:  #FBF6E8;

    /* Neutrals */
    --gray-900: #111827;
    --gray-800: #1F2937;
    --gray-700: #374151;
    --gray-600: #4B5563;
    --gray-500: #6B7280;
    --gray-400: #9CA3AF;
    --gray-300: #D1D5DB;
    --gray-200: #E5E7EB;
    --gray-100: #F3F4F6;
    --gray-50:  #F9FAFB;
    --white:    #FFFFFF;

    /* Semantic */
    --success: #059669;
    --success-light: #D1FAE5;
    --warning: #D97706;
    --warning-light: #FEF3C7;
    --danger:  #DC2626;
    --danger-light: #FEE2E2;
    --info:    #2563EB;
    --info-light: #DBEAFE;

    /* Applied Colors */
    --bg-primary:    var(--white);
    --bg-secondary:  var(--gray-50);
    --bg-dark:       var(--navy-800);
    --bg-darker:     var(--navy-900);
    --text-primary:  var(--gray-900);
    --text-secondary: var(--gray-600);
    --text-muted:    var(--gray-400);
    --text-on-dark:  var(--gray-100);
    --border-color:  var(--gray-200);
    --border-light:  var(--gray-100);

    /* Typography */
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body:    'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-mono:    'JetBrains Mono', 'Fira Code', monospace;

    /* Sizing */
    --header-height: 72px;
    --sidebar-width: 260px;
    --container-max: 1320px;
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-xs:  0 1px 2px rgba(0,0,0,0.05);
    --shadow-sm:  0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.04);
    --shadow-md:  0 4px 6px rgba(0,0,0,0.06), 0 2px 4px rgba(0,0,0,0.04);
    --shadow-lg:  0 10px 15px rgba(0,0,0,0.08), 0 4px 6px rgba(0,0,0,0.04);
    --shadow-xl:  0 20px 25px rgba(0,0,0,0.10), 0 8px 10px rgba(0,0,0,0.04);
    --shadow-2xl: 0 25px 50px rgba(0,0,0,0.15);
    --shadow-gold: 0 4px 14px rgba(197, 165, 90, 0.3);
    --shadow-navy: 0 4px 14px rgba(27, 42, 74, 0.2);

    /* Transitions */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 400ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-spring: 500ms cubic-bezier(0.34, 1.56, 0.64, 1);

    /* Z-Index Scale */
    --z-dropdown: 100;
    --z-sticky: 200;
    --z-fixed: 300;
    --z-modal-backdrop: 400;
    --z-modal: 500;
    --z-popover: 600;
    --z-tooltip: 700;
    --z-toast: 800;
    --z-chatbot: 900;
}

/* ============================================================
   2. RESET & BASE
   ============================================================ */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    font-size: 16px;
    overflow-x: hidden;
    max-width: 100%;
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-primary);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    max-width: 100%;
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
}

main {
    flex: 1;
}

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

a {
    color: var(--navy-600);
    text-decoration: none;
    transition: color var(--transition-fast);
}
a:hover {
    color: var(--gold-500);
}

::selection {
    background: var(--gold-200);
    color: var(--navy-800);
}

/* ============================================================
   3. TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.25;
    color: var(--navy-800);
}

h1 { font-size: clamp(2rem, 4vw, 3rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.1rem; }
h6 { font-size: 1rem; }

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}
.section-title h2 {
    position: relative;
    display: inline-block;
    padding-bottom: 0.75rem;
}
.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-500), var(--gold-300));
    border-radius: 2px;
}
.section-title p {
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0.75rem auto 0;
    font-size: 1.05rem;
}

/* ============================================================
   4. BUTTONS
   ============================================================ */
.btn-ua {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.65rem 1.5rem;
    border-radius: var(--radius-md);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition-base);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}
.btn-ua::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
    opacity: 0;
    transition: opacity var(--transition-fast);
}
.btn-ua:hover::before { opacity: 1; }

/* Primary — Gold */
.btn-primary-gold {
    background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
    color: var(--navy-900);
    box-shadow: var(--shadow-gold);
}
.btn-primary-gold:hover {
    background: linear-gradient(135deg, var(--gold-400), var(--gold-300));
    color: var(--navy-900);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(197, 165, 90, 0.4);
}

/* Primary — Navy */
.btn-primary-navy {
    background: linear-gradient(135deg, var(--navy-700), var(--navy-600));
    color: var(--white);
    box-shadow: var(--shadow-navy);
}
.btn-primary-navy:hover {
    background: linear-gradient(135deg, var(--navy-600), var(--navy-500));
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(27, 42, 74, 0.35);
}

/* Outline */
.btn-outline-navy {
    background: transparent;
    color: var(--navy-700);
    border-color: var(--navy-700);
}
.btn-outline-navy:hover {
    background: var(--navy-700);
    color: var(--white);
    transform: translateY(-2px);
}
.btn-outline-gold {
    background: transparent;
    color: var(--gold-600);
    border-color: var(--gold-500);
}
.btn-outline-gold:hover {
    background: var(--gold-500);
    color: var(--navy-900);
    transform: translateY(-2px);
}

/* Ghost */
.btn-ghost {
    background: transparent;
    color: var(--text-secondary);
    padding: 0.5rem 1rem;
}
.btn-ghost:hover {
    background: var(--gray-100);
    color: var(--text-primary);
}

/* Sizes */
.btn-sm { padding: 0.4rem 1rem; font-size: 0.8rem; }
.btn-lg { padding: 0.85rem 2rem; font-size: 1rem; }
.btn-xl { padding: 1rem 2.5rem; font-size: 1.1rem; }
.btn-icon {
    width: 40px;
    height: 40px;
    padding: 0;
    border-radius: var(--radius-full);
}

/* ============================================================
   5. HEADER / NAVIGATION
   ============================================================ */
.ua-header {
    position: sticky;
    top: 0;
    z-index: var(--z-sticky);
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--border-light);
    height: var(--header-height);
    transition: all var(--transition-base);
}
.ua-header.scrolled {
    box-shadow: var(--shadow-md);
    background: rgba(255, 255, 255, 0.97);
}

.ua-header-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1.5rem;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

/* Logo */
.ua-logo {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    text-decoration: none;
    flex-shrink: 0;
}
.ua-logo-icon {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--navy-700), var(--navy-600));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-400);
    font-size: 1.25rem;
    font-weight: 800;
    font-family: var(--font-display);
    box-shadow: var(--shadow-sm);
}
.ua-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}
.ua-logo-name {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--navy-800);
    letter-spacing: -0.3px;
}
.ua-logo-tagline {
    font-size: 0.65rem;
    color: var(--gold-600);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
}

/* Search */
.ua-search {
    flex: 1;
    max-width: 480px;
    position: relative;
}
.ua-search-input {
    width: 100%;
    height: 42px;
    padding: 0 1rem 0 2.75rem;
    border: 1.5px solid var(--border-color);
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    color: var(--text-primary);
    background: var(--gray-50);
    transition: all var(--transition-fast);
    font-family: var(--font-body);
}
.ua-search-input::placeholder {
    color: var(--text-muted);
}
.ua-search-input:focus {
    outline: none;
    border-color: var(--navy-400);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(27, 42, 74, 0.08);
}
.ua-search-icon {
    position: absolute;
    left: 0.9rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 0.95rem;
    pointer-events: none;
}

/* Nav Actions */
.ua-nav-actions {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}
.ua-nav-btn {
    position: relative;
    width: 42px;
    height: 42px;
    border: none;
    background: transparent;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-600);
    cursor: pointer;
    transition: all var(--transition-fast);
    font-size: 1.15rem;
}
.ua-nav-btn:hover {
    background: var(--gray-100);
    color: var(--navy-700);
}
.ua-nav-btn .badge-count {
    position: absolute;
    top: 4px;
    right: 4px;
    min-width: 18px;
    height: 18px;
    border-radius: var(--radius-full);
    background: var(--danger);
    color: var(--white);
    font-size: 0.65rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    line-height: 1;
    border: 2px solid var(--white);
}
.ua-nav-btn .ua-nav-label {
    font-size: 0.8rem;
    font-weight: 600;
    margin-left: 0.15rem;
}
.ua-nav-btn:has(.ua-nav-label) {
    width: auto;
    padding: 0 0.85rem;
    gap: 0.35rem;
    font-size: 0.95rem;
    background: var(--navy-50);
    color: var(--navy-700);
    border: 1px solid var(--navy-100);
}
.ua-nav-btn:has(.ua-nav-label):hover {
    background: var(--navy-100);
    color: var(--navy-900);
}
@media (max-width: 576px) {
    .ua-nav-btn .ua-nav-label { display: none; }
    .ua-nav-btn:has(.ua-nav-label) {
        width: 42px;
        padding: 0;
        background: transparent;
        border: none;
    }
}

/* Service Badge */
.ua-service-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.3rem 0.75rem;
    border-radius: var(--radius-full);
    background: var(--navy-50);
    color: var(--navy-700);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all var(--transition-fast);
    border: 1px solid var(--navy-100);
}
.ua-service-badge:hover {
    background: var(--navy-100);
}
.ua-service-badge i {
    color: var(--gold-500);
    font-size: 0.7rem;
}

/* User Menu Dropdown */
.ua-user-menu {
    position: relative;
    display: inline-flex;
    align-items: center;
}
.ua-user-avatar {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-full);
    object-fit: cover;
    border: 2px solid var(--gold-300);
    cursor: pointer;
    transition: border-color var(--transition-fast);
}
.ua-user-avatar:hover {
    border-color: var(--gold-500);
}
.ua-user-menu-btn {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    border-radius: var(--radius-full);
}
.ua-user-avatar-badge {
    cursor: pointer;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}
.ua-user-avatar-badge:hover {
    transform: scale(1.06);
}
.ua-user-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 220px;
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    padding: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px) scale(0.96);
    transition: all var(--transition-fast);
    z-index: var(--z-dropdown);
}
.ua-user-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}
.ua-user-dropdown-header {
    padding: 0.75rem;
    border-bottom: 1px solid var(--border-light);
    margin-bottom: 0.25rem;
}
.ua-user-dropdown-header .name {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-primary);
}
.ua-user-dropdown-header .email {
    font-size: 0.75rem;
    color: var(--text-muted);
}
.ua-user-dropdown a,
.ua-user-dropdown button {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    width: 100%;
    padding: 0.6rem 0.75rem;
    border: none;
    background: none;
    font-size: 0.875rem;
    color: var(--text-secondary);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition-fast);
    text-align: left;
    font-family: var(--font-body);
}
.ua-user-dropdown a:hover,
.ua-user-dropdown button:hover {
    background: var(--gray-50);
    color: var(--text-primary);
}
.ua-user-dropdown .divider {
    height: 1px;
    background: var(--border-light);
    margin: 0.25rem 0;
}
.ua-user-dropdown .logout-link {
    color: var(--danger);
}
.ua-user-dropdown .logout-link:hover {
    background: var(--danger-light);
    color: var(--danger);
}

/* Mobile Menu Toggle */
.ua-mobile-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: none;
    background: transparent;
    cursor: pointer;
    border-radius: var(--radius-md);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
}
.ua-mobile-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--navy-700);
    border-radius: 2px;
    transition: all var(--transition-base);
}

/* ============================================================
   6. HERO SECTION
   ============================================================ */
.ua-hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-700) 50%, var(--navy-600) 100%);
    overflow: hidden;
}
.ua-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 50% at 70% 50%, rgba(197, 165, 90, 0.08) 0%, transparent 70%),
        radial-gradient(ellipse 60% 80% at 20% 80%, rgba(45, 74, 122, 0.15) 0%, transparent 60%);
    pointer-events: none;
}
.ua-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C5A55A' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.ua-hero-content {
    position: relative;
    z-index: 1;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 4rem 1.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.ua-hero-text h1 {
    color: var(--white);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    line-height: 1.15;
    margin-bottom: 1.25rem;
}
.ua-hero-text h1 .text-gold {
    color: var(--gold-400);
    display: block;
}
.ua-hero-text p {
    color: var(--navy-200);
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 500px;
}
.ua-hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}
.ua-hero-stats {
    display: flex;
    gap: 2.5rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}
.ua-hero-stat {
    text-align: center;
}
.ua-hero-stat .number {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold-400);
    line-height: 1.2;
}
.ua-hero-stat .label {
    font-size: 0.8rem;
    color: var(--navy-300);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.25rem;
}

.ua-hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ua-hero-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;
}
.ua-hero-image-wrapper img {
    width: 100%;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-2xl);
}
/* Decorative border */
.ua-hero-image-wrapper::before {
    content: '';
    position: absolute;
    inset: -12px;
    border: 2px solid rgba(197, 165, 90, 0.2);
    border-radius: calc(var(--radius-xl) + 6px);
    pointer-events: none;
}

/* Floating badge on hero image */
.ua-hero-float-badge {
    position: absolute;
    padding: 0.75rem 1.25rem;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 0.65rem;
    animation: float 6s ease-in-out infinite;
}
.ua-hero-float-badge.top-left {
    top: 10%;
    left: -30px;
    animation-delay: 0s;
}
.ua-hero-float-badge.bottom-right {
    bottom: 15%;
    right: -20px;
    animation-delay: 3s;
}
.ua-hero-float-badge .icon {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}
.ua-hero-float-badge .icon.gold {
    background: var(--gold-50);
    color: var(--gold-600);
}
.ua-hero-float-badge .icon.navy {
    background: var(--navy-50);
    color: var(--navy-600);
}
.ua-hero-float-badge .info .value {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text-primary);
}
.ua-hero-float-badge .info .desc {
    font-size: 0.7rem;
    color: var(--text-muted);
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
}

/* ============================================================
   7. CATEGORIES SECTION
   ============================================================ */
.ua-categories {
    padding: 5rem 1.5rem;
    background: var(--bg-secondary);
}
.ua-categories-grid {
    max-width: var(--container-max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 1.5rem;
}
.ua-category-card {
    position: relative;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem 1.25rem;
    text-align: center;
    border: 1px solid var(--border-light);
    transition: all var(--transition-base);
    cursor: pointer;
    text-decoration: none;
    overflow: hidden;
}
.ua-category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-500), var(--gold-300));
    transform: scaleX(0);
    transition: transform var(--transition-base);
}
.ua-category-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}
.ua-category-card:hover::before {
    transform: scaleX(1);
}
.ua-category-card .icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1rem;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, var(--navy-50), var(--navy-100));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--navy-600);
    transition: all var(--transition-base);
}
.ua-category-card:hover .icon {
    background: linear-gradient(135deg, var(--gold-100), var(--gold-50));
    color: var(--gold-600);
}
.ua-category-card .name {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}
.ua-category-card .count {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ============================================================
   8. PRODUCT CARDS
   ============================================================ */
.ua-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.5rem;
}

.ua-product-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    overflow: hidden;
    transition: all var(--transition-base);
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
}
.ua-product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
    color: inherit;
}

.ua-product-image {
    position: relative;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: #ffffff;
}
.ua-product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 0.5rem;
    transition: transform var(--transition-slow);
}
.ua-product-card:hover .ua-product-image img {
    transform: scale(1.05);
}

/* Product badges */
.ua-product-badges {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}
.ua-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.2rem 0.6rem;
    border-radius: var(--radius-full);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}
.ua-badge-defence {
    background: var(--navy-700);
    color: var(--gold-300);
}
.ua-badge-b2b {
    background: var(--info);
    color: var(--white);
}
.ua-badge-new {
    background: var(--success);
    color: var(--white);
}
.ua-badge-sale {
    background: var(--danger);
    color: var(--white);
}
.ua-badge-featured {
    background: var(--gold-500);
    color: var(--navy-900);
}

/* Quick actions on hover */
.ua-product-actions {
    position: absolute;
    bottom: 0.75rem;
    right: 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    opacity: 0;
    transform: translateY(8px);
    transition: all var(--transition-base);
}
.ua-product-card:hover .ua-product-actions {
    opacity: 1;
    transform: translateY(0);
}
.ua-product-action-btn {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-full);
    background: var(--white);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    cursor: pointer;
    transition: all var(--transition-fast);
    color: var(--gray-600);
    font-size: 0.85rem;
}
.ua-product-action-btn:hover {
    background: var(--navy-700);
    color: var(--white);
}
.ua-product-action-btn.wishlisted {
    color: var(--danger);
}

/* Product info */
.ua-product-info {
    padding: 1rem 1.25rem 1.25rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.ua-product-category {
    font-size: 0.7rem;
    color: var(--gold-600);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 0.35rem;
}
.ua-product-name {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.ua-product-price {
    margin-top: auto;
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}
.ua-product-price .current {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--navy-800);
}
.ua-product-price .mrp {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-decoration: line-through;
}
.ua-product-price .discount {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--success);
}

/* Rating */
.ua-product-rating {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    margin-bottom: 0.5rem;
}
.ua-product-rating .stars {
    color: var(--gold-500);
    font-size: 0.8rem;
}
.ua-product-rating .count {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* ============================================================
   9. FEATURED PRODUCTS SECTION
   ============================================================ */
.ua-featured {
    padding: 5rem 1.5rem;
}
.ua-featured-inner {
    max-width: var(--container-max);
    margin: 0 auto;
}

/* ============================================================
   10. WHY US / TRUST SECTION
   ============================================================ */
.ua-trust {
    padding: 5rem 1.5rem;
    background: linear-gradient(135deg, var(--navy-900), var(--navy-800));
    position: relative;
    overflow: hidden;
}
.ua-trust::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C5A55A' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}
.ua-trust-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.ua-trust .section-title h2 {
    color: var(--white);
}
.ua-trust .section-title h2::after {
    background: linear-gradient(90deg, var(--gold-500), var(--gold-300));
}
.ua-trust .section-title p {
    color: var(--navy-300);
}

.ua-trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
}
.ua-trust-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    transition: all var(--transition-base);
}
.ua-trust-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-4px);
    border-color: rgba(197, 165, 90, 0.2);
}
.ua-trust-card .icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1.25rem;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, rgba(197, 165, 90, 0.15), rgba(197, 165, 90, 0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--gold-400);
}
.ua-trust-card h4 {
    color: var(--white);
    font-family: var(--font-body);
    font-size: 1rem;
    margin-bottom: 0.5rem;
}
.ua-trust-card p {
    color: var(--navy-300);
    font-size: 0.85rem;
    line-height: 1.6;
}

/* ============================================================
   11. FOOTER
   ============================================================ */
.ua-footer {
    background: var(--navy-900);
    color: var(--navy-300);
    position: relative;
}
.ua-footer-main {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 4rem 1.5rem 2rem;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
}
.ua-footer-brand p {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-top: 1rem;
    color: var(--navy-300);
}
.ua-footer-social {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.25rem;
}
.ua-footer-social a {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy-300);
    transition: all var(--transition-fast);
    font-size: 0.9rem;
}
.ua-footer-social a:hover {
    background: var(--gold-500);
    color: var(--navy-900);
    transform: translateY(-2px);
}
.ua-footer h5 {
    color: var(--white);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.25rem;
}
.ua-footer-links {
    list-style: none;
}
.ua-footer-links li {
    margin-bottom: 0.65rem;
}
.ua-footer-links a {
    color: var(--navy-300);
    font-size: 0.875rem;
    transition: all var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 0.35rem;
}
.ua-footer-links a:hover {
    color: var(--gold-400);
    padding-left: 4px;
}

.ua-footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    margin-bottom: 0.85rem;
    font-size: 0.875rem;
}
.ua-footer-contact li i {
    color: var(--gold-500);
    margin-top: 3px;
    width: 16px;
    text-align: center;
}

.ua-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 1.25rem 1.5rem;
}
.ua-footer-bottom-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: var(--navy-400);
}
.ua-footer-bottom a {
    color: var(--gold-500);
}
.ua-footer-bottom a:hover {
    color: var(--gold-300);
}

/* ============================================================
   12. SERVICE SELECTION POPUP
   ============================================================ */
.ua-service-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(10, 22, 40, 0.75);
    backdrop-filter: blur(8px);
    z-index: var(--z-modal-backdrop);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: clamp(1.5rem, 4vh, 2.5rem) 1rem 1rem;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    transition: all var(--transition-base);
}
.ua-service-overlay.active {
    opacity: 1;
    visibility: visible;
}

.ua-service-modal {
    background: var(--white);
    border-radius: var(--radius-xl);
    max-width: 480px;
    width: 100%;
    max-height: calc(100vh - 1.5rem);
    padding: 1.15rem 1.35rem;
    text-align: center;
    transform: scale(0.92) translateY(10px);
    transition: all var(--transition-spring);
    box-shadow: var(--shadow-2xl);
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.ua-service-overlay.active .ua-service-modal {
    transform: scale(1) translateY(0);
}
.ua-service-modal .emblem {
    width: 40px;
    height: 40px;
    margin: 0 auto 0.5rem;
    background: linear-gradient(135deg, var(--navy-700), var(--navy-600));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-400);
    font-size: 1.15rem;
}
.ua-service-modal h3 {
    margin-bottom: 0.15rem;
    font-size: 1.25rem;
    color: var(--navy-900);
}
.ua-service-modal p {
    color: var(--text-secondary);
    font-size: 0.8rem;
    margin-bottom: 0.85rem;
    line-height: 1.35;
}
.ua-service-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    margin-bottom: 0.85rem;
}
.ua-service-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    padding: 0.5rem 0.25rem;
    border: 1.5px solid var(--border-color);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-fast);
    background: var(--white);
}
.ua-service-option:hover {
    border-color: var(--navy-400);
    background: var(--navy-50);
}
.ua-service-option.selected {
    border-color: var(--navy-600);
    background: var(--navy-50);
    box-shadow: 0 0 0 3px rgba(27, 42, 74, 0.1);
}
.ua-service-option .svc-icon {
    font-size: 1.2rem;
}
.ua-service-option .svc-name {
    font-weight: 600;
    font-size: 0.75rem;
    color: var(--text-primary);
}

/* ============================================================
   13. BREADCRUMBS
   ============================================================ */
.ua-breadcrumbs {
    padding: 1rem 1.5rem;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border-light);
}
.ua-breadcrumbs-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
}
.ua-breadcrumbs a {
    color: var(--text-muted);
}
.ua-breadcrumbs a:hover {
    color: var(--navy-600);
}
.ua-breadcrumbs .separator {
    color: var(--text-muted);
    font-size: 0.7rem;
}
.ua-breadcrumbs .current {
    color: var(--text-primary);
    font-weight: 500;
}

/* ============================================================
   14. CARDS (GENERIC)
   ============================================================ */
.ua-card {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    transition: all var(--transition-base);
}
.ua-card:hover {
    box-shadow: var(--shadow-md);
}
.ua-card-glass {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* ============================================================
   15. FORMS
   ============================================================ */
.ua-form-group {
    margin-bottom: 1.25rem;
}
.ua-form-label {
    display: block;
    font-weight: 500;
    font-size: 0.875rem;
    color: var(--text-primary);
    margin-bottom: 0.4rem;
}
.ua-form-input,
.ua-form-select,
.ua-form-textarea {
    width: 100%;
    padding: 0.65rem 1rem;
    border: 1.5px solid var(--border-color);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--text-primary);
    background: var(--white);
    transition: all var(--transition-fast);
}
.ua-form-input:focus,
.ua-form-select:focus,
.ua-form-textarea:focus {
    outline: none;
    border-color: var(--navy-400);
    box-shadow: 0 0 0 3px rgba(27, 42, 74, 0.08);
}
.ua-form-textarea {
    resize: vertical;
    min-height: 100px;
}
.ua-form-error {
    font-size: 0.8rem;
    color: var(--danger);
    margin-top: 0.3rem;
}

/* ============================================================
   16. ALERTS
   ============================================================ */
.ua-alert {
    padding: 0.85rem 1.25rem;
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.65rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
}
.ua-alert-success {
    background: var(--success-light);
    color: #065F46;
    border-color: #A7F3D0;
}
.ua-alert-danger {
    background: var(--danger-light);
    color: #991B1B;
    border-color: #FECACA;
}
.ua-alert-warning {
    background: var(--warning-light);
    color: #92400E;
    border-color: #FDE68A;
}
.ua-alert-info {
    background: var(--info-light);
    color: #1E40AF;
    border-color: #BFDBFE;
}

/* ============================================================
   17. LOADING STATES
   ============================================================ */
.ua-skeleton {
    background: linear-gradient(90deg, var(--gray-200) 25%, var(--gray-100) 50%, var(--gray-200) 75%);
    background-size: 200% 100%;
    animation: skeleton-pulse 1.5s ease-in-out infinite;
    border-radius: var(--radius-sm);
}
@keyframes skeleton-pulse {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.ua-spinner {
    width: 24px;
    height: 24px;
    border: 3px solid var(--gray-200);
    border-top-color: var(--navy-600);
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}
@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ============================================================
   18. PAGE BANNER (Internal pages)
   ============================================================ */
.ua-page-banner {
    background: linear-gradient(135deg, var(--navy-800), var(--navy-700));
    padding: 3rem 1.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.ua-page-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C5A55A' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}
.ua-page-banner h1 {
    color: var(--white);
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    position: relative;
    z-index: 1;
}
.ua-page-banner p {
    color: var(--navy-300);
    margin-top: 0.5rem;
    font-size: 1rem;
    position: relative;
    z-index: 1;
}

/* ============================================================
   19. TOAST NOTIFICATIONS
   ============================================================ */
.ua-toast-container {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: var(--z-toast);
    display: flex;
    flex-direction: column-reverse;
    gap: 0.75rem;
}
.ua-toast {
    min-width: 300px;
    max-width: 420px;
    padding: 0.85rem 1.25rem;
    border-radius: var(--radius-md);
    background: var(--white);
    box-shadow: var(--shadow-xl);
    border-left: 4px solid var(--navy-600);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    animation: slideInRight 0.3s ease forwards;
    font-size: 0.9rem;
}
.ua-toast.success { border-left-color: var(--success); }
.ua-toast.error { border-left-color: var(--danger); }
.ua-toast.warning { border-left-color: var(--warning); }

@keyframes slideInRight {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

/* ============================================================
   20. RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .ua-hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .ua-hero-text p {
        margin-left: auto;
        margin-right: auto;
    }
    .ua-hero-actions {
        justify-content: center;
    }
    .ua-hero-stats {
        justify-content: center;
    }
    .ua-hero-visual {
        display: block !important;
        max-width: 380px;
        margin: 1.5rem auto 0 auto;
        width: 100%;
    }
    .ua-hero-image-wrapper {
        max-width: 100%;
        margin: 0 auto;
    }
    .ua-hero-float-badge.top-left {
        top: 3% !important;
        left: -6px !important;
        transform: scale(0.82);
        transform-origin: top left;
    }
    .ua-hero-float-badge.bottom-right {
        bottom: 3% !important;
        right: -6px !important;
        transform: scale(0.82);
        transform-origin: bottom right;
    }
    .ua-footer-main {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 60px;
    }
    .ua-header-inner {
        padding: 0 0.85rem;
        gap: 0.45rem;
    }
    .ua-logo {
        gap: 0.5rem;
    }
    .ua-logo img {
        height: 32px !important;
    }
    .ua-logo-tagline {
        display: none !important;
    }
    .ua-logo-name {
        font-size: 1.05rem;
        letter-spacing: -0.2px;
    }
    .ua-nav-actions {
        gap: 0.25rem;
    }
    .ua-nav-btn {
        width: 38px;
        height: 38px;
        font-size: 1.05rem;
    }
    #btn-login {
        padding: 0.35rem 0.65rem;
        font-size: 0.8rem;
    }
    .ua-search {
        display: none;
    }
    .ua-mobile-toggle {
        display: flex;
        width: 38px;
        height: 38px;
    }
    .ua-service-badge {
        display: none;
    }
    .ua-hero {
        min-height: auto;
        padding-top: 1rem;
        padding-bottom: 2rem;
        overflow: hidden;
    }
    .ua-hero-content {
        padding: 1.5rem 1rem 2rem 1rem;
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .ua-hero-text h1 {
        font-size: clamp(1.85rem, 7vw, 2.5rem);
    }
    .ua-hero-text p {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }
    .ua-hero-actions .btn-ua {
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
    }
    .ua-hero-float-badge.top-left {
        left: 0;
        top: 5%;
    }
    .ua-hero-float-badge.bottom-right {
        right: 0;
        bottom: 5%;
    }
    .ua-hero-image-wrapper::before {
        inset: -4px;
    }
    .ua-hero-stats {
        gap: 1.5rem;
        flex-wrap: wrap;
        margin-top: 2rem;
        padding-top: 1.5rem;
    }
    .ua-categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .ua-products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    .ua-footer-main {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .ua-footer-bottom-inner {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    .ua-service-options {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .ua-header-inner {
        padding: 0 0.45rem;
        gap: 0.2rem;
    }
    .ua-logo img {
        height: 28px !important;
    }
    .ua-logo-name {
        font-size: 0.92rem;
        letter-spacing: -0.2px;
        white-space: nowrap;
    }
    .ua-logo-tagline {
        display: none !important;
    }
    .ua-nav-actions {
        gap: 0.2rem !important;
        flex-wrap: nowrap !important;
    }
    .ua-nav-btn {
        width: 35px !important;
        height: 35px !important;
        font-size: 0.95rem !important;
        flex-shrink: 0 !important;
    }
    .ua-login-text {
        display: none !important;
    }
    #btn-login {
        width: 35px !important;
        height: 35px !important;
        padding: 0 !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        border-radius: var(--radius-md) !important;
        font-size: 0.85rem !important;
        flex-shrink: 0 !important;
    }
    #btn-shop .ua-nav-label {
        display: none !important;
    }
    #btn-shop {
        width: 35px !important;
        height: 35px !important;
        padding: 0 !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        border-radius: var(--radius-md) !important;
        box-shadow: none !important;
        flex-shrink: 0 !important;
    }
    .ua-products-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.65rem !important;
    }
    .ua-categories-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.65rem !important;
    }
    .ua-hero-stats {
        gap: 1rem;
        justify-content: center;
    }
    .ua-hero-actions {
        flex-direction: column;
        width: 100%;
    }
    .ua-hero-actions .btn-ua {
        width: 100%;
        justify-content: center;
    }
    /* Mobile Product Card Typography & Layout */
    .ua-product-info {
        padding: 0.65rem 0.65rem 0.75rem !important;
    }
    .ua-product-category {
        font-size: 0.64rem !important;
        margin-bottom: 0.2rem !important;
        letter-spacing: 0.3px !important;
        line-height: 1.2 !important;
    }
    .ua-product-name {
        font-size: 0.82rem !important;
        font-weight: 700 !important;
        line-height: 1.25 !important;
        margin-bottom: 0.35rem !important;
        -webkit-line-clamp: 3 !important;
        line-clamp: 3 !important;
        max-height: 3.2rem !important;
    }
    .ua-product-price {
        gap: 0.3rem !important;
        align-items: baseline !important;
    }
    .ua-product-price .current {
        font-size: 0.95rem !important;
        font-weight: 800 !important;
    }
    .ua-product-price .mrp, .ua-product-price .discount {
        display: none !important;
    }
    .ua-product-badges {
        top: 0.35rem !important;
        left: 0.35rem !important;
        gap: 0.2rem !important;
    }
    .ua-badge-featured {
        display: none !important;
    }
    .ua-badge {
        padding: 0.15rem 0.45rem !important;
        font-size: 0.62rem !important;
    }
}

/* Mobile Navigation Drawer Overlay & Panel */
.ua-mobile-drawer-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(15, 23, 42, 0.75);
    backdrop-filter: blur(4px);
    z-index: 9998;
}
.ua-mobile-drawer-overlay.show {
    display: block;
}

.ua-mobile-drawer {
    position: fixed;
    top: 0; right: 0; bottom: 0;
    width: 290px;
    max-width: 85vw;
    background: var(--navy-900);
    color: #fff;
    z-index: 9999;
    transform: translateX(100%);
    transition: transform var(--transition-base);
    box-shadow: -4px 0 25px rgba(0,0,0,0.4);
    display: flex;
    flex-direction: column;
}
.ua-mobile-drawer.show {
    transform: translateX(0);
}
.ua-mobile-drawer-header {
    padding: 1.15rem 1.25rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.ua-mobile-drawer-close {
    background: none;
    border: none;
    color: #fff;
    font-size: 1.6rem;
    cursor: pointer;
    line-height: 1;
}
.ua-mobile-drawer-menu {
    list-style: none;
    padding: 0.75rem 0;
    margin: 0;
    flex: 1;
    overflow-y: auto;
}
.ua-mobile-drawer-menu li a {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.8rem 1.25rem;
    color: var(--navy-200);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: background var(--transition-fast);
}
.ua-mobile-drawer-menu li a:hover {
    background: rgba(255,255,255,0.08);
    color: #fff;
}
.ua-mobile-drawer-menu li.divider {
    height: 1px;
    background: rgba(255,255,255,0.1);
    margin: 0.5rem 0;
}

/* Shop Filter Drawer Overlay & Sidebar for Mobile Viewports (< 992px) */
@media (max-width: 992px) {
    .container-ua[style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }
    .ua-mobile-filter-bar {
        display: block !important;
    }
    .ua-shop-sidebar-mobile-header {
        display: flex !important;
    }
    .ua-shop-sidebar {
        position: fixed;
        top: 0; left: 0; bottom: 0;
        width: 300px;
        max-width: 85vw;
        background: #ffffff;
        z-index: 9999;
        transform: translateX(-100%);
        transition: transform var(--transition-base);
        box-shadow: 4px 0 25px rgba(0,0,0,0.35);
        padding: 1.25rem !important;
        overflow-y: auto;
    }
    .ua-shop-sidebar.show {
        transform: translateX(0);
    }
    .ua-shop-filter-overlay {
        display: none;
        position: fixed;
        top: 0; left: 0; right: 0; bottom: 0;
        background: rgba(15, 23, 42, 0.7);
        backdrop-filter: blur(4px);
        z-index: 9998;
    }
    .ua-shop-filter-overlay.show {
        display: block;
    }
}

/* ============================================================
   21. UTILITY CLASSES
   ============================================================ */
.text-gold { color: var(--gold-500) !important; }
.text-navy { color: var(--navy-700) !important; }
.text-muted { color: var(--text-muted) !important; }
.text-success { color: var(--success) !important; }
.text-danger { color: var(--danger) !important; }

.bg-navy { background: var(--navy-800) !important; }
.bg-gold { background: var(--gold-500) !important; }

.container-ua {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-padding {
    padding: 5rem 1.5rem;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Smooth page transitions */
.page-enter {
    animation: fadeInUp 0.4s ease forwards;
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   UA PROFESSIONAL CENTERED PAGINATION COMPONENT
   ============================================================ */
.ua-pagination-wrapper {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    margin: 3rem 0 1.5rem 0 !important;
    width: 100% !important;
}

.ua-pagination,
.pagination {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.45rem !important;
    list-style: none !important;
    padding: 0.5rem 0.85rem !important;
    margin: 0 auto !important;
    background: #ffffff !important;
    border: 1px solid rgba(0, 31, 63, 0.12) !important;
    border-radius: 50px !important;
    box-shadow: 0 4px 20px rgba(0, 31, 63, 0.08) !important;
    flex-wrap: wrap !important;
}

.ua-page-item,
.page-item {
    list-style: none !important;
    display: inline-flex !important;
    margin: 0 !important;
    padding: 0 !important;
}

.ua-page-link,
.page-link {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-width: 42px !important;
    height: 42px !important;
    padding: 0 0.85rem !important;
    border-radius: 50px !important;
    background: transparent !important;
    color: #001f3f !important;
    font-size: 0.95rem !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1) !important;
    border: 1px solid transparent !important;
    user-select: none !important;
}

.ua-page-link:hover,
.page-link:hover {
    color: #ffffff !important;
    background: #001f3f !important;
    border-color: #001f3f !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(0, 31, 63, 0.25) !important;
}

.ua-page-item.active .ua-page-link,
.page-item.active .page-link,
.page-item.active span {
    background: linear-gradient(135deg, #d4af37 0%, #b89628 100%) !important;
    color: #001226 !important;
    font-weight: 700 !important;
    box-shadow: 0 4px 14px rgba(212, 175, 55, 0.4) !important;
    border-color: #e6ca65 !important;
    transform: scale(1.05) !important;
}

.ua-page-item.disabled .ua-page-link,
.page-item.disabled .page-link {
    color: #cbd5e1 !important;
    cursor: not-allowed !important;
    pointer-events: none !important;
    background: transparent !important;
    border-color: transparent !important;
    transform: none !important;
    box-shadow: none !important;
}

.ua-page-dots {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #94a3b8 !important;
    font-weight: 700 !important;
    padding: 0 0.4rem !important;
    user-select: none !important;
}

.ua-page-prev,
.ua-page-next {
    font-size: 0.85rem !important;
}
/* ============================================================
   FLOATING WHATSAPP BUTTON COMPONENT
   ============================================================ */
.ua-whatsapp-float {
    position: fixed !important;
    bottom: 2rem !important;
    left: 2rem !important;
    width: 60px !important;
    height: 60px !important;
    background: #25d366 !important;
    color: #ffffff !important;
    border-radius: 50% !important;
    text-align: center !important;
    font-size: 32px !important;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45) !important;
    z-index: 9999 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-decoration: none !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    animation: ua-wa-pulse 2.5s infinite !important;
}

.ua-whatsapp-float:hover {
    transform: scale(1.1) translateY(-3px) !important;
    background: #20ba59 !important;
    color: #ffffff !important;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6) !important;
}

.ua-whatsapp-float i {
    color: #ffffff !important;
    line-height: 1 !important;
}

.ua-whatsapp-tooltip {
    position: absolute !important;
    left: 70px !important;
    background: #001f3f !important;
    color: #ffffff !important;
    padding: 0.4rem 0.85rem !important;
    border-radius: 20px !important;
    font-size: 0.8rem !important;
    font-weight: 600 !important;
    white-space: nowrap !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transform: translateX(-10px) !important;
    transition: all 0.25s ease !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2) !important;
    pointer-events: none !important;
}

.ua-whatsapp-tooltip::before {
    content: '' !important;
    position: absolute !important;
    right: 100% !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    border: 5px solid transparent !important;
    border-right-color: #001f3f !important;
}

.ua-whatsapp-float:hover .ua-whatsapp-tooltip {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateX(0) !important;
}

@keyframes ua-wa-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
    }
    70% {
        box-shadow: 0 0 0 16px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@media (max-width: 768px) {
    .ua-whatsapp-float {
        bottom: 1.5rem !important;
        left: 1.5rem !important;
        width: 52px !important;
        height: 52px !important;
        font-size: 28px !important;
    }
}