/* VROSE Custom Styles */

/* ===== GENERAL STYLES ===== */
* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Be Vietnam Pro', sans-serif;
    color: #1A1A1A;
    line-height: 1.6;
}

/* ===== TEXT COLOR UTILITIES (for dynamic menu styling) ===== */
.text-vrose-pink {
    color: #E91E8C !important;
}

.text-danger {
    color: #dc3545 !important;
}

.text-success {
    color: #198754 !important;
}

.text-primary {
    color: #0d6efd !important;
}

.text-warning {
    color: #ffc107 !important;
}

.text-info {
    color: #0dcaf0 !important;
}

.fw-bold {
    font-weight: 700 !important;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }

    100% {
        background-position: 1000px 0;
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

.animate-fade-in {
    animation: fadeIn 0.6s ease-out forwards;
}

.animate-pulse-slow {
    animation: pulse 2s ease-in-out infinite;
}

/* ===== HEADER STYLES ===== */
.header-scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
}

/* ===== BUTTON STYLES ===== */
.btn-primary {
    background: #FF6B9C;
    color: white;
    padding: 12px 32px;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary:hover {
    background: #e85a8a;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 107, 156, 0.3);
}

.btn-secondary {
    background: #2B80C9;
    color: white;
    padding: 12px 32px;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #2472b8;
    transform: translateY(-2px);
}

.btn-outline {
    border: 2px solid #FF6B9C;
    color: #FF6B9C;
    padding: 10px 30px;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: #FF6B9C;
    color: white;
}

/* ===== CARD STYLES ===== */
.card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

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

.card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

/* ===== PRODUCT CARD ===== */
.product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
}

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

.product-card .product-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: #FF6B9C;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    z-index: 10;
}

.product-card .add-to-cart {
    position: absolute;
    bottom: 16px;
    right: 16px;
    width: 44px;
    height: 44px;
    background: #FF6B9C;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s ease;
}

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

/* ===== TESTIMONIAL CARD ===== */
.testimonial-card {
    background: white;
    border-radius: 24px;
    padding: 32px;
    position: relative;
    transition: all 0.3s ease;
}

.testimonial-card::before {
    content: '"';
    font-size: 80px;
    color: rgba(255, 107, 156, 0.1);
    position: absolute;
    top: 16px;
    left: 24px;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

/* ===== FORM STYLES ===== */
input[type="text"],
input[type="email"],
input[type="tel"],
textarea,
select {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: white;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: #FF6B9C;
    box-shadow: 0 0 0 3px rgba(255, 107, 156, 0.1);
}

input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: #FF6B9C;
    cursor: pointer;
}

/* ===== SWIPER CUSTOMIZATION ===== */
.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgba(255, 107, 156, 0.3);
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: #FF6B9C;
    width: 24px;
    border-radius: 5px;
}

.swiper-button-next,
.swiper-button-prev {
    color: white;
    background: rgba(255, 107, 156, 0.8);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: #FF6B9C;
    transform: scale(1.1);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 18px;
    font-weight: bold;
}

/* ===== MOBILE MENU ===== */
#mobile-menu {
    transition: transform 0.3s ease-out;
}

#mobile-menu.open {
    transform: translateX(0);
}

/* ===== LOADING SKELETON ===== */
.skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: 8px;
}

/* ===== LINE CLAMP ===== */
.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.line-clamp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ===== GRADIENT BACKGROUNDS ===== */
.bg-gradient-pink {
    background: linear-gradient(135deg, #FF6B9C 0%, #FF8FB1 100%);
}

.bg-gradient-blue {
    background: linear-gradient(135deg, #2B80C9 0%, #5BA4E5 100%);
}

.bg-gradient-pink-blue {
    background: linear-gradient(135deg, #FF6B9C 0%, #2B80C9 100%);
}

/* ===== GLASSMORPHISM ===== */
.glass {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.glass-dark {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
}

/* ===== OVERLAY ===== */
.overlay-gradient {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {

    .btn-primary,
    .btn-secondary {
        padding: 10px 24px;
        font-size: 14px;
    }

    .testimonial-card {
        padding: 24px;
    }

    .testimonial-card::before {
        font-size: 60px;
    }
}

/* ===== HOVER EFFECTS ===== */
.hover-lift {
    transition: transform 0.3s ease;
}

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

.hover-scale {
    transition: transform 0.3s ease;
}

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

.hover-glow:hover {
    box-shadow: 0 0 30px rgba(255, 107, 156, 0.4);
}

/* ===== SEPARATOR ===== */
.separator {
    height: 1px;
    background: linear-gradient(to right, transparent, #e5e7eb, transparent);
}

/* ===== BACK TO TOP ===== */
#back-to-top {
    transition: all 0.3s ease;
}

#back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

#back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 107, 156, 0.3);
}

/* ===== PRINT STYLES ===== */
@media print {

    header,
    footer,
    #back-to-top {
        display: none;
    }

    .btn-primary,
    .btn-secondary {
        border: 1px solid #000;
        background: white !important;
        color: #000 !important;
    }
}