/* Modern QR Labels Section */
.paint-can-section {
    padding: 120px 60px;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    position: relative;
    overflow: hidden;
}

.paint-can-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 30% 50%, rgba(251, 191, 36, 0.2) 0%, transparent 40%),
        radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 50% 80%, rgba(245, 158, 11, 0.15) 0%, transparent 40%);
    z-index: 1;
}

.paint-can-section .container {
    position: relative;
    z-index: 2;
}

.paint-can-section h2 {
    text-align: center;
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: white;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    position: relative;
}

.paint-can-section h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.4));
    border-radius: 2px;
}

.paint-can-section .section-subtitle {
    text-align: center;
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 80px;
    font-weight: 400;
}

/* Showcase Layout */
.paint-can-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

/* 3D Paint Can */
.paint-can-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 40px;
}

.paint-can {
    width: 280px;
    height: 350px;
    position: relative;
    animation: float 6s ease-in-out infinite;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(-2deg);
    }
    50% {
        transform: translateY(-20px) rotate(2deg);
    }
}

.can-lid {
    width: 100%;
    height: 30px;
    background: linear-gradient(135deg, #e5e7eb, #9ca3af);
    border-radius: 50%;
    position: absolute;
    top: -15px;
    left: 0;
    box-shadow:
        0 -5px 15px rgba(0, 0, 0, 0.2),
        inset 0 -2px 4px rgba(0, 0, 0, 0.1);
    border: 3px solid #6b7280;
}

.can-lid::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 8px;
    background: linear-gradient(135deg, #374151, #1f2937);
    border-radius: 4px;
    box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.3);
}

.can-body {
    width: 100%;
    height: 320px;
    background: linear-gradient(135deg, #ffffff 0%, #f3f4f6 100%);
    border-radius: 0 0 20px 20px;
    position: relative;
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.2),
        inset 0 2px 4px rgba(255, 255, 255, 0.8);
    border: 2px solid #d1d5db;
}

.can-body::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    height: 15px;
    background: linear-gradient(135deg, #6b7280, #4b5563);
    border-radius: 8px 8px 0 0;
}

.can-handle {
    position: absolute;
    right: -25px;
    top: 50px;
    width: 50px;
    height: 100px;
    border: 8px solid #6b7280;
    border-left: none;
    border-radius: 0 25px 25px 0;
    background: transparent;
    box-shadow: inset -3px 0 6px rgba(0, 0, 0, 0.2);
}

/* Modern QR Label */
.can-label {
    position: absolute;
    top: 50px;
    left: 30px;
    right: 30px;
    background: white;
    border-radius: 16px;
    padding: 20px;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(0, 0, 0, 0.05);
    transform: rotate(-3deg);
    animation: labelGlow 4s ease-in-out infinite;
}

@keyframes labelGlow {
    0%, 100% {
        box-shadow:
            0 8px 32px rgba(0, 0, 0, 0.15),
            0 0 0 1px rgba(0, 0, 0, 0.05);
    }
    50% {
        box-shadow:
            0 12px 48px rgba(251, 191, 36, 0.3),
            0 0 0 1px rgba(251, 191, 36, 0.2);
    }
}

.qr-code-label {
    width: 80px;
    height: 80px;
    margin: 0 auto 15px;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid #e5e7eb;
    position: relative;
}

.qr-code-label svg {
    width: 100%;
    height: 100%;
    animation: qrScan 3s ease-in-out infinite;
}

@keyframes qrScan {
    0%, 100% {
        transform: scale(1);
        filter: none;
    }
    50% {
        transform: scale(1.05);
        filter: brightness(1.1);
    }
}

.label-text {
    text-align: center;
    font-size: 0.9rem;
    color: #1f2937;
    line-height: 1.4;
}

.label-text strong {
    font-size: 1.1rem;
    color: #059669;
    font-weight: 700;
    display: block;
    margin-bottom: 8px;
}

.label-text small {
    display: block;
    color: #6b7280;
    font-size: 0.8rem;
    margin: 2px 0;
}

/* Features Section */
.paint-can-features {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 40px;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.5);
    position: relative;
}

.paint-can-features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 20px 20px 0 0;
}

.paint-can-features h3 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 30px;
    position: relative;
}

.paint-can-features h3::after {
    content: '🎨';
    position: absolute;
    right: 0;
    top: 0;
    font-size: 1.8rem;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 15px;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    font-size: 1.1rem;
    color: #374151;
    transition: all 0.3s ease;
    position: relative;
}

.feature-list li:hover {
    color: #059669;
    transform: translateX(10px);
    background: rgba(16, 185, 129, 0.05);
    padding-left: 15px;
    border-radius: 8px;
}

.feature-list li::before {
    content: '';
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

.feature-list li:nth-child(1)::before { content: '👤'; }
.feature-list li:nth-child(2)::before { content: '🎨'; }
.feature-list li:nth-child(3)::before { content: '🏠'; }
.feature-list li:nth-child(4)::before { content: '📅'; }
.feature-list li:nth-child(5)::before { content: '📱'; }
.feature-list li:nth-child(6)::before { content: '🔄'; }

.feature-list li:last-child {
    border-bottom: none;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .paint-can-section {
        padding: 80px 40px;
    }

    .paint-can-section h2 {
        font-size: 2.8rem;
    }

    .paint-can-showcase {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .paint-can {
        width: 240px;
        height: 300px;
    }

    .paint-can-features {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .paint-can-section {
        padding: 60px 20px;
    }

    .paint-can-section h2 {
        font-size: 2.2rem;
    }

    .paint-can {
        width: 200px;
        height: 250px;
    }

    .can-label {
        padding: 15px;
    }

    .qr-code-label {
        width: 60px;
        height: 60px;
    }

    .paint-can-features h3 {
        font-size: 1.8rem;
    }

    .feature-list li {
        font-size: 1rem;
    }

    .paint-can-showcase {
        gap: 40px;
    }
}