:root {
    --primary-gradient: linear-gradient(135deg, #f107a3, #8e2de2);
    --purple: #8e2de2;
    --pink: #f107a3;
    --dark: #2d3436;
    --gray: #636e72;
    --light-bg: #fdfdfd;
    --border-color: #f0f0f0;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--dark);
    background-color: #fff;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
.font-poppins {
    font-family: 'Poppins', sans-serif;
}

/* Header */
.navbar {
    padding: 15px 0;
    box-shadow: 0 2px 15px rgba(45, 30, 30, 0.05);
    background: #fff;
}

.navbar-brand {
    font-size: 28px;
    font-weight: 700;
    background: -webkit-linear-gradient(45deg, var(--pink), var(--purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: flex;
    align-items: center;
    gap: 10px;
}

.navbar-brand i {
    font-size: 32px;
}

.nav-link {
    font-weight: 500;
    color: var(--dark) !important;
    margin: 0 10px;
    position: relative;
    transition: 0.3s;
}

.nav-link:hover,
.nav-link.active {
    color: var(--pink) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background: var(--pink);
    transition: 0.3s;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.header-icons {
    display: flex;
    gap: 20px;
    align-items: center;
}

.header-icons a {
    color: var(--dark);
    font-size: 20px;
    position: relative;
    transition: 0.3s;
}

.header-icons a:hover {
    color: var(--pink);
}

.cart-badge {
    position: absolute;
    top: -8px;
    right: -10px;
    background: var(--pink);
    color: #fff;
    font-size: 10px;
    padding: 3px 6px;
    border-radius: 50%;
    font-weight: bold;
}

/* Buttons */
.btn-primary-custom {
    background: linear-gradient(45deg, var(--purple), var(--pink));
    color: #fff;
    border: none;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
    transition: 0.3s;
    box-shadow: 0 4px 15px rgba(241, 7, 163, 0.3);
}

.btn-primary-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(241, 7, 163, 0.4);
    color: #fff;
}

/* Hero Section */
.hero-section {
    padding: 100px 0;
    background: linear-gradient(rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.85)), url('../logo/supiskha_banner.png');
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    padding-right: 50px;
}

.hero-subtitle {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(241, 7, 163, 0.1);
    color: var(--pink);
    border-radius: 20px;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 55px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-title span {
    font-family: 'Great Vibes', cursive;
    /* or just a script-like font */
    color: var(--pink);
    font-style: italic;
    font-weight: 400;
}

.hero-desc {
    color: var(--gray);
    font-size: 18px;
    margin-bottom: 30px;
}

/* Diagonal Categories (Hero Right) - EXACT MATCH */
.hero-categories-container {
    display: flex;
    height: 550px;
    gap: 15px;
    overflow: visible;
}

.hero-cat-item {
    flex: 1;
    position: relative;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    overflow: hidden;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: 30px;
    transform: skewX(-5deg);
}

.hero-cat-item:hover {
    flex: 2;
    transform: skewX(-5deg) scale(1.02);
}

.hero-cat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    z-index: 1;
}

.hero-cat-item img {
    position: absolute;
    top: 0;
    left: -20%;
    width: 140%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    transform: skewX(5deg);
    /* Counter skew */
    transition: 0.5s;
}

.hero-cat-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    transform: skewX(5deg);
    /* Counter skew */
}

.hero-cat-num {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 5px;
}

.hero-cat-title {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 5px;
}

.hero-cat-sub {
    font-size: 10px;
    opacity: 0.8;
}

/* Feature Row Icons */
.feature-icon-row {
    padding: 20px 0;
    background: #fff;
}

.feature-icon-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
}

.feature-icon-item i {
    color: var(--purple);
    font-size: 20px;
}

/* Our Categories Grid (2nd SS) */
.category-card-premium {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    height: 250px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    padding: 40px;
    color: #fff;
    transition: 0.3s;
}

.category-card-premium:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.category-card-premium .cat-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.category-card-premium .content {
    position: relative;
    z-index: 2;
}

.category-card-premium h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 5px;
}

.category-card-premium p {
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 25px;
}

.category-card-premium .btn-shop {
    background: #fff;
    color: #333;
    padding: 8px 25px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
}

/* Features Section */
.features-section {
    padding: 30px 0;
    border-bottom: 1px solid #eee;
}

.feature-box {
    text-align: center;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.feature-icon {
    font-size: 30px;
    color: var(--purple);
}

.feature-text h5 {
    font-size: 14px;
    font-weight: 700;
    margin: 0;
}

.feature-text p {
    font-size: 12px;
    color: var(--gray);
    margin: 0;
}

/* Main Categories Grid */
.categories-grid {
    padding: 60px 0;
}

.cat-card {
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    height: 250px;
    margin-bottom: 30px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
}

.cat-card img {
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    height: 120%;
    z-index: 0;
}

.cat-card-content {
    position: relative;
    z-index: 1;
    padding: 30px;
    color: #fff;
    max-width: 60%;
}

.cat-card-content h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 5px;
}

.cat-card-content p {
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 20px;
}

.cat-card.craft {
    background: linear-gradient(135deg, #8B4513, #D2691E);
}

.cat-card.beauty {
    background: linear-gradient(135deg, #FF1493, #FF69B4);
}

.cat-card.tech {
    background: linear-gradient(135deg, #00008B, #4169E1);
}

.cat-card.affiliate {
    background: linear-gradient(135deg, #006400, #32CD32);
}

.cat-card.food {
    background: linear-gradient(135deg, #FF4500, #FFA500);
}

.btn-white {
    background: #fff;
    color: var(--dark);
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 600;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.btn-white:hover {
    background: var(--dark);
    color: #fff;
}

/* Footer - EXACT MATCH (3rd SS) */
.footer {
    background: linear-gradient(to right, #240b36, #c31432);
    color: #fff;
    padding: 80px 0 20px;
}

.footer-logo {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    display: block;
    color: #fff;
    text-decoration: none;
}

.footer p {
    font-size: 14px;
    opacity: 0.8;
    line-height: 1.6;
}

.footer-social a {
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    width: 35px;
    height: 35px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 10px;
    font-size: 14px;
    transition: 0.3s;
    text-decoration: none;
}

.footer-social a:hover {
    background: #fff;
    color: #c31432;
}

.footer h6 {
    font-weight: 700;
    margin-bottom: 25px;
    font-family: 'Poppins', sans-serif;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #fff;
    padding-left: 5px;
}

.newsletter-box {
    background: #fff;
    padding: 5px;
    border-radius: 10px;
    display: flex;
}

.newsletter-box input {
    border: none;
    padding: 10px 15px;
    flex: 1;
    border-radius: 10px 0 0 10px;
    outline: none;
    color: #333;
}

.newsletter-box .btn {
    background: #c31432;
    color: #fff;
    border: none;
    padding: 10px 25px;
    border-radius: 8px;
    font-weight: 600;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    margin-top: 50px;
    font-size: 13px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    margin-left: 20px;
}

/* Return Policy Styling (2nd SS) */
.return-card {
    text-align: center;
    padding: 30px;
    border-right: 1px solid #eee;
    height: 100%;
}

.return-card:last-child {
    border-right: none;
}

.return-icon-circle {
    width: 70px;
    height: 70px;
    border: 2px solid var(--purple);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--purple);
    font-size: 30px;
}

.return-card h5 {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 15px;
}

.return-card p {
    font-size: 14px;
    color: #666;
}

.return-note {
    background: rgba(195, 20, 50, 0.1);
    padding: 20px;
    border-radius: 15px;
    color: #c31432;
    font-weight: 500;
    border-left: 5px solid #c31432;
}

/* Shop / Product Cards */
.product-card {
    border: 1px solid #eee;
    border-radius: 15px;
    padding: 15px;
    transition: 0.3s;
    background: #fff;
    position: relative;
}

.product-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transform: translateY(-5px);
}

.product-img {
    height: 200px;
    object-fit: contain;
    width: 100%;
    margin-bottom: 15px;
}

.product-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
}

.product-price {
    font-size: 18px;
    font-weight: 700;
    color: var(--pink);
}

.btn-add-cart {
    width: 100%;
    border: 1px solid var(--purple);
    color: var(--purple);
    background: transparent;
    border-radius: 20px;
    padding: 8px;
    font-weight: 600;
    margin-top: 10px;
    transition: 0.3s;
}

.btn-add-cart:hover {
    background: var(--purple);
    color: #fff;
}

.sidebar-filters h5 {
    font-weight: 600;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.filter-list {
    list-style: none;
    padding: 0;
}

.filter-list li {
    margin-bottom: 10px;
}

.filter-list a {
    color: var(--gray);
    text-decoration: none;
}

.filter-list a:hover {
    color: var(--pink);
}

/* Page Headers */
.page-header {
    padding: 40px 0;
    background: var(--light-bg);
    text-align: center;
    margin-bottom: 40px;
}

.page-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--purple);
}

/* Offcanvas Cart Drawer (Right Popup) */
.offcanvas {
    width: 400px !important;
    background: #fdfdfd;
}

.offcanvas-header {
    background: #fff;
    border-bottom: 1px solid #eee;
}

.offcanvas-body {
    padding: 25px;
}

.cart-item-card {
    background: #fff;
    border-radius: 15px;
    padding: 15px;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    border: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
}

.qty-btn {
    width: 25px;
    height: 25px;
    border-radius: 5px;
    border: none;
    background: var(--purple);
    color: #fff;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.qty-btn:hover {
    background: var(--pink);
}

.qty-input {
    width: 35px;
    border: none;
    text-align: center;
    font-weight: 600;
    font-size: 14px;
    background: transparent;
}

.btn-checkout-sticky {
    background: #FC2884;
    color: #fff;
    width: 100%;
    padding: 15px;
    border-radius: 12px;
    font-weight: 700;
    text-transform: uppercase;
    transition: 0.3s;
    border: none;
    text-decoration: none;
    display: block;
    text-align: center;
}
.btn-checkout-sticky:hover {
    background: #e01d72;
    color: #fff;
    transform: translateY(-2px);
}

/* Premium Product Card & Shop Styles */
:root {
    --purple-accent: #7c3aed;
    --soft-bg: #f8fafc;
    --card-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.05);
    --hover-shadow: 0 20px 40px -5px rgba(0, 0, 0, 0.1);
}

.premium-card {
    background: #fff;
    border-radius: 16px;
    border: 1px solid #f1f5f9;
    padding: 15px;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: flex;
    flex-direction: column;
}

.premium-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--hover-shadow);
    border-color: transparent;
}

.wishlist-overlay {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 10;
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
    color: #94a3b8;
    transition: 0.3s;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.wishlist-overlay:hover,
.wishlist-overlay.active {
    background: #fff;
    color: #ef4444;
    transform: scale(1.1);
}

.img-area {
    height: 200px;
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    padding: 15px;
    overflow: hidden;
}

.img-area img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    mix-blend-mode: multiply;
    transition: 0.5s;
}

.premium-card:hover .img-area img {
    transform: scale(1.08);
}

.card-info {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.cat-tag {
    font-size: 10px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    color: #94a3b8;
    margin-bottom: 5px;
}

.prod-title {
    font-weight: 600;
    font-size: 0.95rem;
    line-height: 1.4;
    margin-bottom: 10px;
    height: 40px;
    overflow: hidden;
}

.prod-title a {
    color: #1e293b;
    text-decoration: none;
    transition: 0.3s;
}

.prod-title a:hover {
    color: var(--purple-accent);
}

.prod-price {
    font-size: 1.1rem;
    margin-bottom: 15px;
    margin-top: auto;
}

.text-purple {
    color: var(--purple-accent);
}

.btn-add-premium {
    width: 100%;
    padding: 10px;
    background: transparent;
    border: 2px solid var(--purple-accent);
    color: var(--purple-accent);
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    transition: 0.3s;
}

.btn-add-premium:hover {
    background: var(--purple-accent);
    color: #fff;
    box-shadow: 0 10px 15px -3px rgba(124, 58, 237, 0.3);
}

/* Swiper Slider Customization */
.featured-swiper {
    padding: 20px 10px 50px !important;
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--purple-accent) !important;
    background: #fff;
    width: 45px !important;
    height: 45px !important;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

.swiper-pagination-bullet-active {
    background: var(--purple-accent) !important;
}

/* Out of Stock Styling */
.premium-card.is-out-of-stock {
    opacity: 0.8;
}

.premium-card.is-out-of-stock .img-area {
    position: relative;
    overflow: hidden;
}

.premium-card.is-out-of-stock .img-area img {
    filter: blur(4px);
}

.out-of-stock-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    border-radius: 12px;
}

.out-of-stock-badge {
    background: #fff;
    color: #1e293b;
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    /* transform: rotate(-5deg); */
}

.premium-card.is-out-of-stock .wishlist-overlay,
.premium-card.is-out-of-stock .btn-add-premium {
    display: none !important;
}

/* Detail Page Out of Stock */
.product-main-img.is-out-of-stock {
    position: relative;
}

.product-main-img.is-out-of-stock img {
    filter: blur(8px);
}

.product-main-img.is-out-of-stock::after {
    content: 'OUT OF STOCK';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    color: #1e293b;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

/* Authentication Pages Styles */
.auth-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #fdf2f8 0%, #f5f3ff 100%);
    padding: 40px 20px;
}

.auth-card {
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    max-width: 1000px;
    width: 100%;
    display: flex;
}

.auth-side-img {
    flex: 1;
    background: linear-gradient(135deg, var(--purple-accent), var(--pink));
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    color: #fff;
    text-align: center;
}

.auth-form-area {
    flex: 1.2;
    padding: 50px;
    background: #fff;
}

.auth-title {
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 10px;
}

.auth-subtitle {
    color: #64748b;
    margin-bottom: 35px;
    font-size: 0.95rem;
}

.form-floating>.form-control:focus,
.form-floating>.form-control:not(:placeholder-shown) {
    padding-top: 1.625rem;
    padding-bottom: 0.625rem;
}

.auth-input {
    border: none !important;
    background: transparent !important;
    padding: 12px 0 !important;
    height: 45px !important;
    transition: 0.3s;
    box-shadow: none !important;
}

.auth-form-area .form-control {
    border-radius: 12px !important;
    padding: 5px 20px !important;
    background: #fff !important;
}
/*.auth-form-area .form-control {*/
    /*border: 1px solid #e2e8f0 !important;*/
/*    border-radius: 12px !important;*/
/*    padding: 5px 20px !important;*/
/*    background: #fff !important;*/
/*}*/

.auth-form-area .form-control:focus-within {
    border-color: var(--purple-accent) !important;
    box-shadow: 0 0 0 4px rgba(124, 58, 237, 0.1) !important;
}

.password-toggle {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #94a3b8;
    z-index: 10;
}

.btn-auth {
    width: 100%;
    padding: 14px;
    border-radius: 12px;
    border: none;
    background: linear-gradient(to right, var(--purple-accent), var(--pink));
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    transition: 0.4s;
    margin-top: 20px;
}

.btn-auth:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(124, 58, 237, 0.3);
    opacity: 0.9;
}

.social-login {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 25px;
}

.social-btn {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    transition: 0.3s;
    text-decoration: none;
}

.social-btn:hover {
    background: #f8fafc;
    border-color: var(--purple-accent);
    color: var(--purple-accent);
}

/* OTP Input Styles */
.otp-container {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin: 30px 0;
}

.otp-input {
    width: 50px;
    height: 60px;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 800;
    border-radius: 12px;
    border: 2px solid #e2e8f0;
    transition: 0.3s;
}

.otp-input:focus {
    border-color: var(--purple-accent);
    box-shadow: 0 0 0 4px rgba(124, 58, 237, 0.1);
    outline: none;
}

@media (max-width: 992px) {
    .auth-card {
        flex-direction: column;
        max-width: 500px;
    }

    .auth-side-img {
        display: none;
    }

    .auth-form-area {
        padding: 40px 25px;
    }
}

/* User Dropdown */
.user-dropdown .dropdown-toggle {
    color: var(--dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
}
.user-dropdown .dropdown-toggle::after {
    display: none;
}
.user-dropdown .dropdown-menu {
    min-width: 200px;
    margin-top: 15px !important;
    animation: fadeInScale 0.3s ease;
}
@keyframes fadeInScale {
    from { opacity: 0; transform: scale(0.95) translateY(-10px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}
.user-dropdown .dropdown-item:hover {
    background-color: #f3e8ff;
    color: var(--purple);
}
.user-dropdown .dropdown-item i {
    width: 20px;
    color: var(--gray);
}
.user-dropdown .dropdown-item:hover i {
    color: var(--purple);
}

/* Account Dashboard Layout */
.dashboard-wrapper {
    background-color: #f8fafc;
    min-height: calc(100vh - 100px);
    padding: 40px 0;
}
.account-sidebar {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.sidebar-user-info {
    padding: 30px 20px;
    text-align: center;
    border-bottom: 1px solid #f1f5f9;
}
.sidebar-user-info h6 {
    font-weight: 700;
    color: var(--dark);
    margin: 0;
}
.sidebar-menu {
    padding: 10px 0;
}
.sidebar-link {
    display: flex;
    align-items: center;
    padding: 15px 25px;
    color: #64748b;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
    border-left: 4px solid transparent;
}
.sidebar-link i {
    width: 25px;
    font-size: 1.1rem;
    margin-right: 15px;
}
.sidebar-link:hover {
    background: #f1f5f9;
    color: var(--purple);
}
.sidebar-link.active {
    background: #f3e8ff;
    color: var(--purple);
    border-left-color: var(--purple);
}
.sidebar-link.text-danger:hover {
    background: #fee2e2;
}

.dashboard-card {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    height: 100%;
}
.dashboard-title {
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
/* Address \u0026 Checkout Styles */
.address-card { border: 2px solid #f1f5f9; border-radius: 15px; padding: 20px; cursor: pointer; transition: 0.3s; position: relative; background: #fff; height: 100%; }
.address-card:hover { border-color: var(--purple); transform: translateY(-3px); }
.address-card.selected { border-color: var(--purple); background-color: #f5f3ff; }
.address-card .type-badge { position: absolute; top: 20px; right: 20px; background: #f1f5f9; padding: 2px 10px; border-radius: 50px; font-size: 0.7rem; font-weight: 700; text-transform: uppercase; color: #64748b; }
.address-card.selected .type-badge { background: var(--purple); color: #fff; }
.address-card .select-indicator { position: absolute; bottom: 20px; right: 20px; width: 24px; height: 24px; border: 2px solid #e2e8f0; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.address-card.selected .select-indicator { background: var(--purple); border-color: var(--purple); color: #fff; }
.order-summary-card { position: sticky; top: 100px; background: #fff; border-radius: 20px; padding: 25px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
.summary-item { display: flex; justify-content: space-between; margin-bottom: 15px; color: #64748b; }
.summary-total { border-top: 1px dashed #e2e8f0; padding-top: 15px; margin-top: 15px; display: flex; justify-content: space-between; font-weight: 800; font-size: 1.2rem; }
.form-control-premium { background: #f8fafc; border: 2px solid #f1f5f9; border-radius: 12px; padding: 12px 15px; font-weight: 500; transition: 0.3s; }
.form-control-premium:focus { background: #fff; border-color: var(--purple); box-shadow: 0 0 0 4px rgba(124, 58, 237, 0.1); }
.btn-premium-wide { padding: 15px; border-radius: 50px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }

/* Refined Cart Summary UI */
.cart-summary-container {
    padding: 40px 0;
    background-color: #f9fafb;
}
.summary-card {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    margin-bottom: 25px;
}
.summary-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}
.summary-header h5 {
    font-weight: 700;
    margin: 0;
    display: flex;
    align-items: center;
}
.summary-header h5 i {
    color: var(--purple);
    margin-right: 12px;
}
.continue-shopping {
    color: var(--dark);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
}
.continue-shopping:hover {
    color: var(--purple);
}

.cart-item-row {
    display: flex;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid #f3f4f6;
}
.cart-item-row:last-child {
    border-bottom: none;
}
.cart-item-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    margin-right: 20px;
}
.cart-item-info {
    flex-grow: 1;
}
.cart-item-info h6 {
    font-weight: 700;
    margin-bottom: 5px;
}
.cart-item-info p {
    color: var(--gray);
    margin: 0;
    font-size: 0.9rem;
}

/* Modern Quantity Selector */
.qty-selector-modern {
    display: flex;
    align-items: center;
    background: #f9fafb;
    border-radius: 50px;
    padding: 4px;
    width: fit-content;
    border: 1px solid #e5e7eb;
}
.qty-btn-modern {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: none;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
    transition: 0.2s;
    font-size: 0.8rem;
    cursor: pointer;
}
.qty-btn-modern:hover {
    background: var(--purple);
    color: #fff;
}
.qty-input-modern {
    width: 40px;
    border: none;
    background: transparent;
    text-align: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.cart-item-total {
    text-align: right;
    min-width: 100px;
}
.cart-item-total h6 {
    font-weight: 800;
    margin: 0;
}

.address-preview-card {
    border: 1.5px solid var(--purple);
    background-color: #fffafc;
    border-radius: 12px;
    padding: 20px;
}
.address-preview-card h6 {
    font-weight: 700;
    margin-bottom: 8px;
}

.order-sidebar-card {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    position: sticky;
    top: 100px;
}
.sidebar-total-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-weight: 500;
    color: #4b5563;
}
.sidebar-grand-total {
    border-top: 1px solid #f3f4f6;
    margin-top: 15px;
    padding-top: 15px;
    display: flex;
    justify-content: space-between;
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--dark);
}
.btn-payment {
    background: #FC2884;
    color: #fff;
    width: 100%;
    padding: 14px;
    border-radius: 10px;
    font-weight: 700;
    border: none;
    margin-bottom: 12px;
    transition: 0.3s;
}
.btn-payment:hover {
    background: #e01d72;
    color: #fff;
    transform: translateY(-2px);
}

.btn-theme-pink {
    background: #FC2884;
    color: #fff !important;
    border: none;
    transition: 0.3s;
}
.btn-theme-pink:hover {
    background: #e01d72;
    transform: translateY(-2px);
}

.btn-outline-theme-pink {
    background: transparent;
    color: #FC2884 !important;
    border: 1.5px solid #FC2884;
    transition: 0.3s;
}
.btn-outline-theme-pink:hover {
    background: #FC2884;
    color: #fff !important;
}
.btn-continue-light {
    background: #f9fafb;
    color: var(--gray);
    width: 100%;
    padding: 12px;
    border-radius: 10px;
    font-weight: 600;
    border: none;
    text-decoration: none;
    display: block;
    text-align: center;
    transition: 0.3s;
}
.btn-continue-light:hover {
    background: #f3f4f6;
    color: var(--dark);
}

/* Orders Page Styles */
.order-list-card {
    background: #fff;
    border: 1px solid #f1f5f9;
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 20px;
    transition: 0.3s;
    cursor: pointer;
}
.order-list-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border-color: var(--purple);
}
.order-status-icon {
    width: 40px;
    height: 40px;
    background: #eff6ff;
    color: #3b82f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}
.order-status-text {
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 2px;
}
.order-meta {
    font-size: 0.85rem;
    color: #64748b;
    font-weight: 500;
}
.order-product-names {
    color: #64748b;
    font-size: 0.9rem;
    margin: 15px 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.order-item-thumbs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.order-thumb {
    width: 50px;
    height: 50px;
    border: 1px solid #f1f5f9;
    border-radius: 8px;
    object-fit: cover;
    padding: 2px;
}

/* Order Details Styles */
.bill-details-card {
    background: #f8fafc;
    border-radius: 15px;
    padding: 20px;
}
.bill-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: #64748b;
}
.bill-row.total {
    border-top: 1px solid #e2e8f0;
    margin-top: 10px;
    padding-top: 10px;
    font-weight: 800;
    color: var(--dark);
    font-size: 1.1rem;
}
.order-info-section h6 {
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    color: #94a3b8;
    margin-bottom: 5px;
}
.order-info-section p {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 20px;
}

.search-orders-container {
    position: relative;
    max-width: 300px;
}
.search-orders-container input {
    padding-left: 40px;
    border-radius: 50px;
    border-color: #e2e8f0;
    font-size: 0.9rem;
}
.search-orders-container i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
}

/* Custom Swiper Buttons (Outside Wrapper) */
.swiper-btn-prev-custom, .swiper-btn-next-custom {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background: #fff;
    color: var(--dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    cursor: pointer;
    z-index: 10;
    transition: 0.3s;
    border: 1px solid #f1f5f9;
}
.swiper-btn-prev-custom:hover, .swiper-btn-next-custom:hover {
    background: var(--purple);
    color: #fff;
    box-shadow: 0 8px 25px rgba(124, 58, 237, 0.3);
}
.swiper-btn-prev-custom {
    left: 0;
}
.swiper-btn-next-custom {
    right: 0;
}
/* Ensure swiper has some padding for these buttons if needed */
.featured-slider-wrapper {
    margin: 0 -15px;
    padding: 0 15px;
}
@media (max-width: 768px) {
    .featured-slider-wrapper {
        margin: 0;
        padding: 0;
    }
}
