/* Light Pink Theme Enhancements for Fashion Store */

/* Background gradients and patterns */
body {
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 50%, rgba(212, 165, 176, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(196, 145, 160, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

/* Enhanced product cards */
.product-card {
    box-shadow: 0 4px 15px rgba(196, 145, 160, 0.15);
    border: 1px solid rgba(212, 165, 176, 0.2);
    transition: all 0.3s ease;
}

.product-card:hover {
    box-shadow: 0 12px 30px rgba(196, 145, 160, 0.25);
    transform: translateY(-5px);
}

/* Service cards styling */
.service-card {
    border: 1px solid rgba(212, 165, 176, 0.2);
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(196, 145, 160, 0.1);
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: rgba(196, 145, 160, 0.4);
    box-shadow: 0 8px 20px rgba(196, 145, 160, 0.2);
}

/* Category boxes styling */
.category-box {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(245, 230, 232, 0.95) 100%);
    border-radius: 12px;
    border: 1px solid rgba(212, 165, 176, 0.3);
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(196, 145, 160, 0.1);
}

.category-box:hover {
    background: linear-gradient(135deg, rgba(245, 230, 232, 0.95) 0%, rgba(212, 165, 176, 0.05) 100%);
    border-color: rgba(196, 145, 160, 0.5);
    box-shadow: 0 8px 24px rgba(196, 145, 160, 0.2);
    transform: translateY(-3px);
}

.category-box .category-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #C491A0 0%, #D4A5B0 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: white;
}

.category-box h4 {
    color: #8B686F;
    font-size: 18px;
    font-weight: 700;
    margin: 15px 0 8px;
}

.category-box p {
    color: #A08C95;
    font-size: 14px;
    margin: 0;
}

/* Testimonial cards */
.testimonial-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(245, 230, 232, 0.95) 100%);
    border: 1px solid rgba(212, 165, 176, 0.2);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(196, 145, 160, 0.1);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    box-shadow: 0 8px 25px rgba(196, 145, 160, 0.15);
    transform: translateY(-3px);
}

.testimonial-card .stars {
    color: #C491A0;
    margin-bottom: 12px;
}

/* Landing page hero section enhancement */
.hero-section {
    background: linear-gradient(135deg, #C491A0 0%, #D4A5B0 100%);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    z-index: 1;
}

/* Button enhancements */
.btn-pink,
.btn-primary {
    background: linear-gradient(135deg, #C491A0 0%, #A87A8E 100%);
    border: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(196, 145, 160, 0.3);
}

.btn-pink:hover,
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(196, 145, 160, 0.4);
    opacity: 0.95;
}

/* Section backgrounds */
.section-full {
    background: linear-gradient(to bottom, #F9F0F2 0%, #F5E6E8 50%, #F9F0F2 100%);
}

/* Text enhancements */
.text-primary {
    color: #C491A0 !important;
}

.text-muted-pink {
    color: #A08C95;
}

.text-dark-pink {
    color: #8B686F;
}

/* Link hover effects */
a {
    transition: color 0.2s ease;
}

a:hover {
    color: #C491A0;
}

/* Heading styles */
h1, h2, h3, h4, h5, h6 {
    color: #8B686F;
}

h1 span, h2 span, h3 span {
    color: #C491A0;
}

/* Border and divider enhancements */
hr {
    border-color: rgba(212, 165, 176, 0.3);
    border-top: 2px solid rgba(196, 145, 160, 0.2);
}

.divider-pink {
    height: 3px;
    width: 60px;
    background: linear-gradient(90deg, #C491A0 0%, #D4A5B0 100%);
    margin: 15px 0;
}

/* Form styling */
.form-control {
    border: 1px solid rgba(212, 165, 176, 0.3);
    border-radius: 6px;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: #C491A0;
    box-shadow: 0 0 0 0.2rem rgba(196, 145, 160, 0.25);
}

/* Input placeholders */
.form-control::placeholder {
    color: #A08C95;
}

/* Badge styling */
.badge-pink {
    background: linear-gradient(135deg, #C491A0 0%, #D4A5B0 100%);
    color: white;
}

/* Image overlay effects */
.image-overlay {
    background: linear-gradient(135deg, rgba(196, 145, 160, 0.7) 0%, rgba(212, 165, 176, 0.5) 100%);
}

/* Shadow effects */
.shadow-pink {
    box-shadow: 0 8px 24px rgba(196, 145, 160, 0.2);
}

.shadow-lg-pink {
    box-shadow: 0 12px 36px rgba(196, 145, 160, 0.3);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .category-box {
        padding: 20px 15px;
        margin-bottom: 20px;
    }

    .category-box .category-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }

    .navbar-centered .navbar-left,
    .navbar-centered .navbar-right {
        margin: 0;
    }

    .navbar-centered .navbar-brand {
        position: relative;
        left: auto;
        transform: none;
        margin: 0 auto;
    }
