* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

.header {
    background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
    color: white;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    text-decoration: none;
    color: white;
    display: flex;
    align-items: center;
}

.logo-img {
    height: 75px;
    width: auto;
    filter: brightness(0) invert(1);
    transition: filter 0.3s ease;
}

.logo:hover .logo-img {
    filter: brightness(0) invert(1) drop-shadow(0 0 5px rgba(255,255,255,0.5));
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

.nav {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav a {
    color: white;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.nav a:hover,
.nav a.active {
    background-color: rgba(255,255,255,0.2);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.main-content {
    padding: 2rem 0;
    min-height: calc(100vh - 200px);
}

.hero {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 4rem 0;
    margin-bottom: 3rem;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.btn {
    display: inline-block;
    background: #e74c3c;
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.btn-secondary {
    background: #3498db;
}

.btn-secondary:hover {
    background: #2980b9;
}

.hero-banner {
    position: relative;
    height: 70vh;
    min-height: 500px;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), 
                url('../images/modern-wooden-table-in-minimalist-interior-7475.webp');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    margin-bottom: 0;
}

.hero-content {
    background: rgba(0,0,0,0.3);
    padding: 3rem 2rem;
    border-radius: 15px;
    backdrop-filter: blur(5px);
    max-width: 800px;
    width: 100%;
    margin: 0 2rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    color: #f8f9fa;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.7);
    font-weight: 400;
}

.hero-cta-btn {
    display: inline-block;
    background: #e67e22;
    color: white;
    padding: 1.2rem 3rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(230, 126, 34, 0.4);
    border: 2px solid transparent;
}

.hero-cta-btn:hover {
    background: #d35400;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(230, 126, 34, 0.6);
    border: 2px solid #f39c12;
}

@media (max-width: 768px) {
    .hero-banner {
        height: 60vh;
        min-height: 400px;
    }
    
    .hero-content {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .hero-cta-btn {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
}

.categories-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #7f8c8d;
    margin-bottom: 3rem;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.category-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
}

.category-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.card-icon {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255,255,255,0.9);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    backdrop-filter: blur(5px);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.card-content {
    padding: 1.5rem;
    text-align: center;
}

.card-content h3 {
    font-size: 1.4rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: 600;
}

.card-content p {
    color: #7f8c8d;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.card-btn {
    display: inline-block;
    background: #e67e22;
    color: white;
    padding: 0.75rem 2rem;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(230, 126, 34, 0.3);
}

.card-btn:hover {
    background: #d35400;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(230, 126, 34, 0.5);
}

@media (max-width: 768px) {
    .categories-section {
        padding: 3rem 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .card-image {
        height: 180px;
    }
    
    .card-content {
        padding: 1.25rem;
    }
}

@media (max-width: 480px) {
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .card-content h3 {
        font-size: 1.2rem;
    }
    
    .card-content p {
        font-size: 0.9rem;
    }
}

.benefits-section {
    padding: 4rem 0;
    background: #ffffff;
    border-top: 1px solid #ecf0f1;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.benefit-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: all 0.3s ease;
    border: 1px solid #f8f9fa;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    border-color: #e67e22;
}

.benefit-icon {
    font-size: 3rem;
    min-width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e67e22, #f39c12);
    border-radius: 50%;
    filter: grayscale(0);
    transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(230, 126, 34, 0.3);
}

.benefit-content {
    flex: 1;
}

.benefit-content h3 {
    font-size: 1.2rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.benefit-content p {
    color: #7f8c8d;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 768px) {
    .benefits-section {
        padding: 3rem 0;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .benefit-card {
        padding: 1.5rem;
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .benefit-icon {
        font-size: 2.5rem;
        min-width: 50px;
        height: 50px;
    }
    
    .benefit-content h3 {
        font-size: 1.1rem;
    }
    
    .benefit-content p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .benefit-card {
        padding: 1.25rem;
    }
    
    .benefit-icon {
        font-size: 2rem;
        min-width: 45px;
        height: 45px;
    }
}

.popular-products-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.product-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

.product-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

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

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

.product-content {
    padding: 1.5rem;
    text-align: center;
}

.product-content h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.product-content p {
    color: #7f8c8d;
    line-height: 1.5;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.product-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: #e67e22;
    margin-bottom: 1.5rem;
}

.add-to-cart-btn {
    background: #e67e22;
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(10px);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-card:hover .add-to-cart-btn {
    opacity: 1;
    transform: translateY(0);
}

.add-to-cart-btn:hover {
    background: #d35400;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(230, 126, 34, 0.4);
}

@media (max-width: 768px) {
    .popular-products-section {
        padding: 3rem 0;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .product-image {
        height: 200px;
    }
    
    .product-content {
        padding: 1.25rem;
    }
    
    .product-content h3 {
        font-size: 1.1rem;
    }
    
    .product-content p {
        font-size: 0.9rem;
    }
    
    .product-price {
        font-size: 1.2rem;
    }
    
    .add-to-cart-btn {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .product-image {
        height: 220px;
    }
    
    .product-content {
        padding: 1.5rem;
    }
    
    .product-content h3 {
        font-size: 1.2rem;
    }
}

.product-card {
    animation: fadeInUp 0.6s ease forwards;
}

.product-card:nth-child(1) { animation-delay: 0.1s; }
.product-card:nth-child(2) { animation-delay: 0.2s; }
.product-card:nth-child(3) { animation-delay: 0.3s; }
.product-card:nth-child(4) { animation-delay: 0.4s; }
.product-card:nth-child(5) { animation-delay: 0.5s; }
.product-card:nth-child(6) { animation-delay: 0.6s; }

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

.grid {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

.grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.grid-4 {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.card {
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.card h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 1rem;
}

.product-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.product-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.product-info {
    padding: 1.5rem;
}

.product-title {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.product-price {
    font-size: 1.5rem;
    font-weight: bold;
    color: #e74c3c;
    margin-bottom: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: #2c3e50;
}

.form-control {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: #3498db;
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.cart-item {
    display: flex;
    align-items: center;
    padding: 1rem;
    border-bottom: 1px solid #eee;
}

.cart-item img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 5px;
    margin-right: 1rem;
}

.cart-item-info {
    flex: 1;
}

.cart-item-price {
    font-weight: bold;
    color: #e74c3c;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0.5rem 0;
}

.quantity-btn {
    background: #3498db;
    color: white;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quantity-btn:hover {
    background: #2980b9;
}

.faq-item {
    background: white;
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.faq-question {
    background: #f8f9fa;
    padding: 1.5rem;
    cursor: pointer;
    border: none;
    width: 100%;
    text-align: left;
    font-size: 1.1rem;
    font-weight: bold;
    color: #2c3e50;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question:hover {
    background: #e9ecef;
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    display: none;
}

.faq-answer.active {
    display: block;
}

.faq-icon {
    transition: transform 0.3s ease;
}

.faq-question.active .faq-icon {
    transform: rotate(180deg);
}

.footer {
    background: #2c3e50;
    color: white;
    padding: 4rem 0 1rem;
    margin-top: 3rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr 1fr;
    gap: 3rem;
}

.footer-section h3 {
    margin-bottom: 1.5rem;
    color: #3498db;
    font-size: 1.2rem;
    border-bottom: 2px solid #3498db;
    padding-bottom: 0.5rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: #e67e22;
    font-size: 1rem;
}

.footer-section p {
    line-height: 1.6;
    margin-bottom: 1rem;
    color: #bdc3c7;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
}

.footer-section ul li a:hover {
    color: #3498db;
}

.contact-info p {
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
}

.contact-info .icon {
    margin-right: 0.5rem;
    font-size: 1.1rem;
}

.contact-info a {
    color: #3498db;
    text-decoration: none;
}

.contact-info a:hover {
    color: #2980b9;
}

.footer-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}

.newsletter-form {
    margin: 1rem 0;
}

.newsletter-form input {
    width: 100%;
    padding: 0.8rem;
    margin-bottom: 0.8rem;
    border: none;
    border-radius: 4px;
    font-size: 0.9rem;
}

.newsletter-form button {
    width: 100%;
    padding: 0.8rem;
    background: #3498db;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: bold;
    transition: background 0.3s ease;
}

.newsletter-form button:hover {
    background: #2980b9;
}

.newsletter-note {
    font-size: 0.8rem;
    color: #95a5a6;
    line-height: 1.4;
}

.legal-links {
    margin-bottom: 2rem;
}

.legal-links li {
    margin-bottom: 0.6rem;
}

.social-links {
    margin-top: 1.5rem;
}

.social-link {
    display: block;
    margin-bottom: 0.5rem;
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: #3498db;
}

.footer-bottom {
    text-align: center;
    padding: 2rem 0;
    border-top: 1px solid #34495e;
    margin-top: 3rem;
    background: #1a252f;
}

.footer-bottom-content p {
    margin: 0.5rem 0;
    color: #bdc3c7;
}

.footer-bottom-content p:first-child {
    font-weight: bold;
    color: white;
}

@media (max-width: 1200px) {
    .footer-content {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-nav {
        grid-template-columns: 1fr;
    }
    
    .footer {
        padding: 2rem 0 1rem;
    }
}

.text-center {
    text-align: center;
}

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

.p-1 { padding: 1rem; }
.p-2 { padding: 2rem; }
.p-3 { padding: 3rem; }

@media (max-width: 768px) {
    .header-content {
        padding: 0 1rem;
    }
    
    .nav-toggle {
        display: block;
    }
    
    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #2c3e50;
        flex-direction: column;
        padding: 1rem;
        gap: 0;
    }
    
    .nav.active {
        display: flex;
    }
    
    .nav a {
        padding: 1rem;
        border-bottom: 1px solid #34495e;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }
    
    .cart-item {
        flex-direction: column;
        text-align: center;
    }
    
    .cart-item img {
        margin: 0 0 1rem 0;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 2rem 0;
    }
    
    .hero h1 {
        font-size: 1.5rem;
    }
    
    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .card {
        padding: 1rem;
    }
    
    .product-info {
        padding: 1rem;
    }
}

.new-products-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.new-products-section .section-title,
.new-products-section .section-subtitle {
    color: white;
}

.slider-container {
    position: relative;
    margin: 40px 0;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}

.slider-track {
    display: flex;
    transition: transform 0.5s ease;
    width: 400%;
}

.slide {
    width: 25%;
    display: flex;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    color: #333;
    min-height: 300px;
}

.slide-image {
    flex: 1;
    overflow: hidden;
}

.slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.slide:hover .slide-image img {
    transform: scale(1.05);
}

.slide-content {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.slide-content h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.slide-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #666;
}

.slide-price {
    font-size: 2rem;
    font-weight: bold;
    color: #e74c3c;
    margin-top: auto;
}

.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}

.slider-btn {
    background: rgba(255,255,255,0.2);
    border: 2px solid white;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background: white;
    color: #667eea;
}

.slider-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: white;
    transform: scale(1.2);
}

.new-products-cta {
    text-align: center;
    margin-top: 40px;
}

.new-products-cta .cta-btn {
    display: inline-block;
    padding: 15px 40px;
    background: white;
    color: #667eea;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.new-products-cta .cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    background: #f8f9fa;
}

@media (max-width: 768px) {
    .new-products-section {
        padding: 40px 0;
    }
    
    .slide {
        flex-direction: column;
        min-height: auto;
    }
    
    .slide-content {
        padding: 30px 20px;
    }
    
    .slide-content h3 {
        font-size: 1.5rem;
    }
    
    .slide-content p {
        font-size: 1rem;
    }
    
    .slide-price {
        font-size: 1.5rem;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

.reviews-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    position: relative;
}

.reviews-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ffffff" opacity="0.05"/><circle cx="75" cy="75" r="1" fill="%23ffffff" opacity="0.05"/><circle cx="50" cy="10" r="0.5" fill="%23ffffff" opacity="0.03"/><circle cx="90" cy="40" r="0.5" fill="%23ffffff" opacity="0.03"/><circle cx="10" cy="80" r="0.5" fill="%23ffffff" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
}

.reviews-carousel {
    position: relative;
    margin: 40px 0;
    overflow: hidden;
    border-radius: 20px;
}

.reviews-track {
    display: flex;
    transition: transform 0.6s ease;
    width: 400%;
}

.review-card {
    width: 25%;
    padding: 0 20px;
    opacity: 0.7;
    transform: scale(0.95);
    transition: all 0.6s ease;
}

.review-card.active {
    opacity: 1;
    transform: scale(1);
}

.review-card > div {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
}

.review-card > div::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 8rem;
    color: #e8f4f8;
    font-family: Georgia, serif;
    line-height: 1;
    z-index: 0;
}

.review-header {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.reviewer-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 20px;
    border: 4px solid #e8f4f8;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.reviewer-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.customer-avatar {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    letter-spacing: 1px;
}

.review-card:nth-child(1) .customer-avatar {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
}

.review-card:nth-child(2) .customer-avatar {
    background: linear-gradient(135deg, #27ae60, #229954);
}

.review-card:nth-child(3) .customer-avatar {
    background: linear-gradient(135deg, #9b59b6, #8e44ad);
}

.review-card:nth-child(4) .customer-avatar {
    background: linear-gradient(135deg, #f39c12, #e67e22);
}

.reviewer-info h4 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 5px;
    font-weight: bold;
}

.reviewer-info p {
    color: #7f8c8d;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.rating {
    display: flex;
    gap: 2px;
}

.star {
    color: #f39c12;
    font-size: 1.1rem;
    filter: drop-shadow(0 1px 2px rgba(0,0,0,0.1));
}

.review-content {
    position: relative;
    z-index: 1;
}

.review-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #34495e;
    font-style: italic;
    margin: 0;
}

.reviews-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    margin-top: 40px;
}

.review-btn {
    background: rgba(255,255,255,0.9);
    border: 2px solid #3498db;
    color: #3498db;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.review-btn:hover {
    background: #3498db;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.3);
}

.review-dots {
    display: flex;
    gap: 12px;
}

.review-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255,255,255,0.6);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid #3498db;
}

.review-dot.active {
    background: #3498db;
    transform: scale(1.2);
    box-shadow: 0 0 0 4px rgba(52, 152, 219, 0.2);
}

@media (max-width: 768px) {
    .reviews-section {
        padding: 40px 0;
    }
    
    .review-card > div {
        padding: 30px 25px;
    }
    
    .review-header {
        flex-direction: column;
        text-align: center;
        margin-bottom: 20px;
    }
    
    .reviewer-photo {
        margin-right: 0;
        margin-bottom: 15px;
        width: 70px;
        height: 70px;
    }
    
    .review-content p {
        font-size: 1rem;
    }
    
    .review-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .review-card > div::before {
        font-size: 6rem;
        top: -5px;
        left: 15px;
    }
}

@media (max-width: 480px) {
    .review-card {
        padding: 0 10px;
    }
    
    .review-card > div {
        padding: 25px 20px;
    }
    
    .reviews-controls {
        gap: 15px;
        margin-top: 30px;
    }
}

.why-choose-us-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.why-choose-us-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
}

.why-choose-us-section .section-title {
    color: white;
    text-align: center;
    margin-bottom: 60px;
    font-size: 2.5rem;
    position: relative;
    z-index: 1;
}

.why-choose-us-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #3498db, #2ecc71);
    border-radius: 2px;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 1;
}

.why-choose-item {
    text-align: center;
    padding: 40px 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.why-choose-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    transform: rotate(45deg) translateX(-100%);
    transition: transform 0.6s ease;
}

.why-choose-item:hover::before {
    transform: rotate(45deg) translateX(100%);
}

.why-choose-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.why-choose-icon {
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.why-choose-icon .icon {
    font-size: 4rem;
    display: inline-block;
    padding: 20px;
    background: linear-gradient(135deg, #3498db, #2ecc71);
    border-radius: 50%;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(52, 152, 219, 0.3);
    transition: all 0.3s ease;
}

.why-choose-item:hover .why-choose-icon .icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(52, 152, 219, 0.5);
}

.why-choose-content {
    position: relative;
    z-index: 1;
}

.why-choose-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: white;
    font-weight: bold;
}

.why-choose-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

@media (max-width: 768px) {
    .why-choose-us-section {
        padding: 60px 0;
    }
    
    .why-choose-us-section .section-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }
    
    .why-choose-grid {
        gap: 30px;
    }
    
    .why-choose-item {
        padding: 30px 20px;
    }
    
    .why-choose-icon .icon {
        font-size: 3rem;
        width: 80px;
        height: 80px;
        padding: 15px;
    }
    
    .why-choose-content h3 {
        font-size: 1.3rem;
    }
    
    .why-choose-content p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .why-choose-item {
        padding: 25px 15px;
    }
}

.blog-section {
    padding: 80px 0;
    background: #f8f9fa;
    position: relative;
}

.blog-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="blogPattern" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M0 20 L20 0 L40 20 L20 40 Z" fill="none" stroke="%23e8f4f8" stroke-width="0.5" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23blogPattern)"/></svg>');
}

.blog-section .section-title {
    position: relative;
    z-index: 1;
}

.blog-section .section-subtitle {
    position: relative;
    z-index: 1;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin: 50px 0;
    position: relative;
    z-index: 1;
}

.blog-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    position: relative;
    border: 1px solid rgba(52, 152, 219, 0.1);
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    border-color: rgba(52, 152, 219, 0.3);
}

.blog-image {
    height: 220px;
    overflow: hidden;
    position: relative;
}

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

.blog-card:hover .blog-image img {
    transform: scale(1.08);
}

.blog-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, #3498db, #2ecc71);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 10px rgba(52, 152, 219, 0.3);
}

.blog-content {
    padding: 30px;
}

.blog-content h3 {
    font-size: 1.4rem;
    color: #2c3e50;
    margin-bottom: 15px;
    line-height: 1.3;
    font-weight: bold;
    transition: color 0.3s ease;
}

.blog-card:hover .blog-content h3 {
    color: #3498db;
}

.blog-excerpt {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.blog-date,
.blog-read-time {
    font-size: 0.85rem;
    color: #95a5a6;
    display: flex;
    align-items: center;
}

.blog-date::before {
    content: '📅';
    margin-right: 5px;
}

.blog-read-time::before {
    content: '⏱️';
    margin-right: 5px;
}

.blog-btn {
    display: inline-block;
    padding: 12px 24px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.blog-btn:hover::before {
    left: 100%;
}

.blog-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(52, 152, 219, 0.4);
    background: linear-gradient(135deg, #2980b9, #3498db);
}

.blog-cta {
    text-align: center;
    margin-top: 50px;
    position: relative;
    z-index: 1;
}

.blog-cta .cta-btn {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(44, 62, 80, 0.3);
}

.blog-cta .cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(44, 62, 80, 0.4);
    background: linear-gradient(135deg, #34495e, #2c3e50);
}

@media (max-width: 768px) {
    .blog-section {
        padding: 60px 0;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin: 40px 0;
    }
    
    .blog-card {
        border-radius: 12px;
    }
    
    .blog-image {
        height: 200px;
    }
    
    .blog-content {
        padding: 25px 20px;
    }
    
    .blog-content h3 {
        font-size: 1.2rem;
    }
    
    .blog-meta {
        flex-direction: column;
        gap: 8px;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .blog-content {
        padding: 20px 15px;
    }
    
    .blog-content h3 {
        font-size: 1.1rem;
    }
    
    .blog-excerpt {
        font-size: 0.9rem;
    }
}

.final-cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(92, 51, 23, 0.95), rgba(139, 69, 19, 0.9)), 
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><defs><pattern id="wood" width="200" height="200" patternUnits="userSpaceOnUse"><rect width="200" height="200" fill="%23654321"/><path d="M0 0 Q50 25 100 0 T200 0 L200 40 Q150 15 100 40 T0 40 Z" fill="%235c3317" opacity="0.8"/><path d="M0 40 Q50 65 100 40 T200 40 L200 80 Q150 55 100 80 T0 80 Z" fill="%238b4513" opacity="0.6"/><path d="M0 80 Q50 105 100 80 T200 80 L200 120 Q150 95 100 120 T0 120 Z" fill="%23654321" opacity="0.9"/><path d="M0 120 Q50 145 100 120 T200 120 L200 160 Q150 135 100 160 T0 160 Z" fill="%235c3317" opacity="0.7"/><path d="M0 160 Q50 185 100 160 T200 160 L200 200 Q150 175 100 200 T0 200 Z" fill="%238b4513" opacity="0.8"/></pattern></defs><rect width="200" height="200" fill="url(%23wood)"/></svg>');
    background-size: 400px 400px;
    color: white;
    position: relative;
    text-align: center;
    overflow: hidden;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.final-cta-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.cta-logo {
    margin-bottom: 30px;
}

.cta-logo-img {
    height: 80px;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.final-cta-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.final-cta-subtitle {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.final-cta-button {
    margin-bottom: 60px;
}

.main-cta-btn {
    display: inline-block;
    padding: 20px 50px;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.4rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s ease;
    box-shadow: 0 8px 30px rgba(231, 76, 60, 0.4);
    position: relative;
    overflow: hidden;
}

.main-cta-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.6s ease;
}

.main-cta-btn:hover::before {
    left: 100%;
}

.main-cta-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(231, 76, 60, 0.6);
    background: linear-gradient(135deg, #c0392b, #e74c3c);
}

.final-cta-contacts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
}

.contact-icon {
    font-size: 2rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 10px;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-info {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.contact-label {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 5px;
}

.contact-value {
    font-size: 1.1rem;
    font-weight: bold;
    color: white;
    text-decoration: none;
}

.contact-value:hover {
    color: #3498db;
}

.final-cta-social h4 {
    margin-bottom: 25px;
    font-size: 1.2rem;
    opacity: 0.9;
}

.social-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.social-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    color: white;
}

.social-btn.facebook:hover {
    background: #3b5998;
    border-color: #3b5998;
}

.social-btn.instagram:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    border-color: #bc1888;
}

.social-btn.youtube:hover {
    background: #ff0000;
    border-color: #ff0000;
}

.social-icon {
    font-size: 1.2rem;
}

.social-text {
    font-weight: bold;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .final-cta-section {
        padding: 80px 0;
    }
    
    .final-cta-title {
        font-size: 2.2rem;
    }
    
    .final-cta-subtitle {
        font-size: 1.1rem;
    }
    
    .main-cta-btn {
        padding: 18px 35px;
        font-size: 1.2rem;
    }
    
    .final-cta-contacts {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
        padding: 15px;
    }
    
    .contact-info {
        text-align: center;
    }
    
    .social-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .social-btn {
        width: 200px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .final-cta-title {
        font-size: 1.8rem;
    }
    
    .final-cta-subtitle {
        font-size: 1rem;
    }
    
    .main-cta-btn {
        padding: 15px 30px;
        font-size: 1.1rem;
    }
    
    .cta-logo-img {
        height: 60px;
    }
}

.shop-hero-section {
    padding: 100px 0 80px;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.9), rgba(52, 73, 94, 0.9)), 
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300"><defs><pattern id="interior" width="300" height="300" patternUnits="userSpaceOnUse"><rect width="300" height="300" fill="%23f8f9fa"/><rect x="0" y="0" width="300" height="150" fill="%23e9ecef"/><rect x="50" y="50" width="200" height="80" fill="%23654321" opacity="0.3"/><rect x="60" y="60" width="180" height="60" fill="%238b4513" opacity="0.5"/><circle cx="150" cy="90" r="40" fill="none" stroke="%23333" stroke-width="2" opacity="0.2"/><rect x="100" y="150" width="100" height="8" fill="%23654321" opacity="0.4"/><rect x="110" y="158" width="80" height="8" fill="%235c3317" opacity="0.4"/><rect x="120" y="166" width="60" height="8" fill="%238b4513" opacity="0.4"/><rect x="130" y="174" width="40" height="8" fill="%23654321" opacity="0.4"/></pattern></defs><rect width="300" height="300" fill="url(%23interior)"/></svg>');
    background-size: 600px 600px;
    background-attachment: fixed;
    color: white;
    position: relative;
    text-align: center;
}

.shop-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.shop-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.shop-hero-title {
    font-size: 3.2rem;
    font-weight: bold;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.shop-hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 50px;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.search-container {
    margin-bottom: 60px;
}

.search-form {
    display: flex;
    justify-content: center;
}

.search-input-group {
    display: flex;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    max-width: 500px;
    width: 100%;
}

.search-input {
    flex: 1;
    padding: 18px 25px;
    border: none;
    font-size: 1.1rem;
    background: transparent;
    color: #333;
    outline: none;
}

.search-input::placeholder {
    color: #666;
    opacity: 0.8;
}

.search-btn {
    padding: 18px 30px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: bold;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.search-btn:hover {
    background: linear-gradient(135deg, #2980b9, #3498db);
    transform: translateX(-2px);
}

.search-icon {
    font-size: 1.2rem;
}

.filters-container {
    margin-top: 40px;
}

.filters-title {
    font-size: 1.3rem;
    margin-bottom: 25px;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 25px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: bold;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    backdrop-filter: blur(10px);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.filter-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.filter-btn.active {
    background: linear-gradient(135deg, #3498db, #2980b9);
    border-color: #3498db;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.4);
}

.filter-icon {
    font-size: 1.1rem;
}

.filter-text {
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .shop-hero-section {
        padding: 80px 0 60px;
        background-attachment: scroll;
    }
    
    .shop-hero-title {
        font-size: 2.4rem;
        margin-bottom: 15px;
    }
    
    .shop-hero-subtitle {
        font-size: 1.2rem;
        margin-bottom: 40px;
    }
    
    .search-input-group {
        max-width: 100%;
        margin: 0 20px;
    }
    
    .search-input {
        padding: 15px 20px;
        font-size: 1rem;
    }
    
    .search-btn {
        padding: 15px 25px;
        font-size: 1rem;
    }
    
    .filters-container {
        margin-top: 30px;
    }
    
    .filter-buttons {
        overflow-x: auto;
        justify-content: flex-start;
        padding: 0 20px 20px;
        scrollbar-width: thin;
        scrollbar-color: rgba(255,255,255,0.3) transparent;
    }
    
    .filter-buttons::-webkit-scrollbar {
        height: 4px;
    }
    
    .filter-buttons::-webkit-scrollbar-track {
        background: rgba(255,255,255,0.1);
        border-radius: 2px;
    }
    
    .filter-buttons::-webkit-scrollbar-thumb {
        background: rgba(255,255,255,0.3);
        border-radius: 2px;
    }
    
    .filter-btn {
        flex-shrink: 0;
        padding: 10px 16px;
        font-size: 0.85rem;
    }
    
    .filter-icon {
        font-size: 1rem;
    }
    
    .filter-text {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .shop-hero-title {
        font-size: 2rem;
    }
    
    .shop-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .search-input-group {
        flex-direction: column;
        border-radius: 15px;
    }
    
    .search-input {
        border-radius: 15px 15px 0 0;
    }
    
    .search-btn {
        border-radius: 0 0 15px 15px;
        justify-content: center;
    }
    
    .filters-title {
        font-size: 1.1rem;
    }
}

.sorting-panel {
    background: #ffffff;
    border-bottom: 2px solid #e9ecef;
    padding: 20px 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 76px;
    z-index: 100;
}

.sorting-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.products-counter {
    flex: 1;
}

.counter-text {
    font-size: 1.1rem;
    color: #2c3e50;
    font-weight: 500;
}

.counter-text strong {
    color: #3498db;
    font-weight: bold;
}

.sorting-controls {
    display: flex;
    align-items: center;
    gap: 12px;
}

.sort-label {
    font-size: 1rem;
    color: #2c3e50;
    font-weight: 500;
    white-space: nowrap;
}

.sort-dropdown {
    position: relative;
    display: inline-block;
}

.sort-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: #f8f9fa;
    border: 2px solid #dee2e6;
    border-radius: 8px;
    padding: 10px 40px 10px 15px;
    font-size: 0.95rem;
    color: #2c3e50;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 180px;
    font-weight: 500;
}

.sort-select:hover {
    border-color: #3498db;
    background: #ffffff;
}

.sort-select:focus {
    outline: none;
    border-color: #3498db;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.sort-arrow {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: #6c757d;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.sort-select:focus + .sort-arrow {
    transform: translateY(-50%) rotate(180deg);
    color: #3498db;
}

@media (max-width: 768px) {
    .sorting-panel {
        top: 70px;
        padding: 15px 0;
    }
    
    .sorting-content {
        flex-direction: column;
        gap: 15px;
        align-items: stretch;
        padding: 0 15px;
    }
    
    .products-counter {
        text-align: center;
        flex: none;
    }
    
    .counter-text {
        font-size: 1rem;
    }
    
    .sorting-controls {
        justify-content: center;
        gap: 10px;
    }
    
    .sort-select {
        min-width: 160px;
        padding: 8px 35px 8px 12px;
        font-size: 0.9rem;
    }
    
    .sort-label {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .sorting-content {
        padding: 0 10px;
    }
    
    .sorting-controls {
        flex-direction: column;
        gap: 8px;
        align-items: center;
    }
    
    .sort-select {
        width: 100%;
        max-width: 250px;
    }
    
    .counter-text {
        font-size: 0.95rem;
    }
    
    .sort-label {
        font-size: 0.9rem;
    }
}

.promo-banner {
    position: relative;
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 50%, #d35400 100%);
    padding: 60px 0;
    margin: 40px 0;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.promo-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHZpZXdCb3g9IjAgMCA0MCA0MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTAgMEw0MCA0MEwwIDQwWiIgZmlsbD0icmdiYSgyNTUsIDI1NSwgMjU1LCAwLjA1KSIvPgo8L3N2Zz4K');
    background-repeat: repeat;
    opacity: 0.3;
}

.promo-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.promo-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.promo-text {
    flex: 1;
    color: white;
}

.promo-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin: 0 0 15px 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.promo-subtitle {
    font-size: 1.2rem;
    margin: 0;
    opacity: 0.95;
    font-weight: 500;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    line-height: 1.4;
}

.promo-action {
    flex-shrink: 0;
}

.promo-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #ffffff;
    color: #d35400;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 700;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    border: 3px solid transparent;
    position: relative;
    overflow: hidden;
}

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

.promo-btn:hover::before {
    left: 100%;
}

.promo-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.3);
    background: #fff;
}

.promo-btn-icon {
    font-size: 1.3rem;
    animation: bounce 2s infinite;
}

.promo-btn-text {
    position: relative;
    z-index: 1;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-3px);
    }
    60% {
        transform: translateY(-2px);
    }
}

.promo-banner::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

.promo-banner.red-variant {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 50%, #a93226 100%);
}

.promo-banner.red-variant .promo-btn {
    color: #c0392b;
}

@media (max-width: 768px) {
    .promo-banner {
        padding: 40px 0;
        margin: 30px 0;
    }
    
    .promo-content {
        flex-direction: column;
        text-align: center;
        gap: 25px;
        padding: 0 15px;
    }
    
    .promo-title {
        font-size: 2rem;
        margin-bottom: 12px;
    }
    
    .promo-subtitle {
        font-size: 1.1rem;
    }
    
    .promo-btn {
        padding: 14px 28px;
        font-size: 1rem;
    }
    
    .promo-btn-icon {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .promo-banner {
        padding: 30px 0;
        margin: 20px 0;
    }
    
    .promo-content {
        padding: 0 10px;
        gap: 20px;
    }
    
    .promo-title {
        font-size: 1.6rem;
        margin-bottom: 10px;
    }
    
    .promo-subtitle {
        font-size: 1rem;
    }
    
    .promo-btn {
        padding: 12px 24px;
        font-size: 0.95rem;
        gap: 10px;
    }
    
    .promo-btn-icon {
        font-size: 1.1rem;
    }
}

@keyframes slideInFromLeft {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromRight {
    0% {
        opacity: 0;
        transform: translateX(50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.promo-text {
    animation: slideInFromLeft 0.8s ease-out;
}

.promo-action {
    animation: slideInFromRight 0.8s ease-out 0.2s both;
}

.best-sellers {
    padding: 80px 0;
    background: #ffffff;
}

.bestsellers-carousel {
    position: relative;
    margin-top: 40px;
}

.bestsellers-container {
    overflow: hidden;
    border-radius: 12px;
}

.bestsellers-track {
    display: flex;
    transition: transform 0.3s ease;
    gap: 20px;
}

.bestseller-card {
    flex: 0 0 300px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
}

.bestseller-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.bestseller-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.bestseller-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.bestseller-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #e74c3c;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
}

.bestseller-info {
    padding: 20px;
}

.bestseller-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0 0 8px 0;
}

.bestseller-description {
    font-size: 0.9rem;
    color: #7f8c8d;
    line-height: 1.4;
    margin: 0 0 12px 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.bestseller-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.stars {
    display: flex;
    gap: 2px;
}

.star {
    color: #e9ecef;
    font-size: 1rem;
}

.star.filled {
    color: #f39c12;
}

.rating-text {
    font-size: 0.85rem;
    color: #7f8c8d;
}

.bestseller-price {
    margin-bottom: 15px;
    font-size: 1.2rem;
    font-weight: 700;
    color: #3498db;
}

.bestseller-price .old-price {
    text-decoration: line-through;
    color: #95a5a6;
    font-size: 1rem;
    margin-right: 8px;
}

.bestseller-price .current-price {
    color: #e74c3c;
}

.bestseller-cart-btn {
    width: 100%;
    padding: 10px 16px;
    background: #3498db;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.bestseller-cart-btn:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: #ffffff;
    border: 2px solid #e9ecef;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.carousel-btn:hover {
    background: #3498db;
    border-color: #3498db;
    color: white;
}

.prev-btn {
    left: -22px;
}

.next-btn {
    right: -22px;
}

.carousel-btn span {
    font-size: 1.5rem;
    font-weight: bold;
}

.customer-reviews {
    padding: 80px 0;
    background: #f8f9fa;
}

.reviews-carousel {
    margin-top: 40px;
}

.reviews-container {
    overflow: hidden;
    border-radius: 12px;
}

.reviews-track {
    display: flex;
    transition: transform 0.5s ease;
    gap: 30px;
}

.review-card {
    flex: 0 0 100%;
    background: #ffffff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.review-rating {
    margin-bottom: 20px;
}

.review-rating .star {
    font-size: 1.2rem;
    margin: 0 2px;
}

.review-text {
    font-size: 1.1rem;
    font-style: italic;
    color: #2c3e50;
    line-height: 1.6;
    margin: 0 0 25px 0;
    position: relative;
}

.review-text::before {
    content: '"';
    font-size: 3rem;
    color: #3498db;
    position: absolute;
    top: -10px;
    left: -20px;
    opacity: 0.3;
}

.review-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #3498db;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info {
    text-align: left;
}

.author-name {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 4px;
}

.author-location {
    font-size: 0.9rem;
    color: #7f8c8d;
}

.reviews-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.review-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #bdc3c7;
    cursor: pointer;
    transition: all 0.3s ease;
}

.review-dot.active {
    background: #3498db;
    transform: scale(1.2);
}

.why-choose-us {
    padding: 80px 0;
    background: #ecf0f1;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.feature-card.aos-animate {
    opacity: 1;
    transform: translateY(0);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 2rem;
}

.feature-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0 0 12px 0;
}

.feature-description {
    color: #7f8c8d;
    line-height: 1.5;
    margin: 0;
}

.blog-section {
    padding: 80px 0;
    background: #ffffff;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.blog-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.blog-image {
    height: 200px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.blog-content {
    padding: 25px;
}

.blog-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0 0 12px 0;
    line-height: 1.3;
}

.blog-excerpt {
    color: #7f8c8d;
    line-height: 1.5;
    margin: 0 0 20px 0;
}

.blog-read-more {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.blog-read-more:hover {
    color: #2980b9;
}

.final-cta {
    position: relative;
    padding: 100px 0;
    background-image: url('../images/luxurious-dining-room-chandelier-wooden-table-5555.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    text-align: center;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

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

.cta-title {
    font-size: 3rem;
    font-weight: 800;
    margin: 0 0 20px 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.cta-subtitle {
    font-size: 1.3rem;
    margin: 0 0 40px 0;
    opacity: 0.9;
}

.cta-actions {
    margin-bottom: 40px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #3498db;
    color: white;
    padding: 18px 36px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.3);
}

.cta-button:hover {
    background: #2980b9;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(52, 152, 219, 0.4);
}

.cta-contact {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
}

.contact-item a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #3498db;
}

.social-media h4 {
    margin: 0 0 20px 0;
    font-size: 1.1rem;
}

.social-links {
       display: block;
    max-width: 200px;
    margin: 0 auto;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 25px;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-2px);
}

.social-link.facebook:hover {
    background: #3b5998;
    border-color: #3b5998;
}

.social-link.instagram:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    border-color: #e6683c;
}

.social-link.youtube:hover {
    background: #ff0000;
    border-color: #ff0000;
}

@media (max-width: 1024px) {
    .bestsellers-track {
        gap: 15px;
    }
    
    .bestseller-card {
        flex: 0 0 280px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .best-sellers,
    .customer-reviews,
    .why-choose-us,
    .blog-section {
        padding: 60px 0;
    }
    
    .final-cta {
        padding: 80px 0;
        background-attachment: scroll;
    }
    
    .bestseller-card {
        flex: 0 0 250px;
    }
    
    .carousel-btn {
        display: none;
    }
    
    .bestsellers-container {
        -webkit-overflow-scrolling: touch;
        overflow-x: auto;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    
    .bestsellers-container::-webkit-scrollbar {
        display: none;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .cta-title {
        font-size: 2.2rem;
    }
    
    .cta-subtitle {
        font-size: 1.1rem;
    }
    
    .cta-contact {
        flex-direction: column;
        gap: 15px;
    }
    
    .social-links {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .bestseller-card {
        flex: 0 0 220px;
    }
    
    .review-card {
        padding: 20px;
    }
    
    .review-text {
        font-size: 1rem;
    }
    
    .author-avatar {
        width: 50px;
        height: 50px;
    }
    
    .feature-card {
        padding: 30px 20px;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .cta-title {
        font-size: 1.8rem;
    }
    
    .cta-button {
        padding: 15px 30px;
        font-size: 1rem;
    }
}

.sort-select option {
    padding: 8px 12px;
    background: #ffffff;
    color: #2c3e50;
}

.sort-select option:hover {
    background: #f8f9fa;
}

.sort-select option:checked {
    background: #3498db;
    color: white;
}

@keyframes counterUpdate {
    0% {
        transform: scale(1);
        color: #3498db;
    }
    50% {
        transform: scale(1.1);
        color: #e74c3c;
    }
    100% {
        transform: scale(1);
        color: #3498db;
    }
}

.counter-text strong.updating {
    animation: counterUpdate 0.6s ease;
}

.product-catalog {
    padding: 40px 0 80px;
    background: #f8f9fa;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.product-card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.product-image {
    position: relative;
    overflow: hidden;
    height: 220px;
    background: #f8f9fa;
}

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

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

.product-badges {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 10;
}

.badge {
    display: inline-block;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    color: white;
    margin-right: 6px;
    margin-bottom: 6px;
}

.badge.new {
    background: #27ae60;
}

.badge.sale {
    background: #e74c3c;
}

.badge.bestseller {
    background: #f39c12;
}

.badge.limited {
    background: #8e44ad;
}

.badge.premium {
    background: #2c3e50;
}

.favorite-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    border: none;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    backdrop-filter: blur(10px);
}

.favorite-btn:hover {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.1);
}

.favorite-btn i {
    color: #bdc3c7;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.favorite-btn:hover i,
.favorite-btn.active i {
    color: #e74c3c;
}

.product-info {
    padding: 20px;
}

.product-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0 0 8px 0;
    line-height: 1.3;
}

.product-description {
    font-size: 0.9rem;
    color: #7f8c8d;
    line-height: 1.4;
    margin: 0 0 15px 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-price {
    margin: 15px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #3498db;
}

.old-price {
    font-size: 1rem;
    color: #95a5a6;
    text-decoration: line-through;
    font-weight: 500;
}

.add-to-cart-btn {
    width: 100%;
    padding: 12px 16px;
    background: #3498db;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.add-to-cart-btn:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

.add-to-cart-btn:active {
    transform: translateY(0);
}

.add-to-cart-btn i {
    font-size: 0.9rem;
}

.product-card:hover .product-name {
    color: #3498db;
}

.product-card:hover .add-to-cart-btn {
    background: #27ae60;
}

.product-card:hover .add-to-cart-btn:hover {
    background: #229954;
}

@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
        padding: 0 15px;
    }
    
    .product-catalog {
        padding: 30px 0 60px;
    }
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 0 10px;
    }
    
    .product-image {
        height: 180px;
    }
    
    .product-info {
        padding: 15px;
    }
    
    .product-name {
        font-size: 1rem;
    }
    
    .product-description {
        font-size: 0.85rem;
        margin-bottom: 12px;
    }
    
    .price {
        font-size: 1.2rem;
    }
    
    .add-to-cart-btn {
        padding: 10px 14px;
        font-size: 0.9rem;
    }
    
    .favorite-btn {
        width: 32px;
        height: 32px;
        top: 10px;
        right: 10px;
    }
    
    .favorite-btn i {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 0 10px;
    }
    
    .product-catalog {
        padding: 20px 0 40px;
    }
    
    .product-card {
        max-width: 320px;
        margin: 0 auto;
    }
    
    .product-image {
        height: 200px;
    }
    
    .product-info {
        padding: 12px;
    }
    
    .product-name {
        font-size: 0.95rem;
        margin-bottom: 6px;
    }
    
    .product-description {
        font-size: 0.8rem;
        margin-bottom: 10px;
    }
    
    .price {
        font-size: 1.1rem;
    }
    
    .old-price {
        font-size: 0.9rem;
    }
    
    .add-to-cart-btn {
        padding: 8px 12px;
        font-size: 0.85rem;
    }
}

.product-card.loading {
    opacity: 0.6;
    pointer-events: none;
}

.product-card.loading .product-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    animation: shimmer 1.5s infinite;
}

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

.product-card.out-of-stock {
    opacity: 0.7;
}

.product-card.out-of-stock .product-image::before {
    content: 'Brak w magazynie';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(231, 76, 60, 0.9);
    color: white;
    padding: 8px 16px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.9rem;
    z-index: 15;
}

.product-card.out-of-stock .add-to-cart-btn {
    background: #95a5a6;
    cursor: not-allowed;
}

.product-card.out-of-stock .add-to-cart-btn:hover {
    background: #95a5a6;
    transform: none;
}

.no-results-message {
    grid-column: 1 / -1;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 300px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    margin: 20px 0;
}

.no-results-content {
    text-align: center;
    padding: 40px;
}

.no-results-content i {
    font-size: 4rem;
    color: #bdc3c7;
    margin-bottom: 20px;
}

.no-results-content h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin: 0 0 10px 0;
    font-weight: 600;
}

.no-results-content p {
    color: #7f8c8d;
    margin: 0 0 25px 0;
    font-size: 1rem;
}

.clear-filters-btn {
    background: #3498db;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.clear-filters-btn:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 1000;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    max-width: 350px;
    border-left: 4px solid #3498db;
}

.notification.show {
    transform: translateX(0);
}

.notification-success {
    border-left-color: #27ae60;
}

.notification-success i {
    color: #27ae60;
}

.notification-info {
    border-left-color: #3498db;
}

.notification-info i {
    color: #3498db;
}

.notification-error {
    border-left-color: #e74c3c;
}

.notification-error i {
    color: #e74c3c;
}

.notification i {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.notification span {
    color: #2c3e50;
    font-weight: 500;
    font-size: 0.95rem;
}

.products-grid.loading .product-card {
    opacity: 0.5;
    pointer-events: none;
}

.products-grid.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border: 3px solid #e9ecef;
    border-top: 3px solid #3498db;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    z-index: 100;
}

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

.filter-btn.active {
    background: #3498db;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
}

.filter-btn:hover:not(.active) {
    background: #ecf0f1;
    transform: translateY(-1px);
}

.product-card {
    transition: all 0.3s ease, transform 0.3s ease, opacity 0.3s ease;
}

.product-card.filtering {
    opacity: 0;
    transform: scale(0.9);
}

.product-card.filtered-in {
    opacity: 1;
    transform: scale(1);
}

@media (max-width: 768px) {
    .notification {
        right: 10px;
        left: 10px;
        max-width: none;
        transform: translateY(-100%);
    }
    
    .notification.show {
        transform: translateY(0);
    }
    
    .no-results-content {
        padding: 20px;
    }
    
    .no-results-content i {
        font-size: 3rem;
        margin-bottom: 15px;
    }
    
    .no-results-content h3 {
        font-size: 1.3rem;
    }
    
    .no-results-content p {
        font-size: 0.9rem;
    }
}

.about-hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.about-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.8), rgba(52, 73, 94, 0.6));
    z-index: 2;
}

.about-hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    padding: 0 20px;
}

.about-hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 25px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    line-height: 1.1;
    animation: fadeInUp 1s ease 0.2s both;
}

.about-hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 40px;
    opacity: 0.95;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.4;
    animation: fadeInUp 1s ease 0.4s both;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #e67e22, #d35400);
    color: white;
    padding: 18px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(230, 126, 34, 0.4);
    animation: fadeInUp 1s ease 0.6s both;
}

.cta-button:hover {
    background: linear-gradient(135deg, #d35400, #e67e22);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(230, 126, 34, 0.6);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.8rem;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 700;
    position: relative;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #e67e22, #f39c12);
    border-radius: 2px;
}

.section-header p {
    font-size: 1.2rem;
    color: #7f8c8d;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.about-history {
    padding: 100px 0;
    background: #f8f9fa;
}

.timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, #3498db, #e67e22);
    transform: translateX(-50%);
    border-radius: 2px;
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 80px;
    position: relative;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-year {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    padding: 15px 20px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: bold;
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.3);
    z-index: 10;
    min-width: 100px;
    text-align: center;
}

.timeline-content {
    display: flex;
    align-items: center;
    gap: 40px;
    width: calc(50% - 60px);
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: auto;
    flex-direction: row-reverse;
}

.timeline-image {
    flex: 0 0 250px;
    height: 180px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.timeline-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.timeline-item:hover .timeline-image img {
    transform: scale(1.05);
}

.timeline-text {
    flex: 1;
    padding: 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.timeline-item:hover .timeline-text {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.timeline-text h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 600;
}

.timeline-text p {
    color: #7f8c8d;
    line-height: 1.6;
    margin: 0;
}

.about-mission {
    padding: 100px 0;
    background: white;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.mission-item {
    text-align: center;
    padding: 40px 30px;
    background: #f8f9fa;
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.mission-item:hover {
    background: white;
    border-color: #e67e22;
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.mission-icon {
    font-size: 4rem;
    margin-bottom: 25px;
    display: block;
    transition: transform 0.3s ease;
}

.mission-item:hover .mission-icon {
    transform: scale(1.1) rotate(5deg);
}

.mission-item h3 {
    font-size: 1.4rem;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 600;
}

.mission-item p {
    color: #7f8c8d;
    line-height: 1.6;
    margin: 0;
}

.about-team {
    padding: 100px 0;
    background: #f8f9fa;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.team-member {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.member-photo {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.team-member:hover .member-photo img {
    transform: scale(1.05);
}

.member-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent, rgba(44, 62, 80, 0.8));
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 20px;
}

.team-member:hover .member-overlay {
    opacity: 1;
}

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

.member-social .social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    color: #2c3e50;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.member-social .social-link:hover {
    background: #3498db;
    color: white;
    transform: translateY(-3px);
}

.member-info {
    padding: 30px 25px;
    text-align: center;
}

.member-info h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 8px;
    font-weight: 600;
}

.member-role {
    font-size: 1rem;
    color: #3498db;
    margin-bottom: 15px;
    font-weight: 500;
}

.member-description {
    color: #7f8c8d;
    line-height: 1.5;
    font-size: 0.95rem;
    margin: 0;
}

.about-process {
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.about-process::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="processPattern" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23processPattern)"/></svg>');
}

.about-process .section-header h2,
.about-process .section-header p {
    color: white;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-top: 60px;
    position: relative;
    z-index: 1;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3498db, #2ecc71, #f39c12, #e74c3c, #9b59b6);
    border-radius: 2px;
    z-index: -1;
}

.process-step {
    flex: 1;
    text-align: center;
    position: relative;
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3498db, #2ecc71);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    margin: 0 auto 30px;
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.4);
    transition: all 0.3s ease;
}

.process-step:hover .step-number {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(52, 152, 219, 0.6);
}

.step-content {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px 20px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.process-step:hover .step-content {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.step-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.step-content h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
    color: white;
}

.step-content p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
    margin: 0;
}

.about-why-us {
    padding: 100px 0;
    background: #f8f9fa;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin: 50px 0 80px;
    text-align: center;
}

.stat-item {
    background: white;
    padding: 40px 20px;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: #3498db;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.stat-label {
    font-size: 1.1rem;
    color: #2c3e50;
    font-weight: 500;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature-item {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
    transition: transform 0.3s ease;
}

.feature-item:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-item h3 {
    font-size: 1.2rem;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 600;
}

.feature-item p {
    color: #7f8c8d;
    line-height: 1.5;
    margin: 0;
}

.about-testimonials {
    padding: 100px 0;
    background: white;
}

.testimonials-carousel {
    position: relative;
    margin-top: 50px;
    overflow: hidden;
    border-radius: 20px;
}

.testimonial-track {
    display: flex;
    transition: transform 0.6s ease;
    width: 400%;
}

.testimonial-item {
    width: 25%;
    padding: 0 20px;
}

.testimonial-item > div {
    background: #f8f9fa;
    border-radius: 20px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.testimonial-item:hover > div {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.testimonial-content {
    margin-bottom: 30px;
}

.stars {
    color: #f39c12;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #2c3e50;
    font-style: italic;
    margin: 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #3498db;
}

.author-info h4 {
    font-size: 1.1rem;
    color: #2c3e50;
    margin-bottom: 5px;
    font-weight: 600;
}

.author-info span {
    color: #7f8c8d;
    font-size: 0.95rem;
}

.carousel-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
}

.carousel-btn {
    width: 50px;
    height: 50px;
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    color: #2c3e50;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.carousel-btn:hover {
    background: #3498db;
    border-color: #3498db;
    color: white;
    transform: scale(1.1);
}

.carousel-dots {
    display: flex;
    gap: 10px;
        justify-content: center;
    height: 20px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #bdc3c7;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #3498db;
    transform: scale(1.2);
}

.about-achievements {
    padding: 100px 0;
    background: #f8f9fa;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.achievement-item {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.achievement-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #f39c12, #e67e22);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.achievement-item:hover::before {
    transform: scaleX(1);
}

.achievement-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.achievement-icon {
    font-size: 4rem;
    margin-bottom: 25px;
    display: block;
    transition: transform 0.3s ease;
}

.achievement-item:hover .achievement-icon {
    transform: scale(1.1) rotate(10deg);
}

.achievement-item h3 {
    font-size: 1.4rem;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 600;
}

.achievement-item p {
    color: #7f8c8d;
    line-height: 1.5;
    margin-bottom: 20px;
}

.achievement-year {
    display: inline-block;
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.about-gallery {
    padding: 100px 0;
    background: white;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(3, 250px);
    gap: 20px;
    margin-top: 50px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item.wide {
    grid-column: span 2;
}

.gallery-item:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(44, 62, 80, 0.9), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 25px;
    color: white;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.gallery-overlay p {
    font-size: 0.95rem;
    opacity: 0.9;
    margin: 0;
}

.about-cta {
    position: relative;
    padding: 100px 0;
    color: white;
    text-align: center;
    overflow: hidden;
}

.about-cta-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.cta-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.8), rgba(192, 57, 43, 0.9));
    z-index: 2;
}

.about-cta-content {
    position: relative;
    z-index: 3;
}

.about-cta-content h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 25px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    line-height: 1.2;
}

.about-cta-content p {
    font-size: 1.3rem;
    margin-bottom: 50px;
    opacity: 0.95;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.4;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.cta-button.primary {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    padding: 18px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.4);
}

.cta-button.primary:hover {
    background: linear-gradient(135deg, #2980b9, #3498db);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(52, 152, 219, 0.6);
}

.cta-button.secondary {
    background: transparent;
    color: white;
    padding: 18px 40px;
    text-decoration: none;
    border: 3px solid white;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.cta-button.secondary:hover {
    background: white;
    color: #e74c3c;
    transform: translateY(-3px);
}

@media (max-width: 1200px) {
    .timeline-content {
        gap: 30px;
    }
    
    .timeline-image {
        flex: 0 0 200px;
        height: 150px;
    }
    
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
    
    .achievements-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(4, 200px);
    }
}

@media (max-width: 768px) {
    .about-hero {
        height: 80vh;
        min-height: 500px;
    }
    
    .about-hero-title {
        font-size: 2.5rem;
        margin-bottom: 20px;
    }
    
    .about-hero-subtitle {
        font-size: 1.2rem;
        margin-bottom: 30px;
    }
    
    .cta-button {
        padding: 15px 30px;
        font-size: 1rem;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        flex-direction: column;
        margin-bottom: 60px;
        padding-left: 80px;
    }
    
    .timeline-item:nth-child(even) {
        flex-direction: column;
    }
    
    .timeline-year {
        left: 30px;
        position: absolute;
        top: 20px;
        transform: translateX(-50%);
        min-width: 80px;
        padding: 10px 15px;
        font-size: 1rem;
    }
    
    .timeline-content {
        width: 100%;
        flex-direction: column;
        gap: 20px;
        margin-left: 0;
    }
    
    .timeline-item:nth-child(even) .timeline-content {
        margin-left: 0;
        flex-direction: column;
    }
    
    .timeline-image {
        flex: none;
        width: 100%;
        height: 200px;
    }
    
    .timeline-text {
        padding: 20px;
    }
    
    .mission-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .process-steps {
        flex-direction: column;
        gap: 40px;
    }
    
    .process-steps::before {
        display: none;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        margin: 40px 0 60px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .achievements-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(6, 180px);
        gap: 15px;
    }
    
    .about-cta-content h2 {
        font-size: 2.2rem;
    }
    
    .about-cta-content p {
        font-size: 1.1rem;
        margin-bottom: 40px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .about-hero-title {
        font-size: 2rem;
    }
    
    .about-hero-subtitle {
        font-size: 1rem;
    }
    
    .about-history,
    .about-mission,
    .about-team,
    .about-process,
    .about-why-us,
    .about-testimonials,
    .about-achievements,
    .about-gallery,
    .about-cta {
        padding: 60px 0;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .timeline-item {
        padding-left: 60px;
        margin-bottom: 50px;
    }
    
    .timeline-year {
        left: 20px;
        min-width: 60px;
        padding: 8px 12px;
        font-size: 0.9rem;
    }
    
    .timeline-text {
        padding: 15px;
    }
    
    .timeline-text h3 {
        font-size: 1.2rem;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(8, 200px);
        gap: 10px;
    }
    
    .gallery-item.large,
    .gallery-item.wide {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    .mission-item,
    .feature-item,
    .achievement-item {
        padding: 25px 20px;
    }
    
    .step-content {
        padding: 25px 15px;
    }
    
    .testimonial-item > div {
        padding: 25px 20px;
    }
    
    .about-cta-content h2 {
        font-size: 1.8rem;
    }
    
    .about-cta-content p {
        font-size: 1rem;
    }
    
    .cta-button.primary,
    .cta-button.secondary {
        padding: 15px 25px;
        font-size: 1rem;
    }
}

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

@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stat-number {
    animation: countUp 1s ease 0.5s both;
}

.timeline-item,
.mission-item,
.team-member,
.process-step,
.feature-item,
.achievement-item,
.gallery-item {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.timeline-item.aos-animate,
.mission-item.aos-animate,
.team-member.aos-animate,
.process-step.aos-animate,
.feature-item.aos-animate,
.achievement-item.aos-animate,
.gallery-item.aos-animate {
    opacity: 1;
    transform: translateY(0);
}


.nowosci-hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('../images/luxurious-wooden-dining-table-chandelier-interior-design-1838.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
}

.nowosci-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(44, 62, 80, 0.8), rgba(52, 152, 219, 0.6));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 2rem;
    animation: fadeInUp 1s ease;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.hero-btn {
    display: inline-block;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.6);
    background: linear-gradient(135deg, #c0392b, #a93226);
}

.filter-section {
    background: white;
    padding: 2rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 80px;
    z-index: 100;
}

.filter-panel {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: center;
    justify-content: space-between;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.filter-group label {
    font-weight: 600;
    color: #2c3e50;
    font-size: 0.9rem;
}

.filter-options {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-options label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: normal;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.filter-options label:hover {
    background-color: #f8f9fa;
}

.filter-options input[type="checkbox"] {
    accent-color: #3498db;
}

.price-filter,
.sort-filter {
    padding: 0.5rem 1rem;
    border: 2px solid #e9ecef;
    border-radius: 5px;
    background: white;
    font-size: 0.9rem;
    min-width: 150px;
    transition: border-color 0.3s ease;
}

.price-filter:focus,
.sort-filter:focus {
    outline: none;
    border-color: #3498db;
}

.products-grid,.new-products-grid {
    padding: 4rem 0;
    background: #f8f9fa;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    position: relative;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.product-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

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

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

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.btn-details,
.btn-cart {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.btn-details {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-details:hover {
    background: white;
    color: #333;
}

.btn-cart {
    background: #e74c3c;
    color: white;
}

.btn-cart:hover {
    background: #c0392b;
    transform: scale(1.05);
}

.product-info {
    padding: 1.5rem;
}

.product-info h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.product-desc {
    color: #7f8c8d;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.product-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #e74c3c;
}

.collection-month {
    padding: 4rem 0;
    background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
    color: white;
}

.collection-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.collection-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.collection-text h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: #ecf0f1;
}

.collection-text h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #3498db;
}

.collection-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.collection-features {
    list-style: none;
    margin-bottom: 2rem;
}

.collection-features li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 2rem;
}

.collection-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2ecc71;
    font-weight: bold;
    font-size: 1.2rem;
}

.collection-btn {
    display: inline-block;
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.collection-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.4);
}

.trends-section {
    padding: 4rem 0;
    background: white;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(135deg, #3498db, #e74c3c);
    border-radius: 2px;
}

.trends-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.trend-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.trend-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.trend-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.trend-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.trend-card:hover .trend-overlay {
    opacity: 1;
}

.trend-btn {
    background: #3498db;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.trend-btn:hover {
    background: #2980b9;
    transform: scale(1.05);
}

.trend-content {
    padding: 1.5rem;
}

.trend-content h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.trend-content p {
    color: #7f8c8d;
    line-height: 1.6;
}

.video-section {
    padding: 4rem 0;
    background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('../images/wooden-dining-table-close-up-9073.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.video-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.video-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.video-text {
    color: white;
}

.video-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.video-text p {
    font-size: 1.2rem;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.video-player {
    position: relative;
}

.video-thumbnail {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.video-thumbnail:hover {
    transform: scale(1.05);
}

.video-thumbnail img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: transform 0.3s ease;
}

.video-thumbnail:hover .play-button {
    transform: translate(-50%, -50%) scale(1.1);
}

.reviews-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.reviews-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    overflow: hidden;
}

.review-slide {
    display: none;
    padding: 3rem;
    text-align: center;
}

.review-slide.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

.stars {
    font-size: 1.5rem;
    color: #f39c12;
    margin-bottom: 1.5rem;
}

.review-slide p {
    font-size: 1.2rem;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: #34495e;
}

.reviewer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.reviewer img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #3498db;
}

.reviewer-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    border: 3px solid #3498db;
}

.reviewer-info strong {
    display: block;
    color: #2c3e50;
    font-size: 1.1rem;
}

.reviewer-info span {
    color: #7f8c8d;
    font-size: 0.9rem;
}

.slider-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.prev-btn,
.next-btn {
    background: #3498db;
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.prev-btn:hover,
.next-btn:hover {
    background: #2980b9;
    transform: scale(1.1);
}

.stats-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #ecf0f1;
}

.stat-text {
    font-size: 1.1rem;
    opacity: 0.9;
}

.newsletter-signup {
    padding: 4rem 0;
    background: linear-gradient(rgba(255,255,255,0.95), rgba(255,255,255,0.95)), url('../images/elegant-wooden-coffee-table-design-1835.webp');
    background-size: cover;
    background-position: center;
}

.newsletter-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.newsletter-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.newsletter-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #34495e;
}

.newsletter-form-inline {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-form-inline input {
    flex: 1;
    padding: 1rem;
    border: 2px solid #e9ecef;
    border-radius: 50px;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s ease;
}

.newsletter-form-inline input:focus {
    border-color: #3498db;
}

.newsletter-form-inline button {
    background: #3498db;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.newsletter-form-inline button:hover {
    background: #2980b9;
    transform: scale(1.05);
}

.newsletter-disclaimer {
    font-size: 0.9rem;
    color: #7f8c8d;
}

.final-cta {
  
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../images/ornate-wooden-dining-table-interior-design-5835.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.cta-content {
    color: white;
    max-width: 900px;
    padding: 0 2rem;
}

.cta-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}


.kontakt-hero {
    height: 80vh;
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.9), rgba(46, 204, 113, 0.8)), 
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 400"><defs><pattern id="office" patternUnits="userSpaceOnUse" width="400" height="400"><rect width="400" height="400" fill="%23f8f9fa"/><rect x="50" y="100" width="300" height="200" fill="%23ffffff" stroke="%23e9ecef" stroke-width="2"/><rect x="80" y="130" width="80" height="60" fill="%23654321" opacity="0.6"/><rect x="200" y="130" width="80" height="60" fill="%23654321" opacity="0.4"/><rect x="320" y="130" width="50" height="60" fill="%238b4513" opacity="0.5"/><circle cx="200" cy="160" r="30" fill="none" stroke="%233498db" stroke-width="3" opacity="0.3"/><rect x="120" y="220" width="160" height="8" fill="%23bdc3c7" opacity="0.6"/><rect x="150" y="240" width="100" height="20" fill="%232c3e50" opacity="0.3"/></pattern></defs><rect width="400" height="400" fill="url(%23office)"/></svg>');
    background-size: 800px 800px;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
}

.kontakt-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

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

.kontakt-hero-icon {
    font-size: 5rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.kontakt-hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
    line-height: 1.2;
}

.kontakt-hero-content p {
    font-size: 1.3rem;
    margin-bottom: 0;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    opacity: 0.95;
}

.kontakt-main-info {
    padding: 5rem 0;
    background: white;
}

.kontakt-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 2rem;
}

.kontakt-info-card {
    background: #f8f9fa;
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.kontakt-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3498db, #2ecc71);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.kontakt-info-card:hover::before {
    transform: scaleX(1);
}

.kontakt-info-card:hover {
    background: white;
    border-color: #3498db;
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(52, 152, 219, 0.2);
}

.kontakt-info-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #3498db, #2ecc71);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.kontakt-info-card:hover .kontakt-info-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 25px rgba(52, 152, 219, 0.3);
}

.kontakt-info-card h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: 600;
}

.kontakt-info-card p {
    font-size: 1.1rem;
    color: #7f8c8d;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.kontakt-btn {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.kontakt-btn:hover {
    background: linear-gradient(135deg, #2980b9, #21618c);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(52, 152, 219, 0.4);
}

.kontakt-btn.primary {
    background: linear-gradient(135deg, #27ae60, #229954);
}

.kontakt-btn.primary:hover {
    background: linear-gradient(135deg, #229954, #1e8449);
}

.kontakt-map-section {
    padding: 5rem 0;
    background: #f8f9fa;
}

.kontakt-map-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 3rem;
    position: relative;
}

.kontakt-map-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #3498db, #2ecc71);
    border-radius: 2px;
}

.kontakt-map-container {
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.kontakt-map {
    width: 100%;
    height: 450px;
    background: #e9ecef;
    position: relative;
}

.kontakt-map-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.kontakt-map-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 60 60"><defs><pattern id="mapPattern" width="60" height="60" patternUnits="userSpaceOnUse"><circle cx="30" cy="30" r="2" fill="%23ffffff" opacity="0.1"/><circle cx="10" cy="10" r="1" fill="%23ffffff" opacity="0.05"/><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.05"/></pattern></defs><rect width="60" height="60" fill="url(%23mapPattern)"/></svg>');
}

.kontakt-map-content {
    position: relative;
    z-index: 2;
}

.kontakt-map-pin {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: bounce 2s infinite;
}

.kontakt-map-content h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.kontakt-map-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.kontakt-route-btn {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 15px 30px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.kontakt-route-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.8);
    transform: translateY(-2px);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.kontakt-form-section {
    padding: 5rem 0;
    background: white;
}

.kontakt-form-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.kontakt-form-wrapper h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.kontakt-form-wrapper > p {
    text-align: center;
    font-size: 1.1rem;
    color: #7f8c8d;
    margin-bottom: 3rem;
}

.kontakt-form {
    display: grid;
    gap: 1.5rem;
}

.kontakt-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.kontakt-form-group {
    display: flex;
    flex-direction: column;
}

.kontakt-form-group label {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.kontakt-form-group input,
.kontakt-form-group select,
.kontakt-form-group textarea {
    padding: 15px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.kontakt-form-group input:focus,
.kontakt-form-group select:focus,
.kontakt-form-group textarea:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.kontakt-form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.kontakt-submit-btn {
    background: linear-gradient(135deg, #27ae60, #229954);
    color: white;
    padding: 18px 40px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 1rem;
}

.kontakt-submit-btn:hover {
    background: linear-gradient(135deg, #229954, #1e8449);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(39, 174, 96, 0.4);
}

.kontakt-btn-icon {
    font-size: 1.2rem;
}

.kontakt-hours-section {
    padding: 5rem 0;
    background: #f8f9fa;
}

.kontakt-hours-card {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.kontakt-hours-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #f39c12, #e67e22);
}

.kontakt-hours-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    color: #f39c12;
}

.kontakt-hours-card h3 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 2rem;
    font-weight: 600;
}

.kontakt-hours-list {
    margin-bottom: 2rem;
}

.kontakt-hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid #e9ecef;
    font-size: 1.1rem;
}

.kontakt-hours-item:last-child {
    border-bottom: none;
}

.kontakt-day {
    font-weight: 600;
    color: #2c3e50;
}

.kontakt-time {
    color: #27ae60;
    font-weight: 600;
}

.kontakt-time.closed {
    color: #e74c3c;
}

.kontakt-status {
    padding: 1rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1.1rem;
}

.kontakt-status.open {
    background: #d5f4e6;
    color: #27ae60;
}

.kontakt-status.closed {
    background: #fadbd8;
    color: #e74c3c;
}

.kontakt-social-section {
    padding: 5rem 0;
    background: white;
}

.kontakt-social-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.kontakt-social-section p {
    text-align: center;
    font-size: 1.2rem;
    color: #7f8c8d;
    margin-bottom: 3rem;
}

.kontakt-social-links {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.kontakt-social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 2rem;
    border-radius: 20px;
    background: #f8f9fa;
    min-width: 150px;
}

.kontakt-social-link:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    background: white;
}

.kontakt-social-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

.kontakt-social-link.facebook .kontakt-social-icon {
    background: linear-gradient(135deg, #3b5998, #2d4373);
}

.kontakt-social-link.instagram .kontakt-social-icon {
    background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.kontakt-social-link.pinterest .kontakt-social-icon {
    background: linear-gradient(135deg, #bd081c, #e60023);
}

.kontakt-social-link:hover .kontakt-social-icon {
    transform: scale(1.1) rotate(5deg);
}

.kontakt-social-link span {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
}

.kontakt-team-section {
    padding: 5rem 0;
    background: #f8f9fa;
}

.kontakt-team-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.kontakt-team-section > p {
    text-align: center;
    font-size: 1.2rem;
    color: #7f8c8d;
    margin-bottom: 3rem;
}

.kontakt-team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.kontakt-team-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.kontakt-team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.kontakt-team-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    background: linear-gradient(135deg, #3498db, #2980b9);
    box-shadow: 0 10px 25px rgba(52, 152, 219, 0.3);
    transition: all 0.3s ease;
}

.kontakt-team-card:hover .kontakt-team-photo {
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(52, 152, 219, 0.4);
}

.kontakt-team-card h3 {
    font-size: 1.4rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.kontakt-team-position {
    font-size: 1rem;
    color: #3498db;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.kontakt-team-contact {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.kontakt-team-phone,
.kontakt-team-email {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.kontakt-team-phone {
    background: #d5f4e6;
    color: #27ae60;
}

.kontakt-team-phone:hover {
    background: #27ae60;
    color: white;
    transform: translateY(-2px);
}

.kontakt-team-email {
    background: #e3f2fd;
    color: #3498db;
}

.kontakt-team-email:hover {
    background: #3498db;
    color: white;
    transform: translateY(-2px);
}

.kontakt-faq-section {
    padding: 5rem 0;
    background: white;
}

.kontakt-faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.kontakt-faq-section > p {
    text-align: center;
    font-size: 1.2rem;
    color: #7f8c8d;
    margin-bottom: 3rem;
}

.kontakt-faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.kontakt-faq-item {
    background: #f8f9fa;
    border-radius: 15px;
    margin-bottom: 1.5rem;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.kontakt-faq-item:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.kontakt-faq-question {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.kontakt-faq-question:hover {
    background: linear-gradient(135deg, #2980b9, #21618c);
}

.kontakt-faq-question h3 {
    font-size: 1.2rem;
    margin: 0;
    font-weight: 600;
}

.kontakt-faq-toggle {
    font-size: 1.5rem;
    font-weight: bold;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.kontakt-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: white;
}

.kontakt-faq-answer.active {
    max-height: 300px;
}

.kontakt-faq-answer p {
    padding: 2rem;
    color: #7f8c8d;
    line-height: 1.6;
    margin: 0;
}

.kontakt-appointment-cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.kontakt-appointment-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 80 80"><defs><pattern id="appointmentPattern" width="80" height="80" patternUnits="userSpaceOnUse"><circle cx="40" cy="40" r="2" fill="%23ffffff" opacity="0.1"/><circle cx="20" cy="20" r="1" fill="%23ffffff" opacity="0.05"/><circle cx="60" cy="60" r="1" fill="%23ffffff" opacity="0.05"/></pattern></defs><rect width="80" height="80" fill="url(%23appointmentPattern)"/></svg>');
}

.kontakt-appointment-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
}

.kontakt-appointment-icon {
    font-size: 5rem;
    margin-bottom: 1.5rem;
    animation: pulse 2s infinite;
}

.kontakt-appointment-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.kontakt-appointment-content p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.kontakt-appointment-btn {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 18px 40px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.kontakt-appointment-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.8);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.kontakt-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    animation: fadeIn 0.3s ease;
}

.kontakt-modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 2rem;
    border-radius: 20px;
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.kontakt-modal-close-x {
    position: absolute;
    right: 1.5rem;
    top: 1.5rem;
    font-size: 2rem;
    cursor: pointer;
    color: #999;
    transition: color 0.3s ease;
}

.kontakt-modal-close-x:hover {
    color: #333;
}

.kontakt-success-icon {
    font-size: 4rem;
    color: #27ae60;
    text-align: center;
    margin-bottom: 1rem;
}

.kontakt-modal-content h3 {
    text-align: center;
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.kontakt-modal-content p {
    text-align: center;
    font-size: 1.1rem;
    color: #7f8c8d;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.kontakt-modal-close {
    display: block;
    width: 100%;
    background: linear-gradient(135deg, #27ae60, #229954);
    color: white;
    padding: 15px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.kontakt-modal-close:hover {
    background: linear-gradient(135deg, #229954, #1e8449);
    transform: translateY(-2px);
}

.kontakt-appointment-form {
    margin-top: 1rem;
}

@media (max-width: 768px) {
    .kontakt-hero {
        height: 60vh;
        background-attachment: scroll;
    }
    
    .kontakt-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .kontakt-hero-content p {
        font-size: 1.1rem;
    }
    
    .kontakt-info-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .kontakt-info-card {
        padding: 2rem 1.5rem;
    }
    
    .kontakt-map {
        height: 300px;
    }
    
    .kontakt-form-wrapper {
        padding: 2rem;
        margin: 0 1rem;
    }
    
    .kontakt-form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .kontakt-social-links {
        gap: 2rem;
    }
    
    .kontakt-social-link {
        padding: 1.5rem;
        min-width: 120px;
    }
    
    .kontakt-team-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .kontakt-team-card {
        padding: 2rem 1.5rem;
    }
    
    .kontakt-appointment-content h2 {
        font-size: 2rem;
    }
    
    .kontakt-appointment-content p {
        font-size: 1.1rem;
    }
    
    .kontakt-modal-content {
        margin: 10% auto;
        padding: 1.5rem;
        width: 95%;
    }
}

@media (max-width: 480px) {
    .kontakt-hero {
        height: 50vh;
    }
    
    .kontakt-hero-content h1 {
        font-size: 2rem;
    }
    
    .kontakt-hero-content p {
        font-size: 1rem;
    }
    
    .kontakt-hero-icon {
        font-size: 4rem;
    }
    
    .kontakt-info-card {
        padding: 1.5rem 1rem;
    }
    
    .kontakt-info-icon {
        width: 80px;
        height: 80px;
        font-size: 3rem;
    }
    
    .kontakt-form-wrapper {
        padding: 1.5rem;
    }
    
    .kontakt-social-link {
        padding: 1rem;
        min-width: 100px;
    }
    
    .kontakt-social-icon {
        width: 60px;
        height: 60px;
        font-size: 3rem;
    }
    
    .kontakt-team-photo {
        width: 100px;
        height: 100px;
        font-size: 2.5rem;
    }
    
    .kontakt-appointment-icon {
        font-size: 4rem;
    }
    
    .kontakt-appointment-content h2 {
        font-size: 1.8rem;
    }
    
    .kontakt-appointment-btn {
        padding: 15px 30px;
        font-size: 1rem;
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@media print {
    .kontakt-hero,
    .kontakt-social-section,
    .kontakt-appointment-cta {
        display: none;
    }
    
    .kontakt-info-card,
    .kontakt-team-card,
    .kontakt-hours-card {
        box-shadow: none;
        border: 1px solid #ccc;
    }
    
    .kontakt-info-grid,
    .kontakt-team-grid {
        grid-template-columns: 1fr;
    }
}

@media (prefers-contrast: high) {
    .kontakt-info-card,
    .kontakt-team-card,
    .kontakt-hours-card {
        border: 2px solid #000;
    }
    
    .kontakt-btn {
        border: 2px solid #000;
    }
}

.cta-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.cta-btn-large {
    display: inline-block;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    padding: 1.5rem 3rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(231, 76, 60, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: pulse 2s infinite;
}

.cta-btn-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(231, 76, 60, 0.6);
    animation: none;
}

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .filter-panel {
        flex-direction: column;
        gap: 1rem;
    }
    
    .grid-container {
        grid-template-columns: 1fr;
    }
    
    .collection-content,
    .video-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .trends-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form-inline {
        flex-direction: column;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .collection-text h2 {
        font-size: 2rem;
    }
    
    .video-text h2 {
        font-size: 2rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .newsletter-content h2 {
        font-size: 2rem;
    }
}


.promocje-hero {
    height: 100vh;
    background: linear-gradient(rgba(231, 76, 60, 0.8), rgba(192, 57, 43, 0.8)), url('../images/ornate-wooden-dining-table-6589.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
}

.promocje-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(231, 76, 60, 0.9), rgba(230, 126, 34, 0.7));
    z-index: 1;
}

.promocje-hero .hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 2rem;
    animation: fadeInUp 1s ease;
}

.promocje-hero .hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.promocje-hero .hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.promocje-hero .hero-btn {
    display: inline-block;
    background: linear-gradient(135deg, #f39c12, #e67e22);
    color: white;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(243, 156, 18, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: pulse 2s infinite;
}

.promocje-hero .hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(243, 156, 18, 0.6);
    background: linear-gradient(135deg, #e67e22, #d35400);
    animation: none;
}

.flash-deals {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    padding: 3rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.flash-deals::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(255, 255, 255, 0.1) 10px,
        rgba(255, 255, 255, 0.1) 20px
    );
    animation: flashMove 3s linear infinite;
}

@keyframes flashMove {
    0% {
        transform: translateX(-100px) translateY(-100px);
    }
    100% {
        transform: translateX(100px) translateY(100px);
    }
}

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

.flash-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    animation: glow 2s infinite alternate;
}

@keyframes glow {
    from {
        text-shadow: 2px 2px 4px rgba(0,0,0,0.5), 0 0 10px rgba(255,255,255,0.5);
    }
    to {
        text-shadow: 2px 2px 4px rgba(0,0,0,0.5), 0 0 20px rgba(255,255,255,0.8), 0 0 30px rgba(255,255,255,0.6);
    }
}

.flash-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.time-unit {
    background: rgba(255, 255, 255, 0.2);
    padding: 1.5rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    min-width: 100px;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.time-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.time-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    opacity: 0.8;
}

.flash-info {
    font-size: 1.3rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.promocje-filter-section {
    background: white;
    padding: 2rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 80px;
    z-index: 100;
}

.promocje-products-grid {
    padding: 4rem 0;
    background: #f8f9fa;
}

.promo-product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    position: relative;
}

.promo-product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.discount-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #e74c3c;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    z-index: 3;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 2px 10px rgba(231, 76, 60, 0.4);
}

.discount-badge.wyprzedaz {
    background: #9b59b6;
    animation: pulse 2s infinite;
}

.discount-badge.free-shipping {
    background: #27ae60;
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
}

.price-section {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
}

.old-price {
    text-decoration: line-through;
    color: #95a5a6;
    font-size: 1rem;
}

.new-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: #e74c3c;
}

.bundle-offers {
    padding: 4rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.bundles-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.bundle-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

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

.bundle-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #f39c12;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    z-index: 2;
    text-transform: uppercase;
}

.bundle-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.bundle-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.bundle-content {
    padding: 2rem;
    text-align: center;
}

.bundle-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.bundle-content p {
    opacity: 0.9;
    margin-bottom: 1.5rem;
}

.bundle-price {
    margin-bottom: 2rem;
}

.bundle-old-price {
    text-decoration: line-through;
    opacity: 0.7;
    font-size: 1.1rem;
    margin-right: 1rem;
}

.bundle-new-price {
    font-size: 1.8rem;
    font-weight: 700;
}

.bundle-btn {
    background: white;
    color: #667eea;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.bundle-btn:hover {
    background: #f8f9fa;
    transform: scale(1.05);
}

.popular-promos {
    padding: 4rem 0;
    background: white;
}

.popular-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.popular-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    border: 2px solid transparent;
}

.popular-card:hover {
    transform: translateY(-5px);
    border-color: #3498db;
}

.popular-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

.popular-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #f39c12;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
}

.popular-content {
    padding: 1.5rem;
}

.popular-content h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

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

.stars {
    color: #f39c12;
    font-size: 1.1rem;
}

.reviews-count {
    color: #7f8c8d;
    font-size: 0.9rem;
}

.popular-price {
    margin-bottom: 1rem;
}

.popular-desc {
    color: #7f8c8d;
    font-size: 0.9rem;
    line-height: 1.6;
}

.coupon-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.coupons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.coupon-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    position: relative;
    transition: transform 0.3s ease;
    border: 2px dashed #e74c3c;
}

.coupon-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.coupon-card::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -10px;
    width: 20px;
    height: 20px;
    background: #f8f9fa;
    border-radius: 50%;
    transform: translateY(-50%);
}

.coupon-card::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -10px;
    width: 20px;
    height: 20px;
    background: #f8f9fa;
    border-radius: 50%;
    transform: translateY(-50%);
}

.coupon-header {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    padding: 1.5rem;
    text-align: center;
}

.coupon-discount {
    font-size: 2rem;
    font-weight: 700;
    display: block;
    margin-bottom: 0.5rem;
}

.coupon-type {
    font-size: 0.9rem;
    opacity: 0.9;
    text-transform: uppercase;
}

.coupon-content {
    padding: 2rem;
    text-align: center;
}

.coupon-code {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    background: #ecf0f1;
    padding: 0.5rem 1rem;
    border-radius: 10px;
    margin-bottom: 1rem;
    letter-spacing: 2px;
    font-family: 'Courier New', monospace;
}

.coupon-desc {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #34495e;
}

.coupon-conditions {
    font-size: 0.9rem;
    color: #7f8c8d;
    margin-bottom: 2rem;
}

.coupon-btn {
    background: #3498db;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    width: 100%;
}

.coupon-btn:hover {
    background: #2980b9;
    transform: scale(1.05);
}

.coupon-btn.copied {
    background: #27ae60;
    animation: copiedSuccess 0.5s ease;
}

@keyframes copiedSuccess {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.promo-benefits {
    padding: 4rem 0;
    background: white;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-item {
    text-align: center;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    background: white;
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.benefit-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.benefit-item p {
    color: #7f8c8d;
    line-height: 1.6;
}

.promo-newsletter {
    padding: 4rem 0;
    background: linear-gradient(rgba(52, 152, 219, 0.9), rgba(41, 128, 185, 0.9)), url('../images/wooden-dining-table-interior-design-7544.webp');
    background-size: cover;
    background-position: center;
    color: white;
}

.promo-newsletter .newsletter-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.newsletter-text {
    text-align: left;
}

.newsletter-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.newsletter-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.newsletter-text p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    line-height: 1.6;
}

.newsletter-benefits {
    list-style: none;
    margin-bottom: 2rem;
}

.newsletter-benefits li {
    padding: 0.5rem 0;
    font-size: 1rem;
    opacity: 0.9;
}

.newsletter-form-container {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.newsletter-form-promo {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1rem;
}

.newsletter-form-promo input {
    padding: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    outline: none;
    transition: border-color 0.3s ease;
}

.newsletter-form-promo input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-form-promo input:focus {
    border-color: rgba(255, 255, 255, 0.8);
}

.newsletter-form-promo button {
    background: #f39c12;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 1rem;
}

.newsletter-form-promo button:hover {
    background: #e67e22;
    transform: scale(1.05);
}

.newsletter-disclaimer {
    font-size: 0.9rem;
    opacity: 0.8;
    text-align: center;
}

.promocje-final-cta {
    height: 60vh;
    background: linear-gradient(rgba(46, 204, 113, 0.8), rgba(39, 174, 96, 0.8)), url('../images/rustic-dining-table-setting-natural-light-5372.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.promocje-final-cta .cta-content {
    color: white;
    max-width: 700px;
    padding: 0 2rem;
}

.promocje-final-cta .cta-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.promocje-final-cta .cta-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    line-height: 1.6;
}

.promocje-final-cta .cta-btn-large {
    display: inline-block;
    background: linear-gradient(135deg, #f39c12, #e67e22);
    color: white;
    padding: 1.5rem 3rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(243, 156, 18, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: bounceIn 1s ease;
}

.promocje-final-cta .cta-btn-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(243, 156, 18, 0.6);
    background: linear-gradient(135deg, #e67e22, #d35400);
    animation: none;
}

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

@media (max-width: 768px) {
    .promocje-hero .hero-title {
        font-size: 2.5rem;
    }
    
    .flash-title {
        font-size: 2rem;
    }
    
    .countdown-timer {
        gap: 1rem;
    }
    
    .time-unit {
        min-width: 80px;
        padding: 1rem;
    }
    
    .time-number {
        font-size: 2rem;
    }
    
    .bundles-slider {
        grid-template-columns: 1fr;
    }
    
    .popular-grid {
        grid-template-columns: 1fr;
    }
    
    .coupons-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .promo-newsletter .newsletter-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .promocje-final-cta .cta-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .promocje-hero .hero-title {
        font-size: 2rem;
    }
    
    .flash-title {
        font-size: 1.5rem;
    }
    
    .countdown-timer {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .time-unit {
        min-width: 120px;
    }
    
    .newsletter-text h2 {
        font-size: 1.8rem;
    }
    
    .promocje-final-cta .cta-content h2 {
        font-size: 1.5rem;
    }
}


.faq-hero {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-bottom: 1px solid #dee2e6;
}

.faq-hero .hero-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
        max-width: 100%;
}

.hero-text {
    text-align: left;
}

.hero-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: #3498db;
    display: block;
}

.faq-hero .hero-title {
    font-size: 3rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: 700;
}

.faq-hero .hero-subtitle {
    font-size: 1.2rem;
    color: #7f8c8d;
    line-height: 1.6;
    margin-bottom: 0;
}

.hero-image {
    text-align: center;
}

.hero-image img {
    width: 100%;
    max-width: 400px;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.faq-search {
    padding: 3rem 0;
    background: white;
    border-bottom: 1px solid #e9ecef;
}

.search-container {
    max-width: 600px;
    margin: 0 auto;
}

.search-box {
    display: flex;
    gap: 1rem;
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 50px;
    padding: 0.5rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.search-box:focus-within {
    border-color: #3498db;
    box-shadow: 0 5px 20px rgba(52, 152, 219, 0.2);
}

#faq-search-input {
    flex: 1;
    border: none;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    outline: none;
    background: transparent;
}

#faq-search-input::placeholder {
    color: #adb5bd;
}

.search-btn {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.search-btn:hover {
    background: linear-gradient(135deg, #2980b9, #1f618d);
    transform: scale(1.05);
}

.search-icon {
    font-size: 1.1rem;
}

.faq-categories {
    padding: 2rem 0;
    background: #f8f9fa;
    border-bottom: 1px solid #dee2e6;
}

.categories-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.tab-btn {
    background: white;
    border: 2px solid #e9ecef;
    padding: 1rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #6c757d;
    min-width: 120px;
    justify-content: center;
}

.tab-btn:hover {
    border-color: #3498db;
    color: #3498db;
    transform: translateY(-2px);
}

.tab-btn.active {
    background: linear-gradient(135deg, #3498db, #2980b9);
    border-color: #3498db;
    color: white;
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

.tab-icon {
    font-size: 1.1rem;
}

.faq-accordion {
    padding: 4rem 0;
    background: white;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f8f9fa;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #e9ecef;
}

.faq-question.active {
    background: #3498db;
    color: white;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: 700;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 50%;
    color: #3498db;
    transition: all 0.3s ease;
}

.faq-question.active .faq-toggle {
    background: white;
    color: #3498db;
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-answer.active {
    padding: 1.5rem;
    max-height: 200px;
}

.faq-answer p {
    margin: 0;
    line-height: 1.6;
    color: #495057;
}

.popular-questions {
    padding: 4rem 0;
    background: #f8f9fa;
}

.popular-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.popular-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.popular-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    border-color: #3498db;
}

.popular-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.popular-card h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.popular-card p {
    color: #7f8c8d;
    font-size: 0.9rem;
    line-height: 1.5;
}

.popular-cta {
    text-align: center;
    margin-top: 3rem;
}

.cta-btn {
    display: inline-block;
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.cta-btn:hover {
    background: linear-gradient(135deg, #2980b9, #1f618d);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

.faq-guides {
    padding: 4rem 0;
    background: white;
}

.guides-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.guides-text h2 {
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.guides-text p {
    color: #7f8c8d;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.guides-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.guide-item {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.guide-item:hover {
    background: #e9ecef;
    transform: translateX(5px);
}

.guide-icon {
    font-size: 2rem;
    color: #3498db;
    min-width: 40px;
}

.guide-content h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.guide-content p {
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.guide-download {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.guide-download:hover {
    color: #2980b9;
}

.guides-preview {
    position: relative;
    text-align: center;
}

.guides-preview img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.preview-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 2rem 1rem 1rem;
    border-radius: 0 0 15px 15px;
}

.preview-overlay span {
    font-weight: 600;
}

.video-faq {
    padding: 4rem 0;
    background: #f8f9fa;
}

.video-faq .video-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 3rem;
}

.video-player {
    position: relative;
}

.video-thumbnail {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.video-thumbnail:hover {
    transform: scale(1.02);
}

.video-thumbnail img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: transform 0.3s ease;
}

.video-thumbnail:hover .play-button {
    transform: translate(-50%, -50%) scale(1.1);
}

.video-info h3 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.video-info p {
    color: #7f8c8d;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.video-duration {
    color: #6c757d;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.faq-contact {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f39c12, #e67e22);
}

.contact-card {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.contact-icon {
    font-size: 4rem;
    color: #f39c12;
    margin-bottom: 1.5rem;
}

.contact-card h2 {
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.contact-card p {
    color: #7f8c8d;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.contact-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-btn {
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    min-width: 150px;
    justify-content: center;
}

.contact-btn.primary {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
}

.contact-btn.primary:hover {
    background: linear-gradient(135deg, #2980b9, #1f618d);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

.contact-btn.secondary {
    background: transparent;
    color: #2c3e50;
    border: 2px solid #2c3e50;
}

.contact-btn.secondary:hover {
    background: #2c3e50;
    color: white;
    transform: translateY(-2px);
}

.chatbot-info {
    padding: 3rem 0;
    background: white;
}

.chatbot-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 20px;
    padding: 2.5rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.chatbot-icon {
    font-size: 3.5rem;
    min-width: 80px;
    text-align: center;
}

.chatbot-content {
    flex: 1;
}

.chatbot-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.chatbot-content p {
    font-size: 1rem;
    opacity: 0.9;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.chatbot-hours {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 1.5rem;
}

.chatbot-btn {
    background: white;
    color: #667eea;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.chatbot-btn:hover {
    background: #f8f9fa;
    transform: scale(1.05);
}

.faq-newsletter {
    padding: 4rem 0;
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
}

.faq-newsletter .newsletter-content {
   
    align-items: center;
}

.newsletter-text {
    text-align: left;
}

.newsletter-icon {
    font-size: 3rem;
    color: #3498db;
    margin-bottom: 1rem;
    display: block;
}

.faq-newsletter h2 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.faq-newsletter p {
    color: #7f8c8d;
    font-size: 1rem;
    line-height: 1.6;
}

.newsletter-form-container {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.newsletter-form-faq {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1rem;
}

.newsletter-form-faq input {
    padding: 1rem;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s ease;
}

.newsletter-form-faq input:focus {
    border-color: #3498db;
}

.newsletter-form-faq button {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form-faq button:hover {
    background: linear-gradient(135deg, #2980b9, #1f618d);
    transform: scale(1.02);
}

.faq-newsletter .newsletter-disclaimer {
    font-size: 0.9rem;
    color: #6c757d;
    text-align: center;
}

.newsletter-image {
    text-align: center;
}

.newsletter-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.faq-search-results {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 10px;
    padding: 1rem;
    margin: 1rem 0;
    color: #856404;
}

.no-results {
    text-align: center;
    padding: 2rem;
    color: #6c757d;
}

.faq-item.hidden {
    display: none;
}

@media (max-width: 768px) {
    .faq-hero .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .faq-hero .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-text {
        text-align: center;
    }
    
    .search-box {
        flex-direction: column;
        gap: 0.5rem;
        border-radius: 15px;
        padding: 1rem;
    }
    
    .search-btn {
        border-radius: 10px;
    }
    
    .categories-tabs {
        overflow-x: auto;
        justify-content: flex-start;
        padding: 0 1rem;
    }
    
    .tab-btn {
        min-width: 100px;
        flex-shrink: 0;
    }
    
    .popular-grid {
        grid-template-columns: 1fr;
    }
    
    .guides-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .video-faq .video-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .chatbot-card {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .faq-newsletter .newsletter-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .faq-hero .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-icon {
        font-size: 3rem;
    }
    
    .faq-question {
        padding: 1rem;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .contact-card {
        padding: 2rem 1rem;
    }
    
    .contact-card h2 {
        font-size: 1.8rem;
    }
    
    .faq-newsletter h2 {
        font-size: 1.6rem;
    }
}

.faq-search-results {
    background: #e3f2fd;
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    border: 1px solid #90caf9;
    color: #1565c0;
    font-weight: 500;
}

.faq-search-results .no-results {
    color: #f57c00;
    background: #fff3e0;
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid #ffcc02;
}

.faq-item.hidden {
    display: none !important;
    opacity: 0;
    transform: translateY(-20px);
}

.newsletter-success {
    animation: fadeInUp 0.5s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.faq-question.active {
    background: linear-gradient(135deg, #8e44ad 0%, #3498db 100%);
    color: white;
}

.faq-question.active .faq-toggle {
    color: white;
    background: rgba(255, 255, 255, 0.2);
}

.tab-btn.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

@media (max-width: 768px) {
    .newsletter-form-faq {
        flex-direction: column;
        gap: 10px;
    }
    
    .newsletter-form-faq button {
        width: 100%;
    }
    
    .faq-search-results {
        font-size: 0.9rem;
        padding: 0.8rem;
    }
    
    .tab-categories {
        padding: 0 1rem;
        overflow-x: auto;
        scrollbar-width: thin;
    }
    
    .tab-categories::-webkit-scrollbar {
        height: 4px;
    }
    
    .tab-categories::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 2px;
    }
    
    .tab-categories::-webkit-scrollbar-thumb {
        background: #667eea;
        border-radius: 2px;
    }
}

.faq-question:focus {
    outline: 3px solid #667eea;
    outline-offset: 2px;
}

.tab-btn:focus {
    outline: 3px solid #667eea;
    outline-offset: 2px;
}

#faq-search-input:focus {
    outline: 3px solid #667eea;
    outline-offset: 2px;
    box-shadow: 0 0 0 5px rgba(102, 126, 234, 0.1);
}

@media print {
    .faq-hero,
    .faq-search,
    .tab-categories,
    .video-faq,
    .contact-faq,
    .chatbot-faq,
    .faq-newsletter {
        display: none;
    }
    
    .faq-answer {
        display: block !important;
        max-height: none !important;
    }
    
    .faq-toggle {
        display: none;
    }
    
    .faq-question {
        background: none !important;
        color: #000 !important;
        padding: 0.5rem 0;
        border-bottom: 1px solid #ccc;
    }
}

@media (prefers-color-scheme: dark) {
    .faq-page {
        background: #1a1a1a;
        color: #ffffff;
    }
    
    .faq-item {
        background: #2d2d2d;
        border-color: #404040;
    }
    
    .faq-question {
        background: #3d3d3d;
        color: #ffffff;
    }
    
    .faq-search input {
        background: #2d2d2d;
        color: #ffffff;
        border-color: #404040;
    }
    
    .tab-btn {
        background: #2d2d2d;
        color: #ffffff;
        border-color: #404040;
    }
}


.montaz-hero {
    height: 80vh;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), 
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><defs><pattern id="wood" patternUnits="userSpaceOnUse" width="100" height="100"><rect width="100" height="100" fill="%23d4a574"/><rect x="10" y="0" width="80" height="20" fill="%23c79660"/><rect x="0" y="25" width="90" height="15" fill="%23b8874f"/><rect x="15" y="45" width="70" height="18" fill="%23c79660"/><rect x="5" y="70" width="85" height="12" fill="%23b8874f"/><rect x="20" y="85" width="60" height="15" fill="%23c79660"/></pattern></defs><rect width="1200" height="800" fill="url(%23wood)"/></svg>');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
}

.montaz-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    line-height: 1.2;
}

.montaz-hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
    max-width: 600px;
}

.hero-cta {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
    padding: 18px 40px;
    font-size: 1.2rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.3);
}

.hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(231, 76, 60, 0.4);
    background: linear-gradient(135deg, #c0392b 0%, #a93226 100%);
}

.montaz-services {
    padding: 5rem 0;
    background: white;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.services-text h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.services-text p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.services-list {
    list-style: none;
}

.services-list li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: #444;
}

.services-list .icon {
    font-size: 1.5rem;
    margin-right: 15px;
    min-width: 30px;
}

.services-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.tools-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 300px;
}

.tool-icon {
    font-size: 4rem;
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
    border-radius: 20px;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.tool-icon:hover {
    transform: scale(1.1) rotate(5deg);
}

.montaz-process {
    padding: 5rem 0;
    background: linear-gradient(135deg, #ecf0f1 0%, #bdc3c7 100%);
}

.montaz-process h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 3rem;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.process-step {
    text-align: center;
    max-width: 200px;
    position: relative;
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem;
    position: relative;
    z-index: 2;
}

.step-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.process-step h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.process-step p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

.process-arrow {
    font-size: 2rem;
    color: #3498db;
    font-weight: bold;
    margin: 0 1rem;
}

.montaz-pricing {
    padding: 5rem 0;
    background: white;
}

.montaz-pricing h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 3rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid #ecf0f1;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured {
    border-color: #e74c3c;
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.pricing-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.pricing-card h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.price {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 1.5rem;
}

.price span {
    font-size: 2.5rem;
    font-weight: bold;
    color: #e74c3c;
}

.pricing-card ul {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.pricing-card li {
    padding: 0.5rem 0;
    color: #666;
    border-bottom: 1px solid #ecf0f1;
}

.pricing-card li:last-child {
    border-bottom: none;
}

.pricing-btn {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    width: 100%;
}

.pricing-btn:hover {
    background: linear-gradient(135deg, #c0392b 0%, #a93226 100%);
    transform: translateY(-2px);
}

.montaz-warranty {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.warranty-content {
    display: flex;
    align-items: center;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.warranty-icon {
    font-size: 6rem;
    color: #27ae60;
    min-width: 120px;
    text-align: center;
}

.warranty-text h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.warranty-text p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.warranty-text h4 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.warranty-list {
    list-style: none;
    margin-bottom: 2rem;
}

.warranty-list li {
    padding: 0.5rem 0;
    color: #27ae60;
    font-weight: 500;
    font-size: 1.1rem;
}

.warranty-btn {
    background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.warranty-btn:hover {
    background: linear-gradient(135deg, #229954 0%, #1e8449 100%);
    transform: translateY(-2px);
}

.montaz-video {
    padding: 5rem 0;
    background: white;
    text-align: center;
}

.montaz-video h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.video-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
}

.video-container {
    max-width: 800px;
    margin: 0 auto 2rem;
    position: relative;
}

.video-thumbnail {
    width: 100%;
    height: 450px;
    background: linear-gradient(135deg, #8b5a3c 0%, #6d4c36 100%);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.video-thumbnail:hover {
    transform: scale(1.02);
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(231, 76, 60, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-button:hover {
    background: rgba(231, 76, 60, 1);
    transform: translate(-50%, -50%) scale(1.1);
}

.video-cta {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.video-cta:hover {
    background: linear-gradient(135deg, #c0392b 0%, #a93226 100%);
    transform: translateY(-2px);
}

.montaz-faq {
    padding: 5rem 0;
    background: linear-gradient(135deg, #ecf0f1 0%, #bdc3c7 100%);
}

.montaz-faq h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 3rem;
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.montaz-faq .faq-item {
    background: white;
    border-radius: 15px;
    margin-bottom: 1.5rem;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.montaz-faq .faq-item:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.montaz-faq .faq-question {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: white;
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.montaz-faq .faq-question:hover {
    background: linear-gradient(135deg, #2980b9 0%, #21618c 100%);
}

.montaz-faq .faq-question h3 {
    font-size: 1.2rem;
    margin: 0;
}

.montaz-faq .faq-toggle {
    font-size: 1.5rem;
    font-weight: bold;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.montaz-faq .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: white;
}

.montaz-faq .faq-answer.active {
    max-height: 200px;
}

.montaz-faq .faq-answer p {
    padding: 2rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.montaz-advantages {
    padding: 5rem 0;
    background: white;
}

.montaz-advantages h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 3rem;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.advantage-card {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.advantage-card:hover {
    transform: translateY(-10px);
    border-color: #3498db;
    box-shadow: 0 15px 35px rgba(52, 152, 219, 0.2);
}

.advantage-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.advantage-card h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.advantage-card p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

.montaz-reviews {
    padding: 5rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.montaz-reviews h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.reviews-slider {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.review-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: none;
    animation: fadeIn 0.5s ease;
}

.review-card.active {
    display: block;
}

.review-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.customer-photo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.customer-info h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.rating {
    font-size: 1.1rem;
}

.review-card p {
    font-size: 1.1rem;
    line-height: 1.7;
    font-style: italic;
}

.slider-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.slider-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.montaz-final-cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.cta-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 18px 35px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.cta-btn.primary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-btn.primary:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

.cta-btn.secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.cta-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

.contact-quick {
    font-size: 1.1rem;
    opacity: 0.9;
}

.contact-quick a {
    color: white;
    font-weight: bold;
    text-decoration: none;
    border-bottom: 2px solid rgba(255, 255, 255, 0.5);
    transition: border-color 0.3s ease;
}

.contact-quick a:hover {
    border-color: white;
}

.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 2rem;
    border-radius: 20px;
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
}

.close {
    position: absolute;
    right: 1rem;
    top: 1rem;
    font-size: 2rem;
    cursor: pointer;
    color: #999;
    transition: color 0.3s ease;
}

.close:hover {
    color: #333;
}

.contact-form {
    margin-top: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #333;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3498db;
}

.submit-btn {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    width: 100%;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: linear-gradient(135deg, #c0392b 0%, #a93226 100%);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .montaz-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .montaz-hero-content p {
        font-size: 1.1rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .tools-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1rem;
    }
    
    .tool-icon {
        padding: 1rem;
        font-size: 2.5rem;
    }
    
    .process-steps {
        flex-direction: column;
        gap: 2rem;
    }
    
    .process-arrow {
        transform: rotate(90deg);
        margin: 1rem 0;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .warranty-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-btn {
        width: 100%;
        max-width: 300px;
    }
    
    .modal-content {
        margin: 2% auto;
        width: 95%;
    }
}

@media (max-width: 480px) {
    .montaz-hero-content h1 {
        font-size: 2rem;
    }
    
    .montaz-hero-content p {
        font-size: 1rem;
    }
    
    .montaz-hero {
        height: 60vh;
    }
    
    .tools-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.koszyk-hero {
    position: relative;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    padding: 80px 0 60px;
    color: white;
    overflow: hidden;
}

.koszyk-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="cartPattern" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M0 0 L20 20 M20 0 L0 20" stroke="%23ffffff" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23cartPattern)"/></svg>');
    opacity: 0.3;
}

.koszyk-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.koszyk-hero-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    color: #3498db;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    animation: bounce 2s infinite;
}

.koszyk-hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.koszyk-hero-content p {
    font-size: 1.3rem;
    opacity: 0.9;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.koszyk-breadcrumbs {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    opacity: 0.8;
}

.koszyk-breadcrumbs a {
    color: #3498db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.koszyk-breadcrumbs a:hover {
    color: #2980b9;
}

.koszyk-breadcrumbs span {
    color: rgba(255, 255, 255, 0.6);
}

.koszyk-cart-items {
    padding: 60px 0;
    background: #f8f9fa;
}

.koszyk-cart-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.koszyk-section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 40px;
    font-weight: 700;
    position: relative;
}

.koszyk-section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #3498db, #e74c3c);
    border-radius: 2px;
}

.koszyk-cart-table {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
}

.koszyk-table {
    width: 100%;
    border-collapse: collapse;
}

.koszyk-table th {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    padding: 20px 15px;
    text-align: left;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.koszyk-table td {
    padding: 20px 15px;
    border-bottom: 1px solid #e9ecef;
    vertical-align: middle;
}

.koszyk-table tbody tr:hover {
    background: #f8f9fa;
}

.koszyk-product-cell {
    display: flex;
    align-items: center;
    gap: 15px;
}

.koszyk-product-image {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

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

.koszyk-product-image:hover img {
    transform: scale(1.1);
}

.koszyk-product-info h4 {
    font-size: 1.1rem;
    color: #2c3e50;
    margin-bottom: 5px;
    font-weight: 600;
}

.koszyk-product-info p {
    color: #7f8c8d;
    font-size: 0.9rem;
    margin: 0;
}

.koszyk-quantity-controls {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f8f9fa;
    border-radius: 25px;
    padding: 5px;
}

.koszyk-qty-btn {
    width: 35px;
    height: 35px;
    border: none;
    background: #3498db;
    color: white;
    border-radius: 50%;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.koszyk-qty-btn:hover {
    background: #2980b9;
    transform: scale(1.1);
}

.koszyk-qty-input {
    width: 50px;
    text-align: center;
    border: none;
    background: transparent;
    font-size: 1rem;
    font-weight: 600;
    color: #2c3e50;
}

.koszyk-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: #e74c3c;
}

.koszyk-remove-btn {
    background: #e74c3c;
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.9rem;
}

.koszyk-remove-btn:hover {
    background: #c0392b;
    transform: translateY(-2px);
}

.koszyk-summary {
    padding: 60px 0;
    background: white;
}

.koszyk-summary-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 40px;
}

.koszyk-delivery-calculator {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    border: 2px solid #e9ecef;
    transition: border-color 0.3s ease;
}

.koszyk-delivery-calculator:hover {
    border-color: #3498db;
}

.koszyk-delivery-title {
    font-size: 1.4rem;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.koszyk-delivery-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.koszyk-delivery-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.koszyk-delivery-group label {
    font-weight: 600;
    color: #2c3e50;
    font-size: 0.95rem;
}

.koszyk-delivery-input {
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.koszyk-delivery-input:focus {
    outline: none;
    border-color: #3498db;
}

.koszyk-delivery-btn {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.koszyk-delivery-btn:hover {
    background: linear-gradient(135deg, #2980b9, #1f618d);
    transform: translateY(-2px);
}

.koszyk-delivery-result {
    margin-top: 15px;
    padding: 15px;
    background: #d5e8d4;
    border: 1px solid #27ae60;
    border-radius: 8px;
    color: #1e6840;
    font-weight: 600;
    display: none;
}

.koszyk-summary-box {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 100px;
}

.koszyk-summary-title {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 25px;
    font-weight: 700;
    text-align: center;
    padding-bottom: 15px;
    border-bottom: 2px solid #e9ecef;
}

.koszyk-summary-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding: 10px 0;
}

.koszyk-summary-line.total {
    border-top: 2px solid #e9ecef;
    margin-top: 20px;
    padding-top: 20px;
    font-size: 1.2rem;
    font-weight: 700;
    color: #2c3e50;
}

.koszyk-summary-line .price {
    font-weight: 600;
    color: #e74c3c;
}

.koszyk-summary-line.total .price {
    font-size: 1.3rem;
    color: #27ae60;
}

.koszyk-checkout-btn {
    width: 100%;
    background: linear-gradient(135deg, #27ae60, #229954);
    color: white;
    border: none;
    padding: 18px 20px;
    border-radius: 12px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.koszyk-checkout-btn:hover {
    background: linear-gradient(135deg, #229954, #1e7e34);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(39, 174, 96, 0.4);
}

.koszyk-coupons {
    padding: 60px 0;
    background: #f8f9fa;
}

.koszyk-coupons-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.koszyk-coupon-form {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid #e9ecef;
    transition: border-color 0.3s ease;
}

.koszyk-coupon-form:hover {
    border-color: #3498db;
}

.koszyk-coupon-title {
    font-size: 1.4rem;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    text-align: center;
    justify-content: center;
}

.koszyk-coupon-input-group {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.koszyk-coupon-input {
    flex: 1;
    padding: 15px 20px;
    border: 2px solid #e9ecef;
    border-radius: 50px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
}

.koszyk-coupon-input:focus {
    outline: none;
    border-color: #3498db;
}

.koszyk-coupon-btn {
    background: linear-gradient(135deg, #f39c12, #e67e22);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 8px;
}

.koszyk-coupon-btn:hover {
    background: linear-gradient(135deg, #e67e22, #d35400);
    transform: translateY(-2px);
}

.koszyk-available-coupons {
    margin-top: 25px;
}

.koszyk-available-title {
    font-size: 1.1rem;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 600;
}

.koszyk-coupons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.koszyk-coupon-card {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.koszyk-coupon-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    transform: rotate(45deg) translateX(-100%);
    transition: transform 0.6s ease;
}

.koszyk-coupon-card:hover::before {
    transform: rotate(45deg) translateX(100%);
}

.koszyk-coupon-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.4);
}

.koszyk-coupon-code {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
}

.koszyk-coupon-discount {
    font-size: 0.9rem;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

.koszyk-recommendations {
    padding: 60px 0;
    background: white;
}

.koszyk-recommendations-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.koszyk-slider-container {
    position: relative;
    margin-top: 40px;
    overflow: hidden;
    border-radius: 15px;
}

.koszyk-products-slider {
    display: flex;
    transition: transform 0.5s ease;
    gap: 20px;
}

.koszyk-product-slide {
    flex: 0 0 280px;
    background: #f8f9fa;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.koszyk-product-slide:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.koszyk-slide-image {
    height: 200px;
    overflow: hidden;
}

.koszyk-slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.koszyk-product-slide:hover .koszyk-slide-image img {
    transform: scale(1.1);
}

.koszyk-slide-content {
    padding: 20px;
}

.koszyk-slide-title {
    font-size: 1.1rem;
    color: #2c3e50;
    margin-bottom: 10px;
    font-weight: 600;
}

.koszyk-slide-price {
    font-size: 1.2rem;
    color: #e74c3c;
    font-weight: 700;
    margin-bottom: 15px;
}

.koszyk-slide-btn {
    width: 100%;
    background: #3498db;
    color: white;
    border: none;
    padding: 10px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.koszyk-slide-btn:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

.koszyk-slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid #e9ecef;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    color: #2c3e50;
}

.koszyk-slider-nav:hover {
    background: #3498db;
    border-color: #3498db;
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.koszyk-slider-prev {
    left: -25px;
}

.koszyk-slider-next {
    right: -25px;
}

.koszyk-security {
    padding: 60px 0;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
}

.koszyk-security-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.koszyk-security-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.koszyk-security-item {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.koszyk-security-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.koszyk-security-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: #3498db;
    display: block;
    transition: transform 0.3s ease;
}

.koszyk-security-item:hover .koszyk-security-icon {
    transform: scale(1.1) rotate(5deg);
}

.koszyk-security-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
    color: white;
}

.koszyk-security-item p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin: 0;
}

.koszyk-faq {
    padding: 60px 0;
    background: #f8f9fa;
}

.koszyk-faq-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.koszyk-faq-list {
    margin-top: 40px;
}

.koszyk-faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.koszyk-faq-item:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.koszyk-faq-question {
    background: none;
    border: none;
    width: 100%;
    padding: 25px;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.koszyk-faq-question:hover {
    background: #f8f9fa;
    color: #3498db;
}

.koszyk-faq-question.active {
    background: #3498db;
    color: white;
}

.koszyk-faq-icon {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.koszyk-faq-question.active .koszyk-faq-icon {
    transform: rotate(180deg);
}

.koszyk-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: #f8f9fa;
}

.koszyk-faq-answer.active {
    max-height: 200px;
    padding: 25px;
}

.koszyk-faq-answer p {
    margin: 0;
    color: #34495e;
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .koszyk-summary-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .koszyk-summary-box {
        position: static;
    }
    
    .koszyk-slider-prev,
    .koszyk-slider-next {
        display: none;
    }
    
    .koszyk-slider-container {
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }
    
    .koszyk-product-slide {
        scroll-snap-align: start;
    }
}

@media (max-width: 768px) {
    .koszyk-hero {
        padding: 60px 0 40px;
    }
    
    .koszyk-hero-content h1 {
        font-size: 2.2rem;
    }
    
    .koszyk-hero-content p {
        font-size: 1.1rem;
    }
    
    .koszyk-cart-items,
    .koszyk-summary,
    .koszyk-coupons,
    .koszyk-recommendations,
    .koszyk-security,
    .koszyk-faq {
        padding: 40px 0;
    }
    
    .koszyk-section-title {
        font-size: 2rem;
    }
    
    .koszyk-table {
        font-size: 0.9rem;
    }
    
    .koszyk-table th,
    .koszyk-table td {
        padding: 15px 10px;
    }
    
    .koszyk-product-cell {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .koszyk-coupon-input-group {
        flex-direction: column;
        gap: 10px;
    }
    
    .koszyk-coupons-grid {
        grid-template-columns: 1fr;
    }
    
    .koszyk-security-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .koszyk-breadcrumbs {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .koszyk-hero-content h1 {
        font-size: 1.8rem;
    }
    
    .koszyk-hero-content p {
        font-size: 1rem;
    }
    
    .koszyk-cart-container,
    .koszyk-coupons-container,
    .koszyk-recommendations-container,
    .koszyk-security-container,
    .koszyk-faq-container {
        padding: 0 10px;
    }
    
    .koszyk-table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }
    
    .koszyk-delivery-calculator,
    .koszyk-summary-box,
    .koszyk-coupon-form {
        padding: 20px;
    }
    
    .koszyk-product-slide {
        flex: 0 0 250px;
    }
    
    .koszyk-security-item {
        padding: 20px 15px;
    }
    
    .koszyk-faq-question,
    .koszyk-faq-answer.active {
        padding: 20px;
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.koszyk-cart-table,
.koszyk-summary-box,
.koszyk-coupon-form,
.koszyk-security-item,
.koszyk-faq-item {
    animation: fadeIn 0.6s ease forwards;
}

.koszyk-cart-table:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.koszyk-summary-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.koszyk-loading {
    opacity: 0.6;
    pointer-events: none;
}

.koszyk-loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border: 3px solid #e9ecef;
    border-top: 3px solid #3498db;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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


.koszyk-main-content {
    padding: 60px 0;
    background: #f8f9fa;
}

.koszyk-content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.koszyk-left-column {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.koszyk-items-section {
    margin-bottom: 30px;
}

.koszyk-items-container {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e9ecef;
}

.koszyk-items-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 80px;
    gap: 20px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    padding: 20px;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.koszyk-items-list {
    min-height: 200px;
}

.koszyk-item {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 80px;
    gap: 20px;
    padding: 25px 20px;
    border-bottom: 1px solid #e9ecef;
    align-items: center;
    transition: all 0.3s ease;
}

.koszyk-item:hover {
    background: #f8f9fa;
}

.koszyk-item:last-child {
    border-bottom: none;
}

.koszyk-item-product {
    display: flex;
    align-items: center;
    gap: 15px;
}

.koszyk-item-image {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.koszyk-item-image:hover {
    transform: scale(1.1);
}

.koszyk-item-details {
    flex: 1;
}

.koszyk-item-name {
    margin: 0 0 8px 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
}

.koszyk-item-name a {
    color: #2c3e50;
    text-decoration: none;
    transition: color 0.3s ease;
}

.koszyk-item-name a:hover {
    color: #3498db;
}

.koszyk-item-variant,
.koszyk-item-sku {
    margin: 0 0 4px 0;
    font-size: 0.9rem;
    color: #7f8c8d;
}

.koszyk-item-price {
    text-align: center;
}

.price-current {
    font-size: 1.2rem;
    font-weight: 700;
    color: #e74c3c;
}

.price-original {
    font-size: 1rem;
    color: #95a5a6;
    text-decoration: line-through;
    margin-right: 8px;
}

.koszyk-item-quantity {
    display: flex;
    justify-content: center;
}

.quantity-controls {
    display: flex;
    align-items: center;
    background: #f8f9fa;
    border-radius: 25px;
    padding: 5px;
    border: 1px solid #e9ecef;
}

.quantity-btn {
    width: 35px;
    height: 35px;
    border: none;
    background: #3498db;
    color: white;
    border-radius: 50%;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quantity-btn:hover {
    background: #2980b9;
    transform: scale(1.1);
}

.quantity-input {
    width: 50px;
    text-align: center;
    border: none;
    background: transparent;
    font-size: 1rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0 8px;
}

.koszyk-item-total {
    text-align: center;
    font-size: 1.2rem;
    font-weight: 700;
    color: #27ae60;
}

.koszyk-item-remove {
    text-align: center;
}

.remove-btn {
    width: 40px;
    height: 40px;
    border: none;
    background: #e74c3c;
    color: white;
    border-radius: 50%;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.remove-btn:hover {
    background: #c0392b;
    transform: scale(1.1);
}

.koszyk-empty-message {
    text-align: center;
    padding: 60px 20px;
    color: #7f8c8d;
}

.empty-cart-content {
    max-width: 400px;
    margin: 0 auto;
}

.empty-cart-icon {
    font-size: 4rem;
    display: block;
    margin-bottom: 20px;
    opacity: 0.5;
}

.empty-cart-content h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 600;
}

.empty-cart-content p {
    margin-bottom: 30px;
    font-size: 1rem;
    line-height: 1.6;
}

.btn-continue-shopping {
    display: inline-block;
    background: #3498db;
    color: white;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-continue-shopping:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

.koszyk-continue-shopping {
    margin-top: 20px;
}

.koszyk-continue-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #ecf0f1;
    color: #2c3e50;
    padding: 12px 20px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid #bdc3c7;
}

.koszyk-continue-btn:hover {
    background: #bdc3c7;
    border-color: #95a5a6;
    transform: translateY(-2px);
}

.continue-icon {
    font-size: 1.2rem;
}

.koszyk-right-column {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.koszyk-summary {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid #e9ecef;
    position: sticky;
    top: 100px;
}

.koszyk-summary-title {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 25px;
    font-weight: 700;
    text-align: center;
    padding-bottom: 15px;
    border-bottom: 2px solid #e9ecef;
}

.koszyk-summary-content {
    margin-bottom: 25px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding: 10px 0;
}

.summary-row.summary-total {
    border-top: 2px solid #e9ecef;
    margin-top: 20px;
    padding-top: 20px;
    font-size: 1.1rem;
}

.summary-label {
    color: #2c3e50;
    font-weight: 500;
}

.summary-label-total {
    color: #2c3e50;
    font-weight: 700;
    font-size: 1.2rem;
}

.summary-value {
    font-weight: 600;
    color: #e74c3c;
}

.summary-value-total {
    font-weight: 700;
    color: #27ae60;
    font-size: 1.3rem;
}

.free-delivery {
    color: #27ae60;
    font-weight: 600;
}

.koszyk-delivery-calculator {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 12px;
    border: 2px solid #e9ecef;
    margin-bottom: 25px;
}

.calculator-title {
    font-size: 1.1rem;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.calculator-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.form-group label {
    font-weight: 600;
    color: #2c3e50;
    font-size: 0.9rem;
}

.form-input {
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: #3498db;
}

.calculate-btn {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.calculate-btn:hover {
    background: linear-gradient(135deg, #2980b9, #1f618d);
    transform: translateY(-2px);
}

.delivery-result {
    margin-top: 15px;
    padding: 15px;
    background: #d5e8d4;
    border: 1px solid #27ae60;
    border-radius: 8px;
    color: #1e6840;
    font-weight: 600;
    display: none;
}

.koszyk-checkout {
    margin-top: 20px;
}

.checkout-btn {
    width: 100%;
    background: linear-gradient(135deg, #27ae60, #229954);
    color: white;
    border: none;
    padding: 18px 20px;
    border-radius: 12px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.checkout-btn:hover {
    background: linear-gradient(135deg, #229954, #1e7e34);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(39, 174, 96, 0.4);
}

.koszyk-header {
    text-align: center;
}

.koszyk-title-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
}

.koszyk-icon {
    font-size: 3rem;
    animation: bounce 2s infinite;
}

.koszyk-title {
    font-size: 3rem;
    font-weight: 700;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.koszyk-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    margin: 0 0 30px 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.koszyk-coupons-section {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.coupons-title {
    font-size: 1.4rem;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 600;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.coupon-form {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.coupon-input {
    flex: 1;
    padding: 15px 20px;
    border: 2px solid #e9ecef;
    border-radius: 50px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
}

.coupon-input:focus {
    outline: none;
    border-color: #3498db;
}

.apply-coupon-btn {
    background: linear-gradient(135deg, #f39c12, #e67e22);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 8px;
}

.apply-coupon-btn:hover {
    background: linear-gradient(135deg, #e67e22, #d35400);
    transform: translateY(-2px);
}

.available-coupons {
    text-align: center;
}

.available-coupons h4 {
    font-size: 1rem;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 600;
}

.coupon-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.coupon-tag {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.coupon-tag:hover {
    background: linear-gradient(135deg, #2980b9, #1f618d);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.4);
}

.koszyk-recommendations {
    background: white;
    padding: 50px 0;
    margin-top: 60px;
    border-top: 1px solid #e9ecef;
}

.koszyk-recommendations .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.recommendations-title {
    text-align: center;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 700;
    position: relative;
}

.recommendations-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #3498db, #e74c3c);
    border-radius: 2px;
}

.recommendations-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #7f8c8d;
    margin-bottom: 40px;
    font-weight: 400;
}

.recommendations-slider {
    position: relative;
    overflow: hidden;
    padding: 0 60px;
}

.recommendations-container {
    display: flex;
    gap: 25px;
    transition: transform 0.5s ease;
    will-change: transform;
}

.recommendation-card {
    min-width: 280px;
    flex-shrink: 0;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    position: relative;
}

.recommendation-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.recommendation-image {
    height: 220px;
    overflow: hidden;
    position: relative;
}

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

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

.recommendation-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.recommendation-card:hover .recommendation-overlay {
    opacity: 1;
}

.quick-view-btn {
    background: white;
    color: #2c3e50;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

.quick-view-btn:hover {
    background: #3498db;
    color: white;
    transform: scale(1.05);
}

.recommendation-content {
    padding: 25px 20px;
}

.recommendation-name {
    font-size: 1.2rem;
    color: #2c3e50;
    margin-bottom: 8px;
    font-weight: 600;
    line-height: 1.3;
}

.recommendation-description {
    font-size: 0.95rem;
    color: #7f8c8d;
    margin-bottom: 15px;
    line-height: 1.4;
}

.recommendation-price {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.price-current {
    font-size: 1.4rem;
    color: #e74c3c;
    font-weight: 700;
}

.price-old {
    font-size: 1.1rem;
    color: #95a5a6;
    text-decoration: line-through;
    font-weight: 500;
}

.add-to-cart-btn {
    width: 100%;
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    border: none;
    padding: 14px 20px;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.add-to-cart-btn:hover {
    background: linear-gradient(135deg, #2980b9, #1f618d);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.4);
}

.cart-icon {
    font-size: 1.1rem;
    animation: bounce 2s infinite;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: bold;
    color: #2c3e50;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.slider-btn:hover {
    background: #3498db;
    color: white;
    border-color: #3498db;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.3);
}

.slider-prev {
    left: 10px;
}

.slider-next {
    right: 10px;
}

.slider-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: #f8f9fa;
    color: #95a5a6;
    border-color: #e9ecef;
}

.slider-btn:disabled:hover {
    transform: translateY(-50%);
    background: #f8f9fa;
    color: #95a5a6;
    border-color: #e9ecef;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-3px);
    }
    60% {
        transform: translateY(-2px);
    }
}

.koszyk-security {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 60px 0;
    margin-top: 50px;
    border-top: 1px solid #dee2e6;
    position: relative;
}

.koszyk-security::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3498db, #27ae60, #f39c12, #e74c3c);
}

.koszyk-security .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.security-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    align-items: start;
}

.security-feature {
    background: white;
    padding: 35px 25px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
    position: relative;
    overflow: hidden;
}

.security-feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #3498db, #27ae60);
    transition: left 0.5s ease;
}

.security-feature:hover::before {
    left: 0;
}

.security-feature:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border-color: #3498db;
}

.security-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
    display: block;
    transition: all 0.4s ease;
    animation: float 3s ease-in-out infinite;
}

.security-feature:hover .security-icon {
    transform: scale(1.2) rotate(5deg);
}

.security-feature:nth-child(1) .security-icon {
    animation-delay: 0s;
}

.security-feature:nth-child(2) .security-icon {
    animation-delay: 0.5s;
}

.security-feature:nth-child(3) .security-icon {
    animation-delay: 1s;
}

.security-feature:nth-child(4) .security-icon {
    animation-delay: 1.5s;
}

.security-title {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 12px;
    font-weight: 700;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.security-feature:hover .security-title {
    color: #3498db;
}

.security-description {
    font-size: 1rem;
    color: #7f8c8d;
    line-height: 1.6;
    margin: 0;
    font-weight: 400;
    transition: color 0.3s ease;
}

.security-feature:hover .security-description {
    color: #5a6c7d;
}

.security-feature:nth-child(1):hover {
    border-color: #e74c3c;
}

.security-feature:nth-child(1):hover .security-title {
    color: #e74c3c;
}

.security-feature:nth-child(1)::before {
    background: linear-gradient(90deg, #e74c3c, #c0392b);
}

.security-feature:nth-child(2):hover {
    border-color: #f39c12;
}

.security-feature:nth-child(2):hover .security-title {
    color: #f39c12;
}

.security-feature:nth-child(2)::before {
    background: linear-gradient(90deg, #f39c12, #e67e22);
}

.security-feature:nth-child(3):hover {
    border-color: #27ae60;
}

.security-feature:nth-child(3):hover .security-title {
    color: #27ae60;
}

.security-feature:nth-child(3)::before {
    background: linear-gradient(90deg, #27ae60, #229954);
}

.security-feature:nth-child(4):hover {
    border-color: #3498db;
}

.security-feature:nth-child(4):hover .security-title {
    color: #3498db;
}

.security-feature:nth-child(4)::before {
    background: linear-gradient(90deg, #3498db, #2980b9);
}

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

@keyframes pulse {
    0% {
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    }
    50% {
        box-shadow: 0 8px 25px rgba(52, 152, 219, 0.2);
    }
    100% {
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    }
}

.security-feature:nth-child(odd) {
    animation: pulse 4s ease-in-out infinite;
    animation-delay: 2s;
}

.security-feature:nth-child(even) {
    animation: pulse 4s ease-in-out infinite;
    animation-delay: 4s;
}

.koszyk-faq {
    background: #f8f9fa;
    padding: 70px 0;
    margin-top: 50px;
    position: relative;
}

.koszyk-faq::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #3498db, #27ae60, #f39c12);
}

.koszyk-faq .container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.faq-title {
    text-align: center;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 700;
    position: relative;
}

.faq-title::after {
    content: '❓';
    position: absolute;
    top: -15px;
    right: -40px;
    font-size: 2rem;
    animation: bounce 2s infinite;
}

.faq-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #7f8c8d;
    margin-bottom: 50px;
    font-weight: 400;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    cursor: pointer;
    background: white;
    transition: all 0.3s ease;
    border-bottom: 1px solid #f8f9fa;
    user-select: none;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question.active {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    border-bottom-color: transparent;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.4;
    color: inherit;
    flex: 1;
    padding-right: 20px;
}

.faq-toggle {
    width: 35px;
    height: 35px;
    background: #e9ecef;
    color: #2c3e50;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.faq-question:hover .faq-toggle {
    background: #3498db;
    color: white;
    transform: scale(1.1);
}

.faq-question.active .faq-toggle {
    background: white;
    color: #3498db;
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    background: white;
}

.faq-answer.active {
    padding: 25px 30px 30px;
    max-height: 500px;
}

.faq-answer p {
    margin: 0 0 15px 0;
    font-size: 1rem;
    line-height: 1.7;
    color: #2c3e50;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer ul {
    margin: 15px 0;
    padding-left: 25px;
}

.faq-answer li {
    margin-bottom: 8px;
    font-size: 1rem;
    line-height: 1.6;
    color: #2c3e50;
    position: relative;
}

.faq-answer li::marker {
    color: #3498db;
}

.faq-answer strong {
    color: #e74c3c;
    font-weight: 600;
}

.faq-answer a {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.faq-answer a:hover {
    color: #2980b9;
    text-decoration: underline;
}

.faq-item:nth-child(1) {
    animation-delay: 0.1s;
}

.faq-item:nth-child(2) {
    animation-delay: 0.2s;
}

.faq-item:nth-child(3) {
    animation-delay: 0.3s;
}

.faq-item:nth-child(4) {
    animation-delay: 0.4s;
}

.faq-item:nth-child(5) {
    animation-delay: 0.5s;
}

.faq-item:nth-child(6) {
    animation-delay: 0.6s;
}

@keyframes slideInFromLeft {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.faq-item {
    animation: slideInFromLeft 0.6s ease forwards;
    opacity: 0;
}

.faq-item:nth-child(1) .faq-question.active {
    background: linear-gradient(135deg, #27ae60, #229954);
}

.faq-item:nth-child(2) .faq-question.active {
    background: linear-gradient(135deg, #f39c12, #e67e22);
}

.faq-item:nth-child(3) .faq-question.active {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
}

.faq-item:nth-child(4) .faq-question.active {
    background: linear-gradient(135deg, #9b59b6, #8e44ad);
}

.faq-item:nth-child(5) .faq-question.active {
    background: linear-gradient(135deg, #34495e, #2c3e50);
}

.faq-item:nth-child(6) .faq-question.active {
    background: linear-gradient(135deg, #16a085, #1abc9c);
}

.faq-item:nth-child(1):hover {
    border-left: 4px solid #27ae60;
}

.faq-item:nth-child(2):hover {
    border-left: 4px solid #f39c12;
}

.faq-item:nth-child(3):hover {
    border-left: 4px solid #e74c3c;
}

.faq-item:nth-child(4):hover {
    border-left: 4px solid #9b59b6;
}

.faq-item:nth-child(5):hover {
    border-left: 4px solid #34495e;
}

.faq-item:nth-child(6):hover {
    border-left: 4px solid #16a085;
}

@media (max-width: 1024px) {
    .koszyk-content-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .koszyk-summary {
        position: static;
    }
    
    .koszyk-items-header,
    .koszyk-item {
        grid-template-columns: 2fr 100px 120px 100px 60px;
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .koszyk-main-content {
        padding: 40px 0;
    }
    
    .koszyk-content-grid {
        padding: 0 15px;
    }
    
    .koszyk-left-column,
    .koszyk-summary,
    .koszyk-coupons-section {
        padding: 20px;
    }
    
    .koszyk-title {
        font-size: 2.2rem;
    }
    
    .koszyk-subtitle {
        font-size: 1.1rem;
    }
    
    .koszyk-items-header {
        display: none;
    }
    
    .koszyk-item {
        display: block;
        padding: 20px;
        border-radius: 12px;
        margin-bottom: 15px;
        background: #f8f9fa;
        border: 1px solid #e9ecef;
    }
    
    .koszyk-item-product {
        margin-bottom: 15px;
    }
    
    .koszyk-item-price,
    .koszyk-item-quantity,
    .koszyk-item-total,
    .koszyk-item-remove {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 10px;
        padding: 8px 0;
        border-bottom: 1px solid #e9ecef;
    }
    
    .koszyk-item-price::before {
        content: 'Cena:';
        font-weight: 600;
        color: #2c3e50;
    }
    
    .koszyk-item-quantity::before {
        content: 'Ilość:';
        font-weight: 600;
        color: #2c3e50;
    }
    
    .koszyk-item-total::before {
        content: 'Suma:';
        font-weight: 600;
        color: #2c3e50;
    }
    
    .koszyk-item-remove {
        border-bottom: none;
        justify-content: center;
    }
    
    .coupon-form {
        flex-direction: column;
    }
    
    .coupon-tags {
        flex-direction: column;
        align-items: center;
    }
    
    .recommendations-slider {
        padding: 0 40px;
    }
    
    .slider-btn {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
    
    .slider-prev {
        left: 5px;
    }
    
    .slider-next {
        right: 5px;
    }
    
    .recommendation-card {
        min-width: 250px;
    }
    
    .security-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .security-feature {
        padding: 30px 20px;
    }
    
    .security-icon {
        font-size: 3rem;
        margin-bottom: 15px;
    }
    
    .security-title {
        font-size: 1.2rem;
    }
    
    .security-description {
        font-size: 0.95rem;
    }
    
    .faq-title {
        font-size: 2.2rem;
    }
    
    .faq-subtitle {
        font-size: 1.1rem;
        margin-bottom: 40px;
    }
    
    .faq-question {
        padding: 20px 25px;
    }
    
    .faq-question h3 {
        font-size: 1.1rem;
        padding-right: 15px;
    }
    
    .faq-toggle {
        width: 32px;
        height: 32px;
        font-size: 1.3rem;
    }
    
    .faq-answer.active {
        padding: 20px 25px 25px;
    }
    
    .koszyk-faq {
        padding: 50px 0;
    }
}


@media (max-width: 480px) {
    .koszyk-title-wrapper {
        flex-direction: column;
        gap: 10px;
    }
    
    .koszyk-title {
        font-size: 1.8rem;
    }
    
    .koszyk-subtitle {
        font-size: 1rem;
    }
    
    .koszyk-content-grid {
        padding: 0 10px;
    }
    
    .koszyk-item-product {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .recommendations-slider {
        padding: 0 20px;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .slider-prev {
        left: 0;
    }
    
    .slider-next {
        right: 0;
    }
    
    .recommendation-card {
        min-width: calc(100vw - 100px);
        max-width: 300px;
    }
    
    .recommendations-title {
        font-size: 1.8rem;
    }
    
    .recommendations-subtitle {
        font-size: 1rem;
    }
    
    .security-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .security-feature {
        padding: 25px 20px;
    }
    
    .security-icon {
        font-size: 2.5rem;
        margin-bottom: 12px;
    }
    
    .security-title {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }
    
    .security-description {
        font-size: 0.9rem;
    }
    
    .koszyk-security {
        padding: 40px 0;
    }
    
    .faq-title {
        font-size: 1.8rem;
        margin-bottom: 12px;
    }
    
    .faq-title::after {
        top: -10px;
        right: -30px;
        font-size: 1.5rem;
    }
    
    .faq-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .faq-accordion {
        gap: 15px;
    }
    
    .faq-item {
        border-radius: 12px;
    }
    
    .faq-question {
        padding: 18px 20px;
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .faq-question h3 {
        font-size: 1rem;
        padding-right: 0;
        line-height: 1.3;
    }
    
    .faq-toggle {
        width: 30px;
        height: 30px;
        font-size: 1.2rem;
        align-self: flex-end;
        margin-top: -40px;
    }
    
    .faq-answer.active {
        padding: 18px 20px 22px;
        max-height: 600px;
    }
    
    .faq-answer p,
    .faq-answer li {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .faq-answer ul {
        padding-left: 20px;
    }
    
    .koszyk-faq {
        padding: 40px 0;
        margin-top: 30px;
    }
    
    .koszyk-faq .container {
        padding: 0 15px;
    }
}