body {
    font-family: 'Fredoka', sans-serif;
    background-color: #fffaf0;
    overflow-x: hidden;
}

.banner-wrapper {
    max-height: 320px;
}

.banner-img {
    max-height: 320px;
    object-fit: cover;
    filter: brightness(0.95) contrast(1.05);
    transition: transform 8s ease;
}

.banner-wrapper:hover .banner-img {
    transform: scale(1.08);
}

.brand-header {
    background: linear-gradient(135deg, #ff5252, #ff793f, #ffb142);
    background-size: 200% 200%;
    animation: gradientShift 6s ease infinite;
    color: white;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.gradient-text {
    color: #ffffff;
    text-shadow: 2px 3px 10px rgba(0, 0, 0, 0.2);
}

.float-animation {
    display: inline-block;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.pulse-icon {
    display: inline-block;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.25); }
    100% { transform: scale(1); }
}

.pulse-btn {
    animation: pulseBtn 2s infinite;
}

@keyframes pulseBtn {
    0% { box-shadow: 0 0 0 0 rgba(255, 159, 67, 0.6); }
    70% { box-shadow: 0 0 0 12px rgba(255, 159, 67, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 159, 67, 0); }
}

.toy-card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    border-radius: 20px;
    background: #ffffff;
}

.toy-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 35px rgba(255, 107, 107, 0.2) !important;
}

.toy-card img {
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    height: 230px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.toy-card:hover img {
    transform: scale(1.1);
}

.btn-custom-buy {
    background: linear-gradient(45deg, #ff9f43, #ff5252);
    color: white;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(255, 159, 67, 0.3);
}

.btn-custom-buy:hover {
    background: linear-gradient(45deg, #ff5252, #d63031);
    color: white;
    transform: scale(1.05);
    box-shadow: 0 6px 18px rgba(214, 48, 49, 0.4);
}

.about-section {
    background: linear-gradient(135deg, #00cec9, #0984e3, #6c5ce7);
    background-size: 200% 200%;
    animation: gradientShift 8s ease infinite;
}

.info-box {
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 25px 20px;
    transition: all 0.3s ease;
}

.info-box:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.custom-section-box {
    border-radius: 20px;
    background: white;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.custom-section-box:hover {
    transform: translateY(-3px);
}

.table-custom-header {
    background: linear-gradient(135deg, #10ac84, #1dd1a1);
    color: white;
}

.btn-submit-animate {
    transition: all 0.3s ease;
}

.btn-submit-animate:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 20px rgba(255, 159, 67, 0.4) !important;
}

#particles-js {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: -1;
  top: 0;
  left: 0;
}