/* =========================================================
   SoftCurve — Premium Lingerie Stylesheet
   ========================================================= */
   @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

   :root {
       --primary:    #FF6F91;
       --primary-d:  #E85A7B;
       --secondary:  #FFC2D1;
       --bg:         #FFF5F7;
       --bg-white:   #FFFFFF;
       --accent:     #FFB6C1;
       --dark:       #2C2C2C;
       --gray:       #6B7280;
       --light-gray: #F3F4F6;
       --border:     #FFE5EC;
       --success:    #10B981;
       --warning:    #F59E0B;
       --danger:     #EF4444;
       --shadow:     0 4px 24px rgba(255,111,145,0.10);
       --shadow-lg:  0 12px 40px rgba(255,111,145,0.15);
       --radius:     14px;
       --radius-sm:  8px;
       --transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
   }
   
   * { box-sizing: border-box; margin: 0; padding: 0; }
   body { font-family: 'Poppins', sans-serif; background: var(--bg); color: var(--dark); line-height: 1.6; }
   a { text-decoration: none; color: var(--primary); transition: var(--transition); }
   a:hover { color: var(--primary-d); }
   img { max-width: 100%; }
   
   /* ================ TOP BAR ================ */
   .top-bar {
       background: var(--dark);
       color: #ccc;
       padding: 6px 0;
       font-size: 0.78rem;
   }
   
   /* ================ NAVBAR ================ */
   .sc-navbar {
       background: var(--bg-white);
       box-shadow: 0 2px 20px rgba(0,0,0,0.06);
       padding: 12px 0;
       z-index: 1040;
   }
   .sc-navbar .navbar-brand {
       font-weight: 800;
       font-size: 1.6rem;
       color: var(--primary) !important;
       letter-spacing: -0.5px;
   }
   .brand-icon { font-size: 1.3rem; margin-right: 4px; animation: pulse 2s infinite; }
   @keyframes pulse {
       0%,100% { transform: scale(1); }
       50% { transform: scale(1.15); }
   }
   .sc-navbar .nav-link {
       font-weight: 500;
       color: var(--dark) !important;
       padding: 8px 16px !important;
       position: relative;
       transition: var(--transition);
   }
   .sc-navbar .nav-link::after {
       content: '';
       position: absolute;
       bottom: 0; left: 50%; width: 0; height: 2px;
       background: var(--primary);
       transition: var(--transition);
       transform: translateX(-50%);
   }
   .sc-navbar .nav-link:hover::after,
   .sc-navbar .nav-link.active::after { width: 60%; }
   .sc-navbar .nav-link:hover { color: var(--primary) !important; }
   .nav-icon-link {
       font-size: 1.2rem;
       color: var(--dark);
       transition: var(--transition);
   }
   .nav-icon-link:hover { color: var(--primary); transform: translateY(-2px); }
   .cart-badge {
       position: absolute;
       top: -6px; right: -8px;
       background: var(--primary);
       color: #fff;
       font-size: 0.6rem;
       width: 18px; height: 18px;
       border-radius: 50%;
       display: flex;
       align-items: center;
       justify-content: center;
       font-weight: 600;
   }
   
   /* Search */
   .search-form .form-control {
       border-radius: 25px 0 0 25px;
       border: 2px solid var(--border);
       font-size: 0.85rem;
       padding: 6px 16px;
   }
   .search-form .form-control:focus { border-color: var(--primary); box-shadow: none; }
   .search-form .btn {
       border-radius: 0 25px 25px 0;
       background: var(--primary);
       color: #fff;
       border: 2px solid var(--primary);
       padding: 6px 14px;
   }
   
   /* Mega Menu */
   .mega-menu {
       width: 600px;
       border: none;
       border-radius: var(--radius);
       box-shadow: var(--shadow-lg);
       border-top: 3px solid var(--primary);
   }
   .mega-heading {
       color: var(--primary);
       font-weight: 700;
       margin-bottom: 10px;
       font-size: 0.95rem;
       text-transform: uppercase;
       letter-spacing: 0.5px;
   }
   .mega-menu ul li { margin-bottom: 4px; }
   .mega-menu ul li a {
       color: var(--gray);
       font-size: 0.88rem;
       transition: var(--transition);
   }
   .mega-menu ul li a:hover { color: var(--primary); padding-left: 6px; }
   
   /* ================ BUTTONS ================ */
   .btn-sc {
       background: var(--primary);
       color: #fff;
       border: none;
       border-radius: 25px;
       padding: 10px 28px;
       font-weight: 600;
       font-size: 0.92rem;
       transition: var(--transition);
       display: inline-flex;
       align-items: center;
       gap: 6px;
   }
   .btn-sc:hover {
       background: var(--primary-d);
       color: #fff;
       transform: translateY(-2px);
       box-shadow: 0 8px 25px rgba(255,111,145,0.3);
   }
   .btn-sc-outline {
       background: transparent;
       color: var(--primary);
       border: 2px solid var(--primary);
       border-radius: 25px;
       padding: 8px 24px;
       font-weight: 600;
       font-size: 0.92rem;
       transition: var(--transition);
   }
   .btn-sc-outline:hover {
       background: var(--primary);
       color: #fff;
       transform: translateY(-2px);
   }
   .btn-sc-white {
       background: #fff;
       color: var(--primary);
       border: none;
       border-radius: 25px;
       padding: 12px 32px;
       font-weight: 600;
       transition: var(--transition);
   }
   .btn-sc-white:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(0,0,0,.1); }
   
   /* ================ HERO SECTION ================ */
   .hero-section {
       background: linear-gradient(135deg, var(--primary) 0%, #FF8FA3 25%, var(--secondary) 60%, #FFE5EC 100%);
       min-height: 80vh;
       display: flex;
       align-items: center;
       position: relative;
       overflow: hidden;
   }
   .hero-section::before {
       content: '';
       position: absolute;
       top: -50%; right: -20%;
       width: 60%; height: 200%;
       background: rgba(255,255,255,0.07);
       border-radius: 50%;
       animation: float 6s ease-in-out infinite;
   }
   .hero-section::after {
       content: '';
       position: absolute;
       bottom: -30%; left: -15%;
       width: 45%; height: 140%;
       background: rgba(255,255,255,0.05);
       border-radius: 50%;
       animation: float 8s ease-in-out infinite reverse;
   }
   @keyframes float {
       0%,100% { transform: translateY(0) rotate(0deg); }
       50% { transform: translateY(-20px) rotate(2deg); }
   }
   .hero-content { position: relative; z-index: 2; }
   .hero-content h1 { font-size: 3.5rem; font-weight: 800; line-height: 1.15; }
   .hero-content p { font-size: 1.15rem; opacity: 0.92; }
   .hero-features { margin-top: 30px; }
   .hero-feature {
       display: inline-flex;
       align-items: center;
       gap: 8px;
       background: rgba(255,255,255,0.2);
       backdrop-filter: blur(10px);
       padding: 8px 16px;
       border-radius: 25px;
       margin: 4px;
       font-size: 0.85rem;
       font-weight: 500;
   }
   
   /* ================ SECTION TITLES ================ */
   .section-header { text-align: center; margin-bottom: 45px; }
   .section-header h2 {
       font-weight: 700;
       font-size: 2rem;
       position: relative;
       display: inline-block;
   }
   .section-header h2::after {
       content: '';
       display: block;
       width: 50px; height: 3px;
       background: var(--primary);
       margin: 10px auto 0;
       border-radius: 3px;
   }
   .section-header p { color: var(--gray); margin-top: 10px; }
   
   /* ================ CATEGORY CARDS ================ */
   .category-card {
       background: var(--bg-white);
       border-radius: var(--radius);
       padding: 30px 20px;
       text-align: center;
       transition: var(--transition);
       border: 2px solid var(--border);
       cursor: pointer;
   }
   .category-card:hover {
       border-color: var(--primary);
       transform: translateY(-5px);
       box-shadow: var(--shadow);
   }
   .category-card .cat-icon {
       width: 70px; height: 70px;
       border-radius: 50%;
       background: linear-gradient(135deg, var(--secondary), var(--accent));
       display: flex;
       align-items: center;
       justify-content: center;
       margin: 0 auto 15px;
       font-size: 1.5rem;
       color: var(--primary-d);
       transition: var(--transition);
   }
   .category-card:hover .cat-icon {
       background: linear-gradient(135deg, var(--primary), var(--primary-d));
       color: #fff;
       transform: scale(1.1);
   }
   .category-card h6 { font-weight: 600; margin-bottom: 4px; }
   .category-card small { color: var(--gray); }
   
   /* ================ PRODUCT CARDS ================ */
   .product-card {
       border: none;
       border-radius: var(--radius);
       overflow: hidden;
       background: var(--bg-white);
       transition: var(--transition);
       height: 100%;
   }
   .product-card:hover {
       transform: translateY(-8px);
       box-shadow: var(--shadow-lg);
   }
   .product-img-wrap {
       position: relative;
       overflow: hidden;
       background: #fdf2f5;
   }
   .product-img-wrap img {
       width: 100%;
       height: 320px;
       object-fit: cover;
       transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
   }
   .product-card:hover .product-img-wrap img { transform: scale(1.08); }
   
   /* Badges */
   .product-badge {
       position: absolute;
       top: 12px; left: 12px;
       z-index: 2;
   }
   .badge-discount {
       background: var(--primary);
       color: #fff;
       padding: 4px 10px;
       border-radius: 20px;
       font-size: 0.72rem;
       font-weight: 600;
   }
   .badge-new {
       background: var(--success);
       color: #fff;
       padding: 4px 10px;
       border-radius: 20px;
       font-size: 0.72rem;
       font-weight: 600;
   }
   
   /* Wishlist Button */
   .product-wishlist {
       position: absolute;
       top: 12px; right: 12px;
       width: 36px; height: 36px;
       border-radius: 50%;
       background: rgba(255,255,255,0.9);
       border: none;
       display: flex;
       align-items: center;
       justify-content: center;
       cursor: pointer;
       transition: var(--transition);
       z-index: 2;
       color: var(--gray);
       font-size: 1rem;
   }
   .product-wishlist:hover { background: var(--primary); color: #fff; }
   
   /* Overlay */
   .product-overlay {
       position: absolute;
       bottom: 0; left: 0; right: 0;
       background: linear-gradient(transparent, rgba(255,111,145,0.95));
       padding: 40px 15px 15px;
       transform: translateY(100%);
       transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
       text-align: center;
   }
   .product-card:hover .product-overlay { transform: translateY(0); }
   .btn-add-cart {
       background: #fff;
       color: var(--primary);
       border: none;
       padding: 10px 24px;
       border-radius: 25px;
       font-weight: 600;
       font-size: 0.85rem;
       cursor: pointer;
       transition: var(--transition);
       display: inline-flex;
       align-items: center;
       gap: 6px;
   }
   .btn-add-cart:hover { background: var(--bg); transform: scale(1.05); }
   
   .product-card .card-body { padding: 16px; }
   .subcat-badge {
       display: inline-block;
       background: var(--border);
       color: var(--primary);
       font-size: 0.7rem;
       padding: 2px 10px;
       border-radius: 10px;
       font-weight: 600;
       letter-spacing: 0.3px;
   }
   .product-card .product-name {
       font-weight: 600;
       font-size: 0.95rem;
       margin: 8px 0 4px;
       display: -webkit-box;
       -webkit-line-clamp: 2;
       -webkit-box-orient: vertical;
       overflow: hidden;
       color: var(--dark);
       transition: var(--transition);
   }
   .product-card:hover .product-name { color: var(--primary); }
   .product-card .product-desc {
       font-size: 0.8rem;
       color: var(--gray);
       display: -webkit-box;
       -webkit-line-clamp: 2;
       -webkit-box-orient: vertical;
       overflow: hidden;
       margin-bottom: 8px;
   }
   .price-wrap { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
   .current-price { font-weight: 700; font-size: 1.15rem; color: var(--primary); }
   .original-price { font-size: 0.85rem; color: #999; text-decoration: line-through; }
   .discount-tag { font-size: 0.75rem; color: var(--success); font-weight: 600; }
   
   /* ================ FILTER BUTTONS ================ */
   .filter-bar { margin-bottom: 30px; }
   .btn-filter {
       border: 2px solid var(--border);
       color: var(--dark);
       border-radius: 25px;
       padding: 7px 20px;
       font-size: 0.85rem;
       font-weight: 500;
       margin: 4px;
       transition: var(--transition);
       background: var(--bg-white);
   }
   .btn-filter:hover, .btn-filter.active {
       background: var(--primary);
       border-color: var(--primary);
       color: #fff;
       transform: translateY(-2px);
   }
   
   /* ================ PRODUCT DETAIL PAGE ================ */
   .product-detail-img {
       border-radius: var(--radius);
       overflow: hidden;
       background: #fdf2f5;
   }
   .product-detail-img img {
       width: 100%;
       height: 550px;
       object-fit: cover;
   }
   .detail-info .product-title { font-size: 1.8rem; font-weight: 700; }
   .detail-price .current-price { font-size: 1.8rem; }
   .detail-price .original-price { font-size: 1.1rem; }
   .size-option {
       width: 44px; height: 44px;
       border: 2px solid var(--border);
       border-radius: 10px;
       display: flex;
       align-items: center;
       justify-content: center;
       cursor: pointer;
       font-weight: 600;
       font-size: 0.85rem;
       transition: var(--transition);
   }
   .size-option:hover, .size-option.active {
       border-color: var(--primary);
       background: var(--primary);
       color: #fff;
   }
   .qty-control {
       display: inline-flex;
       align-items: center;
       border: 2px solid var(--border);
       border-radius: 10px;
       overflow: hidden;
   }
   .qty-control button {
       width: 40px; height: 40px;
       border: none;
       background: var(--bg);
       font-size: 1.1rem;
       cursor: pointer;
       transition: var(--transition);
   }
   .qty-control button:hover { background: var(--secondary); }
   .qty-control input {
       width: 50px;
       text-align: center;
       border: none;
       font-weight: 600;
       font-size: 0.95rem;
   }
   .detail-features li {
       padding: 6px 0;
       font-size: 0.9rem;
       color: var(--gray);
   }
   .detail-features li i { color: var(--primary); margin-right: 8px; }
   
   /* ================ CART PAGE ================ */
   .cart-item-img {
       width: 80px; height: 80px;
       object-fit: cover;
       border-radius: 10px;
   }
   .cart-qty-input {
       width: 55px;
       text-align: center;
       border: 2px solid var(--border);
       border-radius: var(--radius-sm);
       padding: 4px;
       font-weight: 600;
   }
   .cart-summary {
       background: var(--bg-white);
       border-radius: var(--radius);
       padding: 24px;
       box-shadow: var(--shadow);
       position: sticky;
       top: 100px;
   }
   .cart-summary h5 { font-weight: 700; }
   
   /* ================ CHECKOUT ================ */
   .checkout-card {
       background: var(--bg-white);
       border-radius: var(--radius);
       padding: 30px;
       box-shadow: var(--shadow);
   }
   
   /* ================ SUCCESS PAGE ================ */
   .success-icon {
       width: 100px; height: 100px;
       border-radius: 50%;
       background: linear-gradient(135deg, var(--secondary), var(--accent));
       display: inline-flex;
       align-items: center;
       justify-content: center;
       margin-bottom: 24px;
       animation: successPop 0.5s ease;
   }
   @keyframes successPop {
       0% { transform: scale(0); }
       60% { transform: scale(1.2); }
       100% { transform: scale(1); }
   }
   .success-icon i { font-size: 3rem; color: var(--primary); }
   
   /* ================ ABOUT & CONTACT ================ */
   .about-hero {
       background: linear-gradient(135deg, var(--secondary), var(--accent), #FFE5EC);
       padding: 80px 0;
       text-align: center;
   }
   .value-card {
       background: var(--bg-white);
       border-radius: var(--radius);
       padding: 30px 20px;
       text-align: center;
       transition: var(--transition);
       border: 1px solid var(--border);
   }
   .value-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
   .value-card .icon {
       width: 60px; height: 60px;
       border-radius: 50%;
       background: var(--border);
       display: flex;
       align-items: center;
       justify-content: center;
       margin: 0 auto 15px;
       font-size: 1.4rem;
       color: var(--primary);
   }
   .contact-card {
       background: var(--bg-white);
       border-radius: var(--radius);
       padding: 28px;
       text-align: center;
       border: 2px solid var(--border);
       transition: var(--transition);
   }
   .contact-card:hover { border-color: var(--primary); transform: translateY(-3px); }
   .contact-card i { font-size: 1.6rem; color: var(--primary); }
   
   /* ================ AUTH PAGES ================ */
   .auth-wrapper {
       min-height: 100vh;
       display: flex;
       align-items: center;
       justify-content: center;
       background: linear-gradient(135deg, var(--bg), #FFE5EC);
       padding: 40px 20px;
   }
   .auth-card {
       background: var(--bg-white);
       border-radius: var(--radius);
       padding: 40px;
       box-shadow: var(--shadow-lg);
       width: 100%;
       max-width: 440px;
   }
   .auth-card .brand { text-align: center; margin-bottom: 30px; }
   .auth-card .brand h3 { color: var(--primary); font-weight: 800; }
   .form-control:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(255,111,145,.15); }
   
   /* ================ TESTIMONIALS ================ */
   .testimonial-card {
       background: var(--bg-white);
       border-radius: var(--radius);
       padding: 28px;
       text-align: center;
       border: 1px solid var(--border);
       transition: var(--transition);
   }
   .testimonial-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
   .testimonial-avatar {
       width: 60px; height: 60px;
       border-radius: 50%;
       object-fit: cover;
       border: 3px solid var(--secondary);
       margin-bottom: 12px;
   }
   .stars { color: var(--warning); font-size: 0.85rem; }
   
   /* ================ CTA BANNER ================ */
   .cta-banner {
       background: linear-gradient(135deg, var(--primary), #FF8FA3, var(--secondary));
       padding: 60px 0;
       color: #fff;
       text-align: center;
       position: relative;
       overflow: hidden;
   }
   .cta-banner::before {
       content: '';
       position: absolute;
       top: -50%; left: -20%;
       width: 60%; height: 200%;
       background: rgba(255,255,255,0.06);
       border-radius: 50%;
   }
   
   /* ================ TOAST ================ */
   #toast-container { position: fixed; top: 80px; right: 20px; z-index: 9999; }
   .sc-toast {
       background: var(--dark);
       color: #fff;
       padding: 14px 24px;
       border-radius: var(--radius-sm);
       margin-bottom: 10px;
       font-size: 0.9rem;
       font-weight: 500;
       opacity: 0;
       transform: translateX(100%);
       transition: var(--transition);
       box-shadow: 0 8px 25px rgba(0,0,0,0.15);
       display: flex;
       align-items: center;
       gap: 8px;
       max-width: 320px;
   }
   .sc-toast.show { opacity: 1; transform: translateX(0); }
   .sc-toast.success { background: var(--success); }
   .sc-toast.error { background: var(--danger); }
   .sc-toast.cart { background: var(--primary); }
   
   /* ================ BREADCRUMB ================ */
   .sc-breadcrumb {
       background: var(--bg-white);
       padding: 14px 0;
       border-bottom: 1px solid var(--border);
   }
   .sc-breadcrumb .breadcrumb { margin: 0; font-size: 0.85rem; }
   .sc-breadcrumb .breadcrumb-item a { color: var(--gray); }
   .sc-breadcrumb .breadcrumb-item.active { color: var(--primary); font-weight: 500; }
   
   /* ================ TRACK ORDER ================ */
   .order-timeline { position: relative; padding-left: 30px; }
   .order-timeline::before {
       content: '';
       position: absolute;
       left: 10px; top: 0; bottom: 0;
       width: 3px;
       background: var(--border);
   }
   .timeline-step {
       position: relative;
       padding-bottom: 30px;
   }
   .timeline-step::before {
       content: '';
       position: absolute;
       left: -24px; top: 4px;
       width: 14px; height: 14px;
       border-radius: 50%;
       background: var(--border);
       border: 3px solid var(--bg);
   }
   .timeline-step.completed::before { background: var(--success); }
   .timeline-step.current::before { background: var(--primary); box-shadow: 0 0 0 4px rgba(255,111,145,.3); }
   
   /* ================ FOOTER ================ */
   .sc-footer {
       background: var(--dark);
       color: #aaa;
       padding: 60px 0 20px;
   }
   .footer-brand {
       color: #fff !important;
       font-weight: 800;
       font-size: 1.4rem;
       margin-bottom: 15px;
   }
   .footer-brand i { color: var(--primary); }
   .sc-footer h6 { color: #fff; font-weight: 600; margin-bottom: 16px; text-transform: uppercase; font-size: 0.85rem; letter-spacing: 1px; }
   .footer-links { list-style: none; padding: 0; }
   .footer-links li { margin-bottom: 8px; }
   .footer-links li a { color: #aaa; font-size: 0.88rem; transition: var(--transition); }
   .footer-links li a:hover { color: var(--primary); padding-left: 5px; }
   .social-links a {
       display: inline-flex;
       align-items: center;
       justify-content: center;
       width: 38px; height: 38px;
       border-radius: 50%;
       background: rgba(255,255,255,0.08);
       color: #ccc;
       margin-right: 8px;
       transition: var(--transition);
   }
   .social-links a:hover { background: var(--primary); color: #fff; transform: translateY(-3px); }
   .newsletter-form .form-control {
       border-radius: 25px 0 0 25px;
       border: none;
       background: rgba(255,255,255,0.08);
       color: #fff;
       padding: 10px 16px;
       font-size: 0.85rem;
   }
   .newsletter-form .form-control::placeholder { color: #888; }
   .newsletter-form .btn { border-radius: 0 25px 25px 0; padding: 10px 20px; font-size: 0.85rem; }
   .sc-footer hr { border-color: rgba(255,255,255,0.08); }
   .payment-icons { height: 24px; opacity: 0.6; }
   
   /* ================ EMPTY STATE ================ */
   .empty-state {
       text-align: center;
       padding: 60px 20px;
   }
   .empty-state i { font-size: 4rem; color: var(--secondary); margin-bottom: 16px; }
   
   /* ================ ADMIN ================ */
   .admin-sidebar {
       width: 260px;
       background: var(--dark);
       min-height: 100vh;
       position: fixed;
       left: 0; top: 0;
       z-index: 1050;
       transition: var(--transition);
       overflow-y: auto;
   }
   .admin-sidebar .brand {
       padding: 20px;
       text-align: center;
       border-bottom: 1px solid rgba(255,255,255,.08);
   }
   .admin-sidebar .brand h5 { color: #fff; font-weight: 800; margin: 0; }
   .admin-sidebar .brand h5 i { color: var(--primary); }
   .admin-sidebar .nav-menu { padding: 16px 0; }
   .admin-sidebar .nav-item {
       display: block;
       padding: 10px 24px;
       color: #bbb;
       font-size: 0.9rem;
       font-weight: 500;
       transition: var(--transition);
       border-left: 3px solid transparent;
   }
   .admin-sidebar .nav-item:hover,
   .admin-sidebar .nav-item.active {
       color: #fff;
       background: rgba(255,255,255,.05);
       border-left-color: var(--primary);
   }
   .admin-sidebar .nav-item i { width: 24px; margin-right: 10px; }
   .admin-main {
       margin-left: 260px;
       padding: 24px;
       min-height: 100vh;
       background: var(--bg);
   }
   .admin-topbar {
       background: var(--bg-white);
       padding: 16px 24px;
       border-radius: var(--radius);
       margin-bottom: 24px;
       box-shadow: 0 2px 10px rgba(0,0,0,0.04);
       display: flex;
       justify-content: space-between;
       align-items: center;
   }
   .stat-card {
       background: var(--bg-white);
       border-radius: var(--radius);
       padding: 24px;
       box-shadow: 0 2px 12px rgba(0,0,0,0.04);
       transition: var(--transition);
   }
   .stat-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
   .stat-card .icon-box {
       width: 54px; height: 54px;
       border-radius: 12px;
       display: flex;
       align-items: center;
       justify-content: center;
       font-size: 1.4rem;
       color: #fff;
   }
   .admin-card {
       background: var(--bg-white);
       border-radius: var(--radius);
       box-shadow: 0 2px 12px rgba(0,0,0,0.04);
       overflow: hidden;
   }
   .admin-card .card-header {
       background: transparent;
       border-bottom: 1px solid var(--border);
       padding: 16px 20px;
       font-weight: 600;
   }
   
   /* ================ RESPONSIVE ================ */
   @media (max-width: 991px) {
       .mega-menu { width: 100%; }
       .hero-content h1 { font-size: 2.4rem; }
       .search-form { margin: 10px 0; }
       .admin-sidebar { transform: translateX(-100%); }
       .admin-sidebar.show { transform: translateX(0); }
       .admin-main { margin-left: 0; }
   }
   @media (max-width: 575px) {
       .hero-content h1 { font-size: 2rem; }
       .product-img-wrap img { height: 250px; }
       .product-detail-img img { height: 350px; }
   }
   
   /* ================ ANIMATIONS ================ */
   .fade-in { animation: fadeIn 0.5s ease; }
   @keyframes fadeIn {
       from { opacity: 0; transform: translateY(20px); }
       to { opacity: 1; transform: translateY(0); }
   }
   .slide-up {
       opacity: 0;
       transform: translateY(30px);
       transition: all 0.6s ease;
   }
   .slide-up.visible {
       opacity: 1;
       transform: translateY(0);
   }
   /* =============================================
   SoftCurve — Premium Lingerie CSS
   ============================================= */

:root {
    --primary:   #FF6F91;
    --secondary: #FFC2D1;
    --light:     #FFF5F7;
    --dark:      #2C2C2C;
    --accent:    #FFB6C1;
}

* { box-sizing: border-box; }

body {
    font-family: 'Poppins', sans-serif;
    background: var(--light);
    color: var(--dark);
    overflow-x: hidden;
}

/* ---------- Topbar ---------- */
.topbar {
    background: var(--dark);
    color: #fff;
    padding: 6px 0;
    font-size: .78rem;
}

/* ---------- Navbar ---------- */
.sc-navbar {
    background: #fff;
    box-shadow: 0 2px 20px rgba(0,0,0,.06);
    padding: .9rem 0;
    z-index: 1030;
}
.sc-navbar .navbar-brand {
    font-weight: 700;
    font-size: 1.6rem;
    color: var(--primary) !important;
    letter-spacing: -.5px;
}
.sc-navbar .nav-link {
    font-weight: 500;
    color: var(--dark) !important;
    padding: .5rem 1rem !important;
    transition: .3s;
    position: relative;
}
.sc-navbar .nav-link:hover,
.sc-navbar .nav-link.active {
    color: var(--primary) !important;
}
.sc-navbar .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0; left: 50%;
    width: 0; height: 2px;
    background: var(--primary);
    transition: .3s;
    transform: translateX(-50%);
}
.sc-navbar .nav-link:hover::after {
    width: 60%;
}

/* ---------- Hero ---------- */
.hero-section {
    background: linear-gradient(135deg, var(--primary) 0%, #E8507A 40%, var(--secondary) 100%);
    min-height: 80vh;
    position: relative;
    overflow: hidden;
}
.hero-section::before {
    content: '';
    position: absolute;
    top: -50%; right: -20%;
    width: 60%; height: 200%;
    background: rgba(255,255,255,.05);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}
.hero-section::after {
    content: '';
    position: absolute;
    bottom: -30%; left: -10%;
    width: 40%; height: 120%;
    background: rgba(255,255,255,.03);
    border-radius: 50%;
    animation: float 12s ease-in-out infinite reverse;
}
.min-vh-75 { min-height: 75vh; }
@keyframes float {
    0%,100% { transform: translate(0,0); }
    50% { transform: translate(20px, -30px); }
}
.hero-image-wrapper {
    position: relative;
    z-index: 1;
}
.hero-image-wrapper::before {
    content: '';
    position: absolute;
    top: -10px; left: -10px; right: -10px; bottom: -10px;
    background: linear-gradient(135deg, rgba(255,255,255,.15), transparent);
    border-radius: 20px;
    z-index: -1;
}

/* ---------- Category Cards ---------- */
.category-card {
    position: relative;
    cursor: pointer;
    transition: transform .4s;
}
.category-card:hover { transform: scale(1.03); }
.category-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(255,111,145,.85), rgba(255,194,209,.7));
    transition: .4s;
}
.category-card:hover .category-overlay {
    background: linear-gradient(135deg, rgba(255,111,145,.95), rgba(255,194,209,.85));
}

/* ---------- Section Titles ---------- */
.section-title {
    text-align: center;
    margin-bottom: 45px;
}
.section-title h2 {
    font-weight: 700;
    font-size: 2rem;
    display: inline-block;
    position: relative;
}
.section-title h2::after {
    content: '';
    display: block;
    width: 50px; height: 3px;
    background: var(--primary);
    margin: 10px auto 0;
    border-radius: 3px;
}

/* ---------- Product Card ---------- */
.product-card {
    border: none;
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    transition: transform .35s, box-shadow .35s;
}
.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(255,111,145,.15);
}
.product-img-wrap {
    position: relative;
    overflow: hidden;
    background: #fdf0f4;
}
.product-img-wrap img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    transition: transform .5s;
}
.product-card:hover .product-img-wrap img {
    transform: scale(1.08);
}
.product-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: linear-gradient(transparent, rgba(255,111,145,.95));
    padding: 20px 10px 14px;
    text-align: center;
    transform: translateY(100%);
    transition: transform .4s;
}
.product-card:hover .product-overlay {
    transform: translateY(0);
}
.btn-add-cart {
    background: #fff;
    color: var(--primary);
    border: none;
    padding: 10px 24px;
    border-radius: 25px;
    font-weight: 600;
    font-size: .88rem;
    cursor: pointer;
    transition: .3s;
    box-shadow: 0 4px 15px rgba(0,0,0,.1);
}
.btn-add-cart:hover {
    background: var(--light);
    transform: scale(1.05);
}
.category-badge {
    display: inline-block;
    background: var(--secondary);
    color: var(--primary);
    font-size: .68rem;
    padding: 3px 12px;
    border-radius: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .3px;
}
.price {
    color: var(--primary);
    font-weight: 700;
    font-size: 1.15rem;
}

/* ---------- Buttons ---------- */
.btn-sc {
    background: linear-gradient(135deg, var(--primary), #E8507A);
    color: #fff;
    border: none;
    border-radius: 25px;
    padding: 10px 28px;
    font-weight: 600;
    transition: .3s;
    box-shadow: 0 4px 15px rgba(255,111,145,.3);
}
.btn-sc:hover {
    background: linear-gradient(135deg, #E8507A, var(--primary));
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255,111,145,.4);
}

/* ---------- Inputs ---------- */
.sc-input {
    border: 2px solid #eee;
    border-radius: 12px !important;
    padding: 10px 16px;
    transition: .3s;
}
.sc-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(255,111,145,.1);
}

/* ---------- Filter ---------- */
.btn-filter {
    border: 2px solid var(--secondary);
    color: var(--primary);
    border-radius: 25px;
    padding: 6px 20px;
    font-size: .85rem;
    font-weight: 500;
    margin: 4px;
    transition: .3s;
}
.btn-filter:hover, .btn-filter.active {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

/* ---------- Cart ---------- */
.cart-img {
    width: 70px; height: 70px;
    object-fit: cover;
    border-radius: 12px;
}

/* ---------- Toast ---------- */
.cart-toast {
    position: fixed; top: 80px; right: 20px;
    background: linear-gradient(135deg, var(--primary), #E8507A);
    color: #fff;
    padding: 16px 30px;
    border-radius: 14px;
    font-weight: 500;
    font-size: .92rem;
    z-index: 9999;
    opacity: 0;
    transform: translateX(100%);
    transition: .4s;
    box-shadow: 0 8px 25px rgba(255,111,145,.4);
}
.cart-toast.show {
    opacity: 1;
    transform: translateX(0);
}

/* ---------- Footer ---------- */
.sc-footer {
    background: #1a1a1a;
    color: #aaa;
    padding: 60px 0 25px;
}
.sc-footer h5, .sc-footer h6 { color: #fff; }
.footer-links li {
    margin-bottom: 6px;
}
.footer-links a, .footer-links {
    color: #aaa;
    text-decoration: none;
    transition: .2s;
    font-size: .9rem;
}
.footer-links a:hover { color: var(--primary); padding-left: 3px; }
.footer-social {
    width: 38px; height: 38px;
    border-radius: 50%;
    background: #333;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: .3s;
}
.footer-social:hover {
    background: var(--primary);
    color: #fff;
    transform: scale(1.1);
}

/* ---------- Admin ---------- */
.admin-sidebar {
    background: #1a1a1a;
    min-height: 100vh;
    width: 260px;
    position: fixed;
    left: 0; top: 0;
    z-index: 1040;
    transition: .3s;
}
.admin-sidebar .brand {
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid #333;
}
.admin-sidebar .brand a {
    color: var(--primary);
    font-weight: 700;
    font-size: 1.3rem;
    text-decoration: none;
}
.admin-sidebar .nav-link {
    color: #aaa !important;
    padding: 12px 20px;
    font-size: .9rem;
    border-left: 3px solid transparent;
    transition: .3s;
}
.admin-sidebar .nav-link:hover,
.admin-sidebar .nav-link.active {
    color: #fff !important;
    background: rgba(255,111,145,.1);
    border-left-color: var(--primary);
}
.admin-sidebar .nav-link i { width: 24px; text-align: center; margin-right: 8px; }
.admin-main {
    margin-left: 260px;
    padding: 0;
    min-height: 100vh;
    background: #f5f5f8;
}
.admin-topbar {
    background: #fff;
    padding: 15px 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.stat-card {
    border: none;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 4px 15px rgba(0,0,0,.05);
    transition: .3s;
}
.stat-card:hover { transform: translateY(-3px); }
.stat-card .icon-box {
    width: 55px; height: 55px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: #fff;
}

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
    .hero-section h1 { font-size: 2.2rem; }
    .product-img-wrap img { height: 220px; }
    .admin-sidebar { width: 200px; }
    .admin-main { margin-left: 200px; }
}
@media (max-width: 576px) {
    .admin-sidebar { display: none; }
    .admin-main { margin-left: 0; }
}

/* ---------- Enhanced Product Card ---------- */
.product-title {
    transition: color .3s;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.product-title:hover {
    color: var(--primary) !important;
}

.product-card .card-body {
    padding-top: 12px;
}

/* Image Error Fallback Styling */
.product-img-wrap img {
    background: #fdf0f4;
}

/* Smooth Badge Animation */
.product-card .badge {
    transition: transform .3s;
    z-index: 2;
}
.product-card:hover .badge {
    transform: scale(1.05);
}

/* Quick Add Button Animation */
.product-card .btn-sm {
    transition: all .3s;
}
.product-card .btn-sm:hover {
    background: var(--primary) !important;
    color: #fff !important;
    border-color: var(--primary) !important;
    transform: scale(1.1);
}