/* Custom Font Configuration */
body {
    font-family: 'Inter', sans-serif;
}

/* Graffiti/Street Style Text */
.graffiti-text {
    font-weight: 900;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
}

.graffiti-headline {
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

/* Street Style Elements */
.street-style {
    position: relative;
    transform: rotate(-1deg);
    box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.1);
}

.street-style::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #E50046, #FDAB9E, #C7DB9C, #FFF0BD);
    z-index: -1;
    border-radius: inherit;
    opacity: 0.3;
}

/* Fragmented/Collage Hero Style */
.hero-fragmented {
    position: relative;
    overflow: hidden;
}

.fragmented-container {
    position: relative;
    width: 100%;
    height: 500px;
}

.fragment {
    position: absolute;
    animation: float 6s ease-in-out infinite;
}

.fragment-1 {
    top: 0;
    left: 0;
    width: 60%;
    z-index: 3;
    animation-delay: 0s;
}

.fragment-2 {
    top: 60%;
    right: 0%;
    width: 35%;
    z-index: 2;
    animation-delay: 1s;
    transform: rotate(5deg);
}

.fragment-3 {
    bottom: 10%;
    left: 15%;
    width: 30%;
    z-index: 1;
    animation-delay: 2s;
    transform: rotate(-3deg);
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(2deg);
    }
}

.fragment-2 {
    animation-name: float-rotate;
}

.fragment-3 {
    animation-name: float-rotate-reverse;
}

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

@keyframes float-rotate-reverse {
    0%, 100% {
        transform: translateY(0px) rotate(-3deg);
    }
    50% {
        transform: translateY(-10px) rotate(-5deg);
    }
}

/* Navigation Links with Background Highlights */
.nav-link {
    position: relative;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
    font-weight: 600;
    color: #374151;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #E50046, #FDAB9E);
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: #E50046;
}

.nav-link:hover::before {
    width: 80%;
}

/* Asymmetrical Layout Elements */
@media (min-width: 768px) {
    .asymmetrical-left {
        transform: rotate(-0.5deg);
    }
    
    .asymmetrical-right {
        transform: rotate(0.5deg);
    }
}

/* FAQ Accordion Styles */
.faq-item {
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #E50046;
}

.faq-question {
    cursor: pointer;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 1.5rem 1.5rem 1.5rem;
    display: block;
}

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

/* Cookie Banner Animation */
#cookieBanner {
    animation: slideUp 0.5s ease-out;
}

.cookie-banner-animation {
    animation: slideUpBounce 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

#cookieBanner.hidden {
    display: none !important;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideUpBounce {
    0% {
        transform: translateY(100%);
        opacity: 0;
    }
    60% {
        transform: translateY(-10px);
        opacity: 1;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #E50046, #FDAB9E);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #c4003a, #e89a8c);
}

/* Button Hover Effects */
button[type="submit"],
a[href="#contactForm"] {
    position: relative;
    overflow: hidden;
}

button[type="submit"]::before,
a[href="#contactForm"]::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

button[type="submit"]:hover::before,
a[href="#contactForm"]:hover::before {
    width: 300px;
    height: 300px;
}

/* Form Input Focus Effects */
input:focus,
textarea:focus {
    box-shadow: 0 0 0 3px rgba(229, 0, 70, 0.1);
}

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
    .fragmented-container {
        height: 400px;
    }
    
    .fragment-1 {
        width: 70%;
    }
    
    .fragment-2 {
        width: 45%;
        right: 5%;
    }
    
    .fragment-3 {
        width: 40%;
        left: 10%;
    }
    
    .graffiti-headline {
        font-size: 2rem;
    }
    
    .street-style {
        transform: rotate(0deg);
    }
}

/* Loading Animation for Images */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

/* Trust Badge Animation */
.fragment-3 {
    animation: pulse-badge 3s ease-in-out infinite;
}

@keyframes pulse-badge {
    0%, 100% {
        transform: scale(1) rotate(-3deg);
    }
    50% {
        transform: scale(1.05) rotate(-3deg);
    }
}

/* Section Transitions */
section {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

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

/* Stagger Animation Delays */
section:nth-child(1) { animation-delay: 0.1s; }
section:nth-child(2) { animation-delay: 0.2s; }
section:nth-child(3) { animation-delay: 0.3s; }
section:nth-child(4) { animation-delay: 0.4s; }

/* Review Card Hover Effect */
.bg-white.shadow-lg {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bg-white.shadow-lg:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Price Badge Animation */
.bg-\[#E50046\] {
    animation: bounce-subtle 2s ease-in-out infinite;
}

@keyframes bounce-subtle {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Gradient Text Effect */
.text-\[#E50046\] {
    background: linear-gradient(135deg, #E50046, #FDAB9E);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Disclaimer Styles */
section.bg-gray-100 {
    position: relative;
}

section.bg-gray-100 .bg-white {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

section.bg-gray-100 .bg-white:hover {
    transform: translateX(5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Image Styles for Reviews */
.w-16.h-16 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

/* Product Image Styles */
.fragment img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Print Styles */
@media print {
    #cookieBanner,
    header,
    footer,
    section.bg-gray-100 {
        display: none;
    }
}

