:root {
    --primary-color: #4361ee;
    --primary-hover: #3a56d4;
    --secondary-color: #7209b7;
    --accent-color: #f72585;
    --bg-color: #f8f9fd;
    --text-color: #2b2d42;
    --text-light: #686d88;
    --white: #ffffff;
    --gradient-1: linear-gradient(45deg, #4361ee, #3a0ca3);
    --gradient-2: linear-gradient(45deg, #f72585, #7209b7);
    --gradient-3: linear-gradient(45deg, #4cc9f0, #4361ee);
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 15px rgba(0, 0, 0, 0.07);
    --shadow-lg: 0 15px 25px rgba(0, 0, 0, 0.1);
    --border-radius: 12px;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

.main-container {
    opacity: 1;
    transform: none;
}

/* Logo */
.logo {
    display: inline-flex;
    align-items: center;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

    .logo:hover {
        transform: scale(1.05);
        color: var(--primary-hover);
    }

.logo-text {
    margin-right: 10px;
}

.logo-icon {
    background: var(--gradient-1);
    color: var(--white);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

    .logo-icon.small {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }

/* Sekcja hero */
.hero-section {
    padding: 4rem 0;
    overflow: hidden;
}

.hero-content {
    padding-right: 3rem;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

    .hero-title .highlight {
        background: var(--gradient-2);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
        display: inline-block;
    }

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.hero-cta {
    margin-top: 2rem;
}

/* Przycisk CTA */
.cta-button {
    background: var(--primary-color);
    border: none;
    border-radius: 50px;
    padding: 0.75rem 2rem;
    font-weight: 600;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

    .cta-button:hover {
        background: var(--primary-hover);
        transform: translateY(-3px);
        box-shadow: var(--shadow-lg);
    }

    .cta-button span {
        margin-right: 10px;
        position: relative;
        z-index: 2;
    }

    .cta-button i {
        position: relative;
        z-index: 2;
    }

    .cta-button:after {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 5px;
        height: 5px;
        background: rgba(255, 255, 255, 0.3);
        opacity: 0;
        border-radius: 100%;
        transform: scale(1, 1) translate(-50%);
        transform-origin: 50% 50%;
    }

    .cta-button:hover:after {
        animation: ripple 1s ease-out;
    }

.cta-button-large {
    font-size: 1.25rem;
    padding: 1rem 2.5rem;
}

@keyframes ripple {
    0% {
        transform: scale(0, 0);
        opacity: 0.5;
    }

    100% {
        transform: scale(20, 20);
        opacity: 0;
    }
}

/* Benefits list for promo modal */
.benefits-list {
    background-color: #f8f9ff;
    border-radius: 12px;
    padding: 15px;
    margin: 20px 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.benefit-item {
    text-align: left;
    display: flex;
    align-items: center;
    padding: 10px;
    margin-bottom: 5px;
    border-bottom: 1px solid #eaeef6;
    font-weight: 600;
    transition: all 0.2s ease;
}

    .benefit-item:last-child {
        border-bottom: none;
        margin-bottom: 0;
    }

    .benefit-item i {
        font-size: 1.25rem;
        color: var(--accent-color);
    }

.pulse-animation {
    animation: pulse-effect 2s infinite;
}

@keyframes pulse-effect {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(247, 37, 133, 0.4);
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(247, 37, 133, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(247, 37, 133, 0);
    }
}

/* Obrazy produkt�w */
.keychain-showcase {
    position: relative;
    margin-bottom: 2rem;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

    .keychain-showcase:hover {
        transform: translateY(-5px);
    }

.main-image {
    border-radius: var(--border-radius);
}

.floating-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    transform: rotate(5deg);
    box-shadow: var(--shadow-sm);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: rotate(5deg) scale(1);
    }

    50% {
        transform: rotate(5deg) scale(1.05);
    }

    100% {
        transform: rotate(5deg) scale(1);
    }
}

.product-images {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.small-image {
    width: 30%;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

    .small-image:hover {
        transform: translateY(-3px) scale(1.05);
    }

/* Sekcje */
.features-section,
.testimonials-section,
.cta-section {
    padding: 5rem 0;
}

.section-header {
    margin-bottom: 2rem;
}

    .section-header h2 {
        font-size: 2.5rem;
        font-weight: 700;
        position: relative;
        display: inline-block;
    }

        .section-header h2:after {
            content: '';
            position: absolute;
            left: 50%;
            bottom: -10px;
            transform: translateX(-50%);
            width: 50px;
            height: 4px;
            background: var(--gradient-1);
            border-radius: 2px;
        }

/* Karty z funkcjami */
.feature-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    height: 100%;
    transition: var(--transition);
    text-align: center;
}

    .feature-card:hover {
        transform: translateY(-10px);
        box-shadow: var(--shadow-lg);
    }

.feature-icon {
    margin-bottom: 1.5rem;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--gradient-3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
}

    .feature-icon i {
        font-size: 1.75rem;
        color: var(--white);
    }

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-light);
    margin-bottom: 0;
}

/* Testimonials */
.testimonial-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    height: 100%;
    transition: var(--transition);
}

    .testimonial-card:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-lg);
    }

.testimonial-rating {
    margin-bottom: 1rem;
    color: #ffc107;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: var(--white);
    font-weight: 600;
}

.testimonial-info h4 {
    font-size: 1.1rem;
    margin-bottom: 0;
}

.testimonial-info p {
    margin-bottom: 0;
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Sekcja CTA */
.cta-section {
    background: var(--gradient-1);
    color: var(--white);
    border-radius: var(--border-radius);
    padding: 4rem 2rem;
    margin-top: 3rem;
    margin-bottom: 3rem;
    box-shadow: var(--shadow-lg);
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Modal */
.modal-content {
    border-radius: var(--border-radius);
    border: none;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.modal-body {
    padding: 2rem;
}


.promo-icon, .success-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    width: 100px;
    height: 100px;
    line-height: 100px;
    background-color: #f0f4ff;
    border-radius: 50%;
    margin-left: auto;
    margin-right: auto;
}

.success-icon {
    color: #10b981;
    background-color: #ecfdf5;
}

.coupon-code {
    background-color: #f3f4f6;
    padding: 1rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--primary-color);
}

.copy-btn {
    background: transparent;
    border: none;
    color: var(--text-light);
    font-size: 1.25rem;
    margin-left: 10px;
    cursor: pointer;
    transition: var(--transition);
}

    .copy-btn:hover {
        color: var(--primary-color);
    }

.promo-icon, .success-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    width: 100px;
    height: 100px;
    line-height: 100px;
    background-color: #f0f4ff;
    border-radius: 50%;
    margin-left: auto;
    margin-right: auto;
}

.success-icon {
    color: #10b981;
    background-color: #ecfdf5;
}

.modal{
    top: -45px;
}

/* Hide modal backdrops by default */
.modal-backdrop {
    display: none !important;
}

.modal h2 {
    font-weight: 700;
    color: var(--text-color);
}

.coupon-code {
    background-color: #f3f4f6;
    padding: 1rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--primary-color);
}

.copy-btn {
    background: transparent;
    border: none;
    color: var(--text-light);
    font-size: 1.25rem;
    margin-left: 10px;
    cursor: pointer;
    transition: var(--transition);
}

    .copy-btn:hover {
        color: var(--primary-color);
    }

.form-control {
    border-radius: 8px;
    padding: 0.75rem 1rem;
    border: 2px solid #e2e8f0;
    transition: var(--transition);
}

    .form-control:focus {
        border-color: var(--primary-color);
        box-shadow: 0 0 0 3px rgba(67, 97, 238, 0.25);
    }

.btn-close {
    position: absolute;
    right: 20px;
    top: 20px;
}

/* Stopka */
.footer {
    background-color: var(--white);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 0.5rem !important;
}

    .footer a {
        color: var(--text-light);
        text-decoration: none;
        transition: var(--transition);
    }

        .footer a:hover {
            color: var(--primary-color);
        }

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #f3f4f6;
    color: var(--text-light);
    transition: var(--transition);
    margin-right: 5px;
}

    .social-icons a:hover {
        background-color: var(--primary-color);
        color: var(--white);
        transform: translateY(-3px);
    }

/* Animacje */
@keyframes fadeRight {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeLeft {
    from {
        opacity: 0;
        transform: translateX(20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.animate-fade-right {
    animation: fadeRight 0.8s ease-in-out forwards;
}

.animate-fade-left {
    animation: fadeLeft 0.8s ease-in-out forwards;
}

.animate-fade-up {
    animation: fadeUp 0.8s ease-in-out forwards;
}

.animate-zoom-in {
    animation: zoomIn 0.8s ease-in-out forwards;
}

.delay-100 {
    animation-delay: 0.1s;
}

.delay-200 {
    animation-delay: 0.2s;
}

.delay-300 {
    animation-delay: 0.3s;
}

.delay-400 {
    animation-delay: 0.4s;
}

.modal-dialog {
    margin-top: 30px !important;
}

/* Responsywno�� */
@media (max-width: 991.98px) {
    .hero-content {
        padding-right: 0;
        text-align: center;
        margin-bottom: 3rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .feature-card, .testimonial-card {
        margin-bottom: 2rem;
    }
}

@media (max-width: 767.98px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .cta-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 575.98px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .product-images {
        flex-wrap: wrap;
    }

    .small-image {
        width: 30%;
    }

    .cta-button-large {
        font-size: 1.1rem;
        padding: 0.75rem 1.5rem;
    }
}
