

.heading-large {
    text-transform: none !important;
}

.heading-medium {
    text-transform: none !important;
}

/* Wyjątek dla Newsletter */
#newsletter .heading-large {
    text-transform: uppercase !important;
}

.hero-section {
    min-height: 70vh !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.timeline-description,
.timeline-role,
.timeline-achievements li,
.intro-text,
.philosophy-text,
.philosophy-quote,
.cta-text {
    text-transform: none !important;
}

.serotonina-shop {
    font-family: 'Inter', sans-serif;
    background: #FAF9F6;
    min-height: 100vh;
    padding: 0;
    margin: 0;
}

.shop-hero {
    text-align: center;
    padding: 4rem 2rem 2rem 2rem;
    background: #FAF9F6;
    position: relative;
}

.shop-hero h1 {
    font-family: 'Abril Fatface', serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    color: #004100;
    margin: 0 0 1rem 0;
    text-transform: none !important;
}

.shop-hero p {
    font-size: 1.2rem;
    color: #666;
    margin: 0;
    text-transform: none !important;
    font-weight: 300;
}

.shop-main {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.product-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    position: relative;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.8s ease;
    z-index: 1;
}

.product-card:hover::before {
    left: 100%;
}

.product-card:hover {
    transform: translateY(-8px);
    border-color: #004100;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.product-image-container {
    position: relative;
    height: 280px;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #004100;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    z-index: 2;
    text-transform: none !important;
}

.product-badge.sale {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
}

.product-content {
    padding: 2rem;
    position: relative;
    z-index: 2;
}

.product-category {
    color: #8B4513;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #222;
    margin-bottom: 1rem;
    line-height: 1.3;
    text-transform: none !important;
}

.product-excerpt {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.5;
    text-transform: none !important;
    font-size: 1rem;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.stars {
    color: #ffb400;
    font-size: 1rem;
}

.rating-count {
    color: #666;
    font-size: 0.9rem;
}

.product-price {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.price-current {
    color: #004100;
}

.price-original {
    color: #999;
    text-decoration: line-through;
    font-size: 1.3rem;
    font-weight: 500;
}

.product-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.add-to-cart-btn {
    background: linear-gradient(135deg, #004100, #006600);
    color: white;
    border: none;
    padding: 0.9rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 1;
    font-size: 1rem;
    text-transform: none !important;
    position: relative;
    overflow: hidden;
}

.add-to-cart-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.add-to-cart-btn:hover::before {
    left: 100%;
}

.add-to-cart-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 65, 0, 0.3);
    background: linear-gradient(135deg, #005500, #008800);
}

.add-to-cart-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.add-to-cart-btn:disabled::before {
    display: none;
}

.wishlist-btn {
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(0, 65, 0, 0.2);
    padding: 0.9rem;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.wishlist-btn:hover {
    background: #004100;
    color: white;
    transform: scale(1.1);
}

.products-loading {
    text-align: center;
    padding: 4rem 2rem;
    color: #666;
    grid-column: 1 / -1;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(0, 65, 0, 0.1);
    border-top: 3px solid #004100;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.out-of-stock .product-image {
    filter: grayscale(50%);
    opacity: 0.7;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .shop-main {
        padding: 2rem 1rem;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
    }
    
    .product-content {
        padding: 1.5rem;
    }
    
    .shop-hero {
        padding: 3rem 1rem 2rem 1rem;
    }
}

/* Floating elements for atmosphere */
.shop-hero::before {
    content: '☕';
    position: absolute;
    top: 20%;
    left: 10%;
    font-size: 2rem;
    opacity: 0.1;
    animation: float 8s ease-in-out infinite;
}

.shop-hero::after {
    content: '🫘';
    position: absolute;
    bottom: 20%;
    right: 10%;
    font-size: 2rem;
    opacity: 0.1;
    animation: float 8s ease-in-out infinite reverse;
}

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

.motto-main-text,
.motto-secondary-text {
    text-transform: uppercase !important;
    letter-spacing: 0.02em;
}