*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Login Page Styles */
.login-container {
    min-height: 100vh;
    background: linear-gradient(135deg, #ff69b4 0%, #ff1493 50%, #c71585 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.login-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(255, 105, 180, 0.3);
    width: 100%;
    max-width: 400px;
    animation: slideInUp 0.6s ease-out;
}

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

.login-card h2 {
    background: linear-gradient(135deg, #ff69b4 0%, #ff1493 50%, #c71585 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Hero Section Styles */
.hero-section {
    position: relative;
    overflow: hidden;
    /* Pink gradient background for carousel */
    background: linear-gradient(135deg, #ffe3ef 0%, #ffc2df 45%, #ff9dca 100%);
    background-attachment: fixed;
}

.hero-slide {
    min-height: 60vh;
    display: flex;
    align-items: center;
    position: relative;
}

/* Make slides transparent so the pink gradient shows through */
.hero-section .hero-slide {
    background: transparent !important;
    color: #2d2d2d;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 105, 180, 0.1) 0%, rgba(255, 20, 147, 0.05) 100%);
    z-index: 1;
}

.hero-slide .container {
    position: relative;
    z-index: 2;
}

.min-vh-50 {
    min-height: 50vh;
}

/* Features Section */
.features-section {
    background: linear-gradient(135deg, #ffeef8 0%, #ffd6f0 50%, #ffb6c1 100%);
}

/* Category hero (text + image) */
.category-hero {
    background: linear-gradient(135deg, #fff5f8 0%, #ffeef8 50%, #ffe0f0 100%);
    border-radius: 16px;
    padding: 24px;
}

.category-hero .hero-copy h2 {
    font-weight: 700;
}

.category-hero .hero-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 24px rgba(199,21,133,0.15);
    height: 300px;
    position: relative;
}

.category-hero .hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.category-hero .hero-image:hover img {
    transform: scale(1.05);
}

/* Promo Mosaic Section */
.promo-mosaic-section {
    background: linear-gradient(135deg, #ffeef7 0%, #ffe6f2 60%, #ffdeee 100%);
}

.promo-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.promo-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    display: block;
    min-height: 0;
    aspect-ratio: 3/4; /* tall look similar to reference */
    box-shadow: 0 10px 24px rgba(199,21,133,0.12);
}

.promo-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}

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

.promo-card .promo-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 18px;
    background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,0.35) 100%);
    color: white;
}

.promo-card h5 {
    margin: 0 0 8px 0;
}

/* Optional subtle label bar to mimic the sample look */
/* label bar removed */

.promo-card.span-2 { grid-column: span 2; aspect-ratio: 3/2; }

@media (max-width: 992px) {
    .promo-grid { grid-template-columns: repeat(2, 1fr); }
    .promo-card.span-2 { grid-column: span 2; }
    
    .category-hero .hero-image {
        height: 250px;
    }
    
    .product-image {
        height: 220px;
    }
}

@media (max-width: 576px) {
    .promo-grid { grid-template-columns: 1fr; }
    
    .category-hero .hero-image {
        height: 200px;
    }
    
    .product-image {
        height: 200px;
    }
}

.feature-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(255, 105, 180, 0.2);
    transition: all 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(255, 105, 180, 0.3);
}

.feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    background: linear-gradient(135deg, #ff69b4 0%, #ff1493 50%, #c71585 100%);
    color: white;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

/* Icon animations per feature */
.features-section .fa-shipping-fast {
    animation: truckMove 2.2s ease-in-out infinite;
}

@keyframes truckMove {
    0% { transform: translateX(0) translateY(0) rotate(0deg); }
    25% { transform: translateX(6px) translateY(-2px) rotate(0deg); }
    50% { transform: translateX(0) translateY(0) rotate(0deg); }
    75% { transform: translateX(-6px) translateY(2px) rotate(0deg); }
    100% { transform: translateX(0) translateY(0) rotate(0deg); }
}

.features-section .fa-shield-alt {
    animation: shieldPulse 2s ease-in-out infinite;
}

@keyframes shieldPulse {
    0%, 100% { transform: scale(1); filter: drop-shadow(0 0 0 rgba(255,105,180,0.0)); }
    50% { transform: scale(1.08); filter: drop-shadow(0 6px 14px rgba(255,105,180,0.35)); }
}

.features-section .fa-undo {
    animation: arrowSpin 2.4s ease-in-out infinite;
    transform-origin: 50% 50%;
}

@keyframes arrowSpin {
    0% { transform: rotate(0deg); }
    50% { transform: rotate(180deg); }
    100% { transform: rotate(360deg); }
}

.features-section .fa-headset {
    animation: headsetBounce 2.2s ease-in-out infinite;
}

@keyframes headsetBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

/* Three Items Section Styles */
.three-items-section {
    background: linear-gradient(135deg, #fff5f8 0%, #ffeef8 50%, #ffe0f0 100%);
}

.item-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(255, 105, 180, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    padding: 30px;
    text-align: center;
}

.item-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(255, 105, 180, 0.2);
}

.item-card-image .item-image {
    overflow: hidden;
    border-radius: 10px;
}

.item-card-image img {
    transition: transform 0.3s ease;
}

.item-card-image:hover img {
    transform: scale(1.1);
}

/* Typing Animation Styles */
.enter-left, .enter-right {
    position: relative;
    overflow: hidden;
    background: white; /* يضمن ظهور الخلفية البيضاء أولاً */
    transition: transform 0.6s ease, opacity 0.6s ease;
}

/* بداية خارج الشاشة حسب الاتجاه */
.enter-left { transform: translateX(-60px); opacity: 0; }
.enter-right { transform: translateX(60px); opacity: 0; }

/* عند الظهور تثبت الكارت البيضاء في مكانها */
.enter-left.is-visible, .enter-right.is-visible { transform: translateX(0); opacity: 1; }

/* الصورة تدخل بعد الخلفية بقليل */
.enter-left .item-image img { opacity: 0; transform: translateX(-20px); transition: transform 0.6s ease 0.15s, opacity 0.6s ease 0.15s; }
.enter-right .item-image img { opacity: 0; transform: translateX(20px); transition: transform 0.6s ease 0.15s, opacity 0.6s ease 0.15s; }

.enter-left.is-visible .item-image img,
.enter-right.is-visible .item-image img { opacity: 1; transform: translateX(0); }

.typing-container {
    text-align: center;
}

.typing-title {
    color: #333;
    margin-bottom: 20px;
    font-weight: bold;
}

.typing-text {
    font-size: 1.4rem;
    color: #666;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.typing-subtitle {
    margin-top: 10px;
    color: #555;
    font-size: 1rem;
}

.typing-cursor {
    animation: blink 1s infinite;
    color: #ff69b4;
    font-weight: bold;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.content-box {
    padding: 20px;
}

.content-box h4 {
    color: #333;
    margin-bottom: 15px;
}

/* Video Section Styles */
.video-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.video-container {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.video-placeholder {
    background: linear-gradient(135deg, #ff69b4 0%, #ff1493 50%, #c71585 100%);
    color: white;
    padding: 40px 20px;
    text-align: center;
    transition: all 0.3s ease;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.video-placeholder:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 105, 180, 0.3);
}

.brand-video {
    width: 100%;
    max-width: 720px;
    aspect-ratio: 16/9;
    background: transparent;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    object-fit: cover;
    display: block;
    /* Crop a little from the top to hide TikTok label if present */
    clip-path: inset(6% 0 0 0 round 12px);
}

.video-features {
    margin-top: 30px;
}

.video-feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.video-feature-item i {
    margin-right: 10px;
    color: #ff69b4;
}

/* Category Cards */
.category-card {
    background: white;
    border: 1px solid #ffeef8;
    transition: all 0.3s ease;
    cursor: pointer;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 105, 180, 0.2);
    border-color: #ff69b4;
}

/* Testimonials Section */
.testimonials-section {
    background: linear-gradient(135deg, #ffeef8 0%, #ffd6f0 50%, #ffb6c1 100%);
    padding: 80px 0;
}

.testimonials-section .section-title {
    color: #333;
    font-weight: 700;
    margin-bottom: 20px;
}

.testimonials-section .section-title::after {
    background: linear-gradient(135deg, #ff69b4 0%, #ff1493 50%, #c71585 100%);
    width: 80px;
    height: 4px;
}

.testimonials-section p.text-muted {
    color: #666 !important;
    font-size: 1.1rem;
    margin-bottom: 50px;
}

.testimonial-card {
    transition: all 0.3s ease;
    height: 100%;
    background: white;
    border: 1px solid #ffd6f0;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 105, 180, 0.2);
    border-color: #ff69b4;
}

.testimonial-content {
    position: relative;
}

.testimonial-content::before {
    content: '"';
    font-size: 4rem;
    color: #ff69b4;
    position: absolute;
    top: -20px;
    left: -10px;
    opacity: 0.3;
}

.testimonial-content p {
    color: #555;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 0;
}

.testimonial-author {
    border-top: 1px solid #ffd6f0;
    padding-top: 15px;
    margin-top: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ff69b4 0%, #ff1493 50%, #c71585 100%);
    color: white;
    font-size: 1.2rem;
}

.author-avatar-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 6px 16px rgba(255,105,180,0.25);
    border: 3px solid #ffeef8;
    transition: transform 0.3s ease;
}

.author-avatar-img:hover {
    transform: scale(1.1);
}

.testimonial-author h6 {
    color: #333;
    font-weight: 600;
    margin-bottom: 2px;
}

.testimonial-author small {
    color: #ff69b4;
    font-weight: 500;
}

/* Product Cards */
.product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(255, 105, 180, 0.2);
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease-out;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 105, 180, 0.3);
}

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

/* Product image styles are defined above in the main product card section */

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

.product-info {
    padding: 20px;
}

.product-title {
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
}

.product-price {
    font-size: 1.2rem;
    font-weight: bold;
    color: #ff69b4;
    margin-bottom: 15px;
}

.product-description {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 15px;
    line-height: 1.5;
}

.product-category {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.category-skincare { background: linear-gradient(135deg, #ffeef8 0%, #ffd6f0 100%); color: #c71585; }
.category-makeup { background: linear-gradient(135deg, #fff0f5 0%, #ffe4e1 100%); color: #ff1493; }
.category-haircare { background: linear-gradient(135deg, #f0f8ff 0%, #e6f3ff 100%); color: #ff69b4; }
.category-fragrance { background: linear-gradient(135deg, #f8f0ff 0%, #f0e6ff 100%); color: #c71585; }

/* About Card */
.about-card {
    background: white;
    border: 1px solid #ffeef8;
    transition: all 0.3s ease;
}

.about-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 105, 180, 0.2);
}

.about-feature {
    background: linear-gradient(135deg, #ffeef8 0%, #ffd6f0 100%);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.about-feature:hover {
    background: white;
    box-shadow: 0 5px 15px rgba(255, 105, 180, 0.2);
    transform: translateY(-3px);
}

/* Contact Page */
.contact-info {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(255, 105, 180, 0.2);
}

.contact-item {
    padding: 15px 0;
    border-bottom: 1px solid #ffeef8;
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ff69b4 0%, #ff1493 50%, #c71585 100%);
    color: white;
}

.contact-form {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(255, 105, 180, 0.2);
}

/* Cart Styles */
.cart-item {
    background: white;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(255, 105, 180, 0.2);
    transition: all 0.3s ease;
}

.cart-item:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 20px rgba(255, 105, 180, 0.3);
}

.cart-total {
    background: linear-gradient(135deg, #ff69b4 0%, #ff1493 50%, #c71585 100%);
    color: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    margin-top: 30px;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #c71585 0%, #ff1493 50%, #ff69b4 100%);
}

.footer h5, .footer h6 {
    color: #ecf0f1;
    font-weight: bold;
}

.footer a {
    transition: all 0.3s ease;
}

.footer a:hover {
    color: #ffeef8 !important;
    transform: translateX(5px);
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    text-align: center;
    line-height: 40px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #ffeef8;
    color: #ff69b4;
    transform: translateY(-3px);
}

/* Swiper Customization */
.swiper-pagination-bullet {
    background: white;
    opacity: 0.7;
}

.swiper-pagination-bullet-active {
    background: white;
    opacity: 1;
}

.swiper-button-next,
.swiper-button-prev {
    color: white;
}

/* Button Animations */
.btn {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 105, 180, 0.3);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

/* Form Animations */
.form-control {
    transition: all 0.3s ease;
    border: 2px solid #ffeef8;
}

.form-control:focus {
    border-color: #ff69b4;
    box-shadow: 0 0 0 0.2rem rgba(255, 105, 180, 0.25);
    transform: translateY(-2px);
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255,105,180,.3);
    border-radius: 50%;
    border-top-color: #ff69b4;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .login-card {
        padding: 30px 20px;
    }
    
    .hero-slide {
        min-height: 40vh;
    }
    
    .min-vh-50 {
        min-height: 30vh;
    }
    
    .display-4 {
        font-size: 2rem;
    }
    
    .lead {
        font-size: 1rem;
    }
    
    .feature-card,
    .testimonial-card {
        margin-bottom: 20px;
    }
    
    .contact-info,
    .contact-form {
        margin-bottom: 30px;
    }
}

/* LTR Specific Styles */
[dir="ltr"] .swiper-button-next {
    right: 10px;
    left: auto;
}

[dir="ltr"] .swiper-button-prev {
    left: 10px;
    right: auto;
}

/* Smooth Page Transitions */
.page-transition {
    animation: pageFadeIn 0.5s ease-out;
}

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

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

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

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #ff69b4 0%, #ff1493 50%, #c71585 100%);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #ff1493 0%, #c71585 50%, #ff69b4 100%);
}

/* Success/Error Messages */
.alert {
    border-radius: 10px;
    border: none;
    animation: slideInDown 0.5s ease-out;
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: #666;
}

.empty-state i {
    font-size: 4rem;
    margin-bottom: 20px;
    opacity: 0.5;
}

/* Badge Animations */
.badge {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

/* Professional Enhancements */
.section-title {
    position: relative;
    margin-bottom: 3rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #ff69b4 0%, #ff1493 50%, #c71585 100%);
    border-radius: 2px;
}

.card-hover-effect {
    transition: all 0.3s ease;
}

.card-hover-effect:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 105, 180, 0.3);
}

.gradient-text {
    background: linear-gradient(135deg, #ff69b4 0%, #ff1493 50%, #c71585 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.floating-animation {
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Enhanced Button Styles */
.btn-gradient {
    background: linear-gradient(135deg, #ff69b4 0%, #ff1493 50%, #c71585 100%);
    border: none;
    color: white;
    transition: all 0.3s ease;
}

.btn-gradient:hover {
    background: linear-gradient(135deg, #c71585 0%, #ff1493 50%, #ff69b4 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 105, 180, 0.4);
}

/* Professional Card Styles */
.professional-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(255, 105, 180, 0.2);
    transition: all 0.3s ease;
    border: 1px solid rgba(255,105,180,0.2);
}

.professional-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 105, 180, 0.3);
}

/* Enhanced Form Styles */
.form-floating {
    position: relative;
}

.form-floating .form-control {
    height: 60px;
    padding: 1rem 0.75rem;
}

.form-floating label {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    padding: 1rem 0.75rem;
    pointer-events: none;
    border: 1px solid transparent;
    transform-origin: 0 0;
    transition: opacity 0.1s ease-in-out, transform 0.1s ease-in-out;
}

.form-floating .form-control:focus ~ label,
.form-floating .form-control:not(:placeholder-shown) ~ label {
    opacity: 0.65;
    transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}

/* Beauty-specific enhancements */
.navbar-dark.bg-primary {
    background: linear-gradient(135deg, rgba(255,105,180,0.9) 0%, rgba(255,20,147,0.9) 50%, rgba(199,21,133,0.9) 100%) !important;
}

.btn-primary {
    background: linear-gradient(135deg, #ff69b4 0%, #ff1493 50%, #c71585 100%);
    border: none;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #c71585 0%, #ff1493 50%, #ff69b4 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 105, 180, 0.4);
}

/* Enhanced Beauty Navbar */
.beauty-navbar {
    backdrop-filter: saturate(140%) blur(10px);
    box-shadow: 0 8px 24px rgba(199,21,133,0.15);
    border-bottom: 1px solid rgba(255,255,255,0.15);
    transition: all 0.3s ease;
}

.beauty-navbar .navbar-brand {
    letter-spacing: 0.5px;
}

.beauty-navbar .nav-link {
    position: relative;
    padding: 0.5rem 0.9rem;
    border-radius: 8px;
    transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.beauty-navbar .nav-link:hover {
    background: rgba(255,255,255,0.12);
    transform: translateY(-1px);
}

.beauty-navbar .nav-link.active {
    background: rgba(255,255,255,0.2);
    box-shadow: 0 6px 16px rgba(255,105,180,0.25);
}

.beauty-navbar .btn.btn-light.btn-sm {
    border-radius: 10px;
    padding: 8px 14px;
}

.beauty-navbar.navbar-scrolled {
    background: linear-gradient(135deg, rgba(199,21,133,0.95) 0%, rgba(255,20,147,0.95) 50%, rgba(255,105,180,0.95) 100%) !important;
    box-shadow: 0 10px 30px rgba(199,21,133,0.25);
}

/* Beauty-themed product cards */
.product-card {
    border: 1px solid #ffd6f0;
}

.product-card:hover {
    border-color: #ff69b4;
}

/* Beauty consultation section */
.consultation-section {
    background: linear-gradient(135deg, #ffeef8 0%, #ffd6f0 50%, #ffb6c1 100%);
    padding: 60px 0;
}

/* Beauty tips section */
.beauty-tips {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(255, 105, 180, 0.2);
    margin-bottom: 30px;
}

.beauty-tips h4 {
    color: #ff69b4;
    margin-bottom: 15px;
}

/* Seasonal beauty collection */
.seasonal-collection {
    background: linear-gradient(135deg, #ff69b4 0%, #ff1493 50%, #c71585 100%);
    color: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    margin: 30px 0;
}

.seasonal-collection h3 {
    margin-bottom: 20px;
}

/* Beauty rewards program */
.rewards-program {
    background: linear-gradient(135deg, #ffeef8 0%, #ffd6f0 100%);
    border: 2px dashed #ff69b4;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    margin: 30px 0;
}

.rewards-program h4 {
    color: #c71585;
    margin-bottom: 15px;
}

/* Welcome Popup Styles */
.welcome-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    backdrop-filter: blur(5px);
}

.welcome-popup-content {
    background: white;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    max-width: 400px;
    width: 90%;
    position: relative;
    box-shadow: 0 20px 40px rgba(255, 105, 180, 0.3);
    animation: popupSlideIn 0.6s ease-out;
}

@keyframes popupSlideIn {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(-50px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.welcome-popup-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 24px;
    color: #666;
    cursor: pointer;
    transition: color 0.3s ease;
}

.welcome-popup-close:hover {
    color: #ff69b4;
}

.welcome-popup-logo {
    font-size: 2rem;
    font-weight: bold;
    background: linear-gradient(135deg, #ff69b4 0%, #ff1493 50%, #c71585 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.welcome-popup-title {
    font-size: 1.8rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.welcome-popup-title .highlight {
    background: linear-gradient(135deg, #ff69b4 0%, #ff1493 50%, #c71585 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.welcome-popup-message {
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.welcome-popup-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.welcome-popup-btn {
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.welcome-popup-btn-primary {
    background: linear-gradient(135deg, #ff69b4 0%, #ff1493 50%, #c71585 100%);
    color: white;
}

.welcome-popup-btn-primary:hover {
    background: linear-gradient(135deg, #c71585 0%, #ff1493 50%, #ff69b4 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 105, 180, 0.4);
    color: white;
}

.welcome-popup-btn-secondary {
    background: transparent;
    color: #ff69b4;
    border: 2px solid #ff69b4;
}

.welcome-popup-btn-secondary:hover {
    background: #ff69b4;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 105, 180, 0.3);
}





/* Enhanced Cart Notification Styles */
.swal2-cart-popup {
    border-radius: 20px !important;
    background: linear-gradient(135deg, #ffffff 0%, #ffeef8 100%) !important;
    border: 2px solid #ffd6f0 !important;
    box-shadow: 0 20px 40px rgba(255, 105, 180, 0.3) !important;
}

.swal2-cart-title {
    background: linear-gradient(135deg, #ff69b4 0%, #ff1493 50%, #c71585 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    font-weight: bold !important;
    font-size: 1.8rem !important;
}

.swal2-cart-html {
    font-family: inherit !important;
}



/* Cart notification animation */
@keyframes cartNotificationSlideIn {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(-50px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.swal2-cart-popup {
    animation: cartNotificationSlideIn 0.6s ease-out !important;
}

/* Enhanced button styles for cart notification */
.swal2-cart-popup .swal2-confirm {
    background: linear-gradient(135deg, #ff69b4 0%, #ff1493 50%, #c71585 100%) !important;
    border: none !important;
    border-radius: 25px !important;
    padding: 12px 30px !important;
    font-weight: bold !important;
    transition: all 0.3s ease !important;
}

.swal2-cart-popup .swal2-confirm:hover {
    background: linear-gradient(135deg, #c71585 0%, #ff1493 50%, #ff69b4 100%) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 10px 20px rgba(255, 105, 180, 0.4) !important;
}

.swal2-cart-popup .swal2-cancel {
    background: transparent !important;
    border: 2px solid #6c757d !important;
    border-radius: 25px !important;
    padding: 12px 30px !important;
    font-weight: bold !important;
    color: #6c757d !important;
    transition: all 0.3s ease !important;
}

.swal2-cart-popup .swal2-cancel:hover {
    background: #6c757d !important;
    color: white !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 10px 20px rgba(108, 117, 125, 0.3) !important;
}

/* Featured Products Carousel */
.featured-products-swiper {
    padding: 20px 0;
}

.featured-products-swiper .swiper-slide {
    height: auto;
}

.featured-products-swiper .product-card {
    height: 100%;
    margin: 0;
}

.featured-products-swiper .swiper-pagination {
    position: relative;
    margin-top: 20px;
}

.featured-products-swiper .swiper-pagination-bullet {
    background: linear-gradient(135deg, #ff69b4 0%, #ff1493 100%);
    opacity: 0.5;
}

.featured-products-swiper .swiper-pagination-bullet-active {
    opacity: 1;
    background: linear-gradient(135deg, #ff69b4 0%, #ff1493 100%);
}

.featured-products-swiper .swiper-button-next,
.featured-products-swiper .swiper-button-prev {
    color: #ff69b4;
    background: rgba(255, 255, 255, 0.9);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.featured-products-swiper .swiper-button-next:hover,
.featured-products-swiper .swiper-button-prev:hover {
    background: rgba(255, 255, 255, 1);
    color: #ff1493;
}

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



/* Product Card Styles */
.product-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(255, 105, 180, 0.2);
    transition: all 0.3s ease;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(255, 105, 180, 0.3);
}

.product-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 15px 15px 0 0;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #ffeef8 0%, #ffd6f0 100%);
}

.product-image:not([src]), 
.product-image[src=""],
.product-image[src*="placeholder"] {
    background: linear-gradient(135deg, #ffeef8 0%, #ffd6f0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff69b4;
    font-size: 3rem;
}

.product-image:not([src])::after, 
.product-image[src=""]::after,
.product-image[src*="placeholder"]::after {
    content: '\f5d1';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
}