@import url('https://cdn.jsdelivr.net/gh/rastikerdar/vazirmatn@v33.003/Vazirmatn-font-face.css');

:root {
    /* Color Palette - Premium Nature Theme */
    --primary-color: #0d2818; /* Deep Forest */
    --primary-light: #1b4332;
    --secondary-color: #2d6a4f;
    --accent-color: #ef233c; /* Elegant Red */
    --gold: #fcc201; /* Luxury Gold */
    --gold-dark: #b8860b;
    --bg-light: #fdfdfd;
    --bg-secondary: #f4f7f5;
    --text-dark: #020100;
    --text-muted: #576574;
    --white: #ffffff;
    
    /* Shadows & Effects */
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow-md: 0 10px 20px -5px rgba(0,0,0,0.08);
    --shadow-lg: 0 20px 40px -10px rgba(0,0,0,0.12);
    --glass: rgba(255, 255, 255, 0.7);
    --glass-dark: rgba(13, 40, 24, 0.85);
    
    /* Spacing & Borders */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 32px;
    --container-max: 1200px;
    --container-narrow: 600px;
}

/* --- Base Animations --- */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

@keyframes pulse-gold {
    0% { box-shadow: 0 0 0 0 rgba(252, 194, 1, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(252, 194, 1, 0); }
    100% { box-shadow: 0 0 0 0 rgba(252, 194, 1, 0); }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Vazirmatn', sans-serif;
    -webkit-tap-highlight-color: transparent;
}

body {
    direction: rtl;
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    padding-bottom: 70px; /* Space for bottom nav */
}

@media (min-width: 768px) {
    body { padding-bottom: 0; }
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
}

.container-narrow {
    max-width: var(--container-narrow);
}

/* --- Skeleton Loader --- */
@keyframes shimmer {
    0% { background-position: -468px 0; }
    100% { background-position: 468px 0; }
}

.skeleton {
    background: #f6f7f8;
    background-image: linear-gradient(90deg, #f6f7f8 0%, #edeef1 20%, #f6f7f8 40%, #f6f7f8 100%);
    background-repeat: no-repeat;
    background-size: 800px 104px;
    display: inline-block;
    position: relative;
    animation: shimmer 1.5s infinite linear;
}

.skeleton-card {
    height: 120px;
    width: 100%;
    border-radius: var(--radius-md);
    margin-bottom: 15px;
}

/* --- Responsive Helpers --- */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; }
.grid-3 { display: grid; grid-template-columns: repeat(1, 1fr); gap: 20px; }
.grid-4 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; }

/* Product List Grid */
.product-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Mobile: 2 columns */
    gap: 15px;
    padding: 0;
}

@media (min-width: 576px) {
    .product-list {
        grid-template-columns: repeat(3, 1fr); /* Tablet: 3 columns */
        gap: 20px;
    }
}

@media (min-width: 768px) {
    .grid-3 { grid-template-columns: repeat(3, 1fr); }
    .grid-4 { grid-template-columns: repeat(4, 1fr); }
    .hero { padding: 100px 20px !important; }
    .hero h1 { font-size: 3.5rem !important; }
    
    .product-list {
        grid-template-columns: repeat(4, 1fr); /* Laptop/Desktop: 4 columns */
        gap: 25px;
    }
}

@media (min-width: 1024px) {
    .product-list {
        grid-template-columns: repeat(5, 1fr); /* Large Desktop: 5 columns */
    }
}

/* Product Card Typography Adjustments */
.product-title {
    font-size: 0.9rem !important;
}
.product-card .description {
    font-size: 0.75rem !important;
}

@media (min-width: 576px) {
    .product-title {
        font-size: 1rem !important;
    }
    .product-card .description {
        font-size: 0.8rem !important;
    }
}

@media (min-width: 768px) {
    .product-title {
        font-size: 1.1rem !important;
    }
    .product-card .description {
        font-size: 0.85rem !important;
    }
}

@media (max-width: 767px) {
    .hide-mobile { display: none !important; }
}

/* --- Typography --- */
h1, h2, h3 {
    font-weight: 800;
    letter-spacing: -0.02em;
}

.text-muted { color: var(--text-muted); }
.text-accent { color: var(--accent-color); }
.text-gold { color: var(--gold-dark); }

/* --- Components --- */
header {
    background: var(--glass);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0,0,0,0.04);
}

.logo-text {
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--primary-color);
    display: flex; align-items: center;
    gap: 8px;
}

.desktop-nav {
    display: none;
    gap: 30px;
    font-weight: 700;
    font-size: 0.95rem;
}

.desktop-nav a:hover { color: var(--secondary-color); }

@media (min-width: 768px) {
    .desktop-nav { display: flex; }
    .bottom-nav { display: none !important; }
}

.logo-text i {
    color: var(--secondary-color);
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

/* Hero Section */
.hero-section {
    position: relative;
    background: url('https://images.unsplash.com/photo-1610832958506-aa56368176cf?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
    min-height: 80vh;
    display: flex;
    align-items: center;
    margin-top: -80px; /* Pull up behind header */
    padding-top: 80px;
    color: var(--white);
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to left, rgba(13, 40, 24, 0.9) 0%, rgba(13, 40, 24, 0.6) 50%, rgba(13, 40, 24, 0.2) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    padding: 40px 0;
}

.hero-badge {
    display: inline-block;
    background: rgba(252, 194, 1, 0.2);
    color: var(--gold);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 20px;
    border: 1px solid rgba(252, 194, 1, 0.3);
}

.hero-title {
    font-size: 3rem;
    line-height: 1.3;
    margin-bottom: 20px;
    font-weight: 900;
}

.hero-subtitle {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 40px;
    opacity: 0.9;
}

.hero-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-lg {
    padding: 15px 30px;
    font-size: 1.1rem;
    border-radius: 50px;
}

/* Trust Section */
.trust-section {
    margin-top: -50px;
    position: relative;
    z-index: 10;
    margin-bottom: 60px;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

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

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

.trust-icon {
    width: 60px;
    height: 60px;
    background: var(--bg-secondary);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 15px;
    transition: transform 0.3s;
}

.trust-item:hover .trust-icon {
    transform: translateY(-5px);
    background: var(--primary-color);
    color: var(--white);
}

.trust-item h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.trust-item p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Section Headers */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.view-all-link {
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.view-all-link:hover {
    color: var(--primary-color);
}

/* Categories Section */
.categories-section {
    margin-bottom: 80px;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

@media (min-width: 768px) {
    .category-grid { grid-template-columns: repeat(4, 1fr); gap: 25px; }
}

.category-card {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 4/5;
    display: block;
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.category-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 60%);
}

.category-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    z-index: 2;
    color: var(--white);
}

.category-info h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.category-info span {
    font-size: 0.85rem;
    opacity: 0.8;
}

.category-card:hover img {
    transform: scale(1.1);
}

/* Promo Banner */
.promo-banner {
    background: var(--primary-color);
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    margin-bottom: 80px;
    color: var(--white);
}

@media (min-width: 768px) {
    .promo-banner { flex-direction: row; align-items: center; }
}

.promo-content {
    padding: 40px;
    flex: 1;
}

.promo-content h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--gold);
}

.promo-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
    line-height: 1.8;
}

.promo-image {
    flex: 1;
    min-height: 300px;
}

.promo-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Testimonials */
.testimonials-section {
    margin-bottom: 80px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 768px) {
    .testimonials-grid { grid-template-columns: repeat(3, 1fr); }
}

.testimonial-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    position: relative;
}

.testimonial-card::before {
    content: '\f10e';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 3rem;
    color: var(--bg-secondary);
    opacity: 0.5;
}

.stars {
    color: var(--gold);
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.testimonial-card p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
    position: relative;
    z-index: 2;
}

.customer-info strong {
    display: block;
    color: var(--primary-color);
}

.customer-info span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Cards */
.card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 20px;
    margin-bottom: 24px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0,0,0,0.02);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.card:active {
    transform: scale(0.97);
    box-shadow: var(--shadow-sm);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    gap: 10px;
    transition: 0.3s;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
    box-shadow: 0 10px 20px -5px rgba(13, 40, 24, 0.3);
}

.btn-primary:active { transform: translateY(2px); }

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-accent {
    background: var(--accent-color);
    color: var(--white);
    box-shadow: 0 10px 20px -5px rgba(239, 35, 60, 0.3);
}

/* Forms */
.form-group { margin-bottom: 20px; }
.form-group label {
    display: block;
    font-weight: 700;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: var(--primary-color);
}

input, select, textarea {
    width: 100%;
    padding: 14px 18px;
    background: var(--bg-secondary);
    border: 2px solid transparent;
    border-radius: var(--radius-md);
    font-size: 1rem;
    color: var(--text-dark);
    transition: 0.3s;
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    background: var(--white);
    box-shadow: var(--shadow-md);
}

/* Quick Menu Grid */
.quick-menu {
    display: grid;
    gap: 16px;
    margin: 20px 0;
}

.menu-item {
    background: var(--white);
    padding: 24px 16px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0,0,0,0.02);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.menu-item i {
    font-size: 2rem;
    color: var(--secondary-color);
}

/* Product Cards */
.product-card {
    display: flex;
    gap: 18px;
    align-items: center;
    padding: 16px;
}

.product-img {
    width: 90px;
    height: 90px;
    border-radius: var(--radius-md);
    object-fit: cover;
    background: var(--bg-secondary);
    box-shadow: var(--shadow-sm);
}

/* Status Badges */
.status-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 800;
}

.status-new { background: #e0f2fe; color: #0369a1; }
.status-pending { background: #fef3c7; color: #92400e; }
.status-done { background: #dcfce7; color: #166534; }

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

section {
    animation: fadeInUp 0.7s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }

/* Sections */
section { padding: 32px 0; }
.section-title {
    font-size: 1.4rem;
    font-weight: 900;
    margin-bottom: 24px;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 12px;
}

.section-title::after {
    content: '';
    flex: 1;
    height: 2px;
    background: linear-gradient(to left, rgba(0,0,0,0.05), transparent);
}

/* Special UI Elements */
.premium-border {
    position: relative;
    padding: 2px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: var(--radius-md);
}

.premium-border > * {
    background: var(--white);
    border-radius: calc(var(--radius-md) - 2px);
}

.active-filter {
    background: var(--primary-color) !important;
    color: white !important;
    transform: scale(1.05);
    box-shadow: var(--shadow-md);
}

/* --- Header Upgrade --- */
header {
    background: var(--glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 18px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255,255,255,0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

header.scrolled {
    padding: 10px 0;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: var(--shadow-md);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.logo-text {
    font-size: 1.7rem;
    font-weight: 900;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
}

.logo-text i {
    color: var(--secondary-color);
    font-size: 1.4rem;
    animation: float 3s ease-in-out infinite;
}

header.scrolled .logo-text {
    font-size: 1.5rem;
}

.desktop-nav {
    display: none;
    gap: 35px;
    font-weight: 700;
    font-size: 0.95rem;
}

.desktop-nav a {
    position: relative;
    color: var(--primary-color);
    padding: 8px 0;
    opacity: 0.8;
}

.desktop-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-dark));
    border-radius: 10px;
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.desktop-nav a:hover {
    opacity: 1;
    color: var(--secondary-color);
}

.desktop-nav a:hover::after,
.desktop-nav a.active::after {
    width: 100%;
}

.desktop-nav a.active {
    opacity: 1;
    color: var(--primary-color);
}

.header-actions {
    display: flex;
    gap: 20px;
    align-items: center;
}

.header-icon-btn {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--primary-color);
    background: rgba(0,0,0,0.03);
    transition: 0.3s;
}

.header-icon-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

.header-icon-btn.premium {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--primary-color);
    animation: pulse-gold 2s infinite;
}

@media (min-width: 768px) {
    .desktop-nav { display: flex; }
    .bottom-nav { display: none !important; }
}

/* --- Navigation --- */
.bottom-nav {
    position: fixed;
    bottom: 20px; 
    left: 20px; 
    right: 20px;
    background: var(--glass-dark);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    display: flex;
    justify-content: space-around;
    padding: 12px 10px;
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
    z-index: 1000;
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    font-size: 0.75rem;
    font-weight: 700;
    color: rgba(255,255,255,0.6);
    padding: 8px 15px;
    border-radius: 16px;
    transition: 0.3s;
}

.nav-item i {
    font-size: 1.4rem;
    transition: 0.3s;
}

.nav-item.active {
    color: var(--gold);
    background: rgba(255,255,255,0.1);
}

.nav-item.active i {
    transform: translateY(-2px);
    text-shadow: 0 0 10px rgba(252, 194, 1, 0.5);
}

.back-to-top {
    position: fixed;
    bottom: 100px;
    left: 25px;
    width: 45px;
    height: 45px;
    background: var(--white);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    border: 1px solid rgba(0,0,0,0.05);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-5px);
}

@media (min-width: 768px) {
    .back-to-top { bottom: 30px; }
}

/* --- Footer Upgrade --- */
.footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 80px 0 120px; /* Space for bottom nav on mobile */
    margin-top: 50px;
    border-radius: 60px 60px 0 0;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
}

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

.footer-logo {
    font-size: 2.2rem;
    font-weight: 900;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--gold);
}

.footer-logo i {
    animation: float 4s ease-in-out infinite;
}

.footer-about {
    color: rgba(255,255,255,0.6);
    line-height: 1.8;
    margin-bottom: 30px;
    font-size: 0.95rem;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.social-btn {
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.05);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--gold);
    transition: 0.3s;
    border: 1px solid rgba(255,255,255,0.1);
}

.social-btn:hover {
    background: var(--gold);
    color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(252, 194, 1, 0.2);
}

.footer-links-title {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 30px;
    color: var(--white);
    position: relative;
    padding-bottom: 10px;
}

.footer-links-title::after {
    content: '';
    position: absolute;
    bottom: 0; right: 0;
    width: 40px;
    height: 3px;
    background: var(--gold);
    border-radius: 10px;
}

.footer-link-list {
    list-style: none;
}

.footer-link-list li {
    margin-bottom: 15px;
}

.footer-link-list a {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
}

.footer-link-list a:hover {
    color: var(--gold);
    transform: translateX(-5px);
}

.footer-contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    color: rgba(255,255,255,0.7);
}

.footer-contact-item i {
    color: var(--gold);
    font-size: 1.2rem;
    width: 24px;
    height: 24px;
    background: rgba(255,255,255,0.05);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-bottom {
    margin-top: 60px;
    padding: 30px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.4);
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.trust-badges {
    display: flex;
    gap: 20px;
    opacity: 0.6;
    filter: grayscale(1);
    transition: 0.3s;
}

.trust-badges:hover {
    opacity: 1;
    filter: grayscale(0);
}

.trust-badge-placeholder {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px dashed rgba(252, 194, 1, 0.3);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--gold);
    font-size: 0.65rem;
    transition: 0.3s;
    cursor: help;
}

.trust-badge-placeholder i {
    font-size: 1.5rem;
    opacity: 0.8;
}

.trust-badge-placeholder:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--gold);
}

.trust-badge {
    height: 40px;
    background: white;
    padding: 5px;
    border-radius: 8px;
}
