/* Base & Reset - Kopia stylów spójna z resztą projektu */
body {
    background-color: #fafafa;
    color: #1f2937;
    overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #fafafa; 
}
::-webkit-scrollbar-thumb {
    background: #d1d5db; 
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #b89f5e; 
}

/* Typography & Colors */
.text-gold-gradient {
    background: linear-gradient(to right, #b89f5e, #e6d5a7, #b89f5e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% auto;
    animation: shine 5s linear infinite;
}

@keyframes shine {
    to { background-position: 200% center; }
}

/* Custom Background Classes (Tailwind extension fallback) */
.bg-premium-charcoal {
    background-color: #1f2937; /* Ciemny szary / Charcoal */
}

.bg-premium-dark {
    background-color: #111827; /* Bardzo ciemny */
}

.text-premium-gold {
    color: #b89f5e;
}

.border-premium-gold {
    border-color: #b89f5e;
}

.bg-premium-gold {
    background-color: #b89f5e;
}

/* Glassmorphism Panels */
.glass-panel {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(184, 159, 94, 0.1);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.glass-panel:hover {
    border-color: rgba(184, 159, 94, 0.3);
    box-shadow: 0 20px 40px -12px rgba(184, 159, 94, 0.15);
}

/* Hero Overlay */
.hero-overlay {
    background: linear-gradient(to bottom, rgba(31, 41, 55, 0.7) 0%, rgba(250, 250, 250, 1) 95%);
}

/* Product Card Specifics */
.product-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.product-image-container {
    overflow: hidden;
}

.product-image-container img {
    transition: transform 0.5s ease;
}

.product-card:hover .product-image-container img {
    transform: scale(1.05);
}

/* Checkmark List */
.check-list li {
    position: relative;
    padding-left: 1.5rem;
}
.check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #b89f5e;
    font-weight: bold;
}

/* Badge Pulse */
.badge-pulse {
    animation: pulse-gold 2s infinite;
}

@keyframes pulse-gold {
    0% { box-shadow: 0 0 0 0 rgba(184, 159, 94, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(184, 159, 94, 0); }
    100% { box-shadow: 0 0 0 0 rgba(184, 159, 94, 0); }
}

/* Checkbox Styling */
input[type="checkbox"] {
    accent-color: #b89f5e;
}
