:root {
    --primary-color: #000000;
    --accent-color: #71717a;
    --bg-color: #ffffff;
    --text-color: #09090b;
    --light-gray: #f4f4f5;
    --medium-gray: #e4e4e7;
    --white: #ffffff;
    --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-md: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --radius: 12px;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.section {
    padding: 80px 0;
}

.section-sm {
    padding: 40px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 40px;
}

.grid {
    display: grid;
    gap: 30px;
}

.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-4 {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

/* Header */
#main-header {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

#main-header.scrolled {
    background: #fff;
    border-bottom: 1px solid var(--medium-gray);
    box-shadow: var(--shadow);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -1px;
}

.search-bar {
    flex: 0 1 400px;
    display: flex;
    align-items: center;
    background: var(--light-gray);
    padding: 8px 16px;
    border-radius: 50px;
    margin: 0 20px;
}

.search-bar i {
    color: var(--accent-color);
    width: 18px;
    margin-right: 10px;
}

.search-bar input {
    background: none;
    border: none;
    outline: none;
    width: 100%;
    font-size: 0.9rem;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.icon-btn {
    background: none;
    border: none;
    cursor: pointer;
    position: relative;
    padding: 8px;
    transition: var(--transition);
}

.icon-btn:hover {
    color: var(--accent-color);
}

.badge {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--primary-color);
    color: var(--white);
    font-size: 10px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth-btn {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.auth-btn:hover {
    background: #333;
}

/* Hero Section */
.hero {
    height: 90vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f5f5f7 0%, #fff 100%);
    position: relative;
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
}

.hero-content h1 {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
}

.highlight {
    -webkit-text-stroke: 1px var(--primary-color);
    color: transparent;
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--accent-color);
    margin-bottom: 30px;
    max-width: 500px;
}

.hero-btns {
    display: flex;
    gap: 20px;
}

.btn {
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    display: inline-block;
    transition: var(--transition);
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.btn-outline {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
}

.hero-image {
    position: relative;
    z-index: 1;
}

.hero-image img {
    width: 100%;
    filter: drop-shadow(20px 40px 60px rgba(0, 0, 0, 0.1));
    animation: floating 6s ease-in-out infinite;
}

@keyframes floating {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(2deg);
    }

    100% {
        transform: translateY(0px) rotate(0deg);
    }
}

/* Category Cards */
.category-card {
    position: relative;
    height: 400px;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.category-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    color: var(--white);
}

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

.category-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.category-link {
    font-weight: 600;
    text-decoration: underline;
    opacity: 0.8;
}

/* Product Cards */
.product-card {
    transition: var(--transition);
}

.product-img-wrapper {
    background: var(--light-gray);
    border-radius: var(--radius);
    padding: 30px;
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-img-wrapper img {
    width: 100%;
    object-fit: contain;
    transition: var(--transition);
}

.discount-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #000;
    color: white;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
}

.add-to-cart {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    width: 80%;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.product-card:hover .add-to-cart {
    bottom: 20px;
}

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

.product-info {
    padding: 15px 5px;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.8rem;
    color: var(--accent-color);
    margin-bottom: 5px;
}

.star-filled {
    width: 14px;
    fill: #ffcc00;
    color: #ffcc00;
}

.product-info h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.price {
    font-weight: 700;
}

.old-price {
    text-decoration: line-through;
    color: var(--accent-color);
    font-weight: 400;
    font-size: 0.9rem;
    margin-left: 8px;
}

/* Brand Showcase */
.brands-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
    opacity: 0.5;
}

.brand-item {
    font-size: 1.5rem;
    font-weight: 800;
    filter: grayscale(1);
    transition: var(--transition);
}

.brand-item:hover {
    filter: grayscale(0);
    opacity: 1;
    transform: scale(1.1);
}

/* Why Us Section */
.why-us {
    background: var(--light-gray);
    border-radius: 40px;
    margin: 40px 20px;
}

.feature-card {
    text-align: center;
    padding: 20px;
}

.feature-card i {
    width: 40px;
    height: 40px;
    margin-bottom: 15px;
}

.feature-card h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.feature-card p {
    font-size: 0.9rem;
    color: var(--accent-color);
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 80px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}

.footer-section h4 {
    margin-bottom: 25px;
    font-size: 1.1rem;
}

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

.footer-section ul li a:hover {
    color: #999;
}

.social-links {
    display: flex;
    gap: 15px;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
    font-size: 0.8rem;
    color: #666;
}

/* Shop Page Layout */
.shop-page {
    padding-top: 40px;
    padding-bottom: 80px;
}



.form-label {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--accent-color);
    margin-bottom: 8px;
}

.form-control {
    padding: 12px 16px;
    border-radius: 10px;
    border: 1px solid var(--medium-gray);
    font-family: inherit;
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: none;
    outline: none;
}

.shop-header {
    margin-bottom: 40px;
}

.breadcrumbs {
    font-size: 0.9rem;
    color: var(--accent-color);
    margin-bottom: 25px;
}

.breadcrumbs a {
    color: var(--accent-color);
    transition: var(--transition);
}

.breadcrumbs a:hover {
    color: var(--primary-color);
}

.breadcrumbs span {
    color: var(--primary-color);
    font-weight: 500;
}

.shop-title-bar {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 20px;
}

.shop-title-bar h1 {
    font-size: 2.5rem;
    font-weight: 800;
}

.sort-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sort-wrapper label {
    font-size: 0.9rem;
    font-weight: 600;
}

.sort-wrapper select {
    padding: 8px 16px;
    border-radius: 50px;
    border: 1px solid var(--medium-gray);
    outline: none;
    font-family: inherit;
    cursor: pointer;
    transition: var(--transition);
}

.sort-wrapper select:hover {
    border-color: var(--primary-color);
}

.filter-toggle-mobile {
    display: none;
    align-items: center;
    gap: 8px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
}

.shop-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
}

/* Sidebar Filters */
.filters-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.filter-header-mobile {
    display: none;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.filter-group {
    margin-bottom: 40px;
}

.filter-group h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.filter-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Custom Checkbox */
.checkbox-container {
    display: block;
    position: relative;
    padding-left: 35px;
    cursor: pointer;
    font-size: 0.95rem;
    user-select: none;
    transition: var(--transition);
}

.checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 22px;
    width: 22px;
    background-color: var(--light-gray);
    border-radius: 6px;
    transition: var(--transition);
}

.checkbox-container:hover input~.checkmark {
    background-color: var(--medium-gray);
}

.checkbox-container input:checked~.checkmark {
    background-color: var(--primary-color);
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.checkbox-container input:checked~.checkmark:after {
    display: block;
}

.checkbox-container .checkmark:after {
    left: 8px;
    top: 4px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/* Price Slider */
.price-range-wrapper {
    padding: 10px 0;
}

.slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 4px;
    border-radius: 5px;
    background: var(--medium-gray);
    outline: none;
    margin-bottom: 15px;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--primary-color);
    cursor: pointer;
    border: 3px solid #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.price-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent-color);
}

/* Size Buttons */
.size-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.size-btn {
    background: var(--white);
    border: 1px solid var(--medium-gray);
    padding: 10px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.size-btn:hover {
    border-color: var(--primary-color);
}

.size-btn.active {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.w-100 {
    width: 100%;
}

/* Enhanced Product Card */
.product-img-wrapper {
    position: relative;
    overflow: hidden;
}

.wishlist-btn {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--white);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 5;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.wishlist-btn i {
    width: 20px;
}

.wishlist-btn:hover {
    transform: scale(1.1);
}

.wishlist-btn.active i {
    fill: #000;
    color: #000;
}

.product-actions {
    position: absolute;
    bottom: -60px;
    left: 0;
    width: 100%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: linear-gradient(to top, rgba(255, 255, 255, 0.95), transparent);
}

.product-card:hover .product-actions {
    bottom: 0;
}

.product-info .brand-name {
    font-size: 0.85rem;
    color: var(--accent-color);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2px;
}

.pagination {
    margin-top: 60px;
    display: flex;
    justify-content: center;
}

.load-more {
    padding: 15px 50px;
}

/* Responsiveness */
@media (max-width: 992px) {
    .shop-layout {
        grid-template-columns: 1fr;
    }

    .filters-sidebar {
        position: fixed;
        top: 0;
        right: -100%;
        width: 320px;
        height: 100vh;
        background: var(--white);
        z-index: 2000;
        padding: 30px;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
        transition: var(--transition);
        overflow-y: auto;
    }

    .filters-sidebar.active {
        right: 0;
    }

    .filter-header-mobile {
        display: flex;
    }

    .filter-toggle-mobile {
        display: flex;
    }

    .hero-content h1 {
        font-size: 3.5rem;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 40px;
    }

    .hero-content {
        order: 2;
    }

    .hero-image {
        order: 1;
        margin-bottom: 30px;
    }

    .hero-content h1 {
        font-size: 2.8rem;
    }

    .hero-btns {
        justify-content: center;
    }

    .search-bar {
        display: none;
    }

    .shop-title-bar h1 {
        font-size: 2rem;
    }
}

/* Cart Page Styles */
.cart-page {
    background-color: var(--white);
    min-height: 70vh;
}

.cart-item-img img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    background: var(--light-gray);
    padding: 10px;
    border-radius: var(--radius);
}

.quantity-input-wrapper {
    max-width: 100px;
}

.quantity-input {
    border-radius: 8px;
    border-color: var(--medium-gray);
    font-weight: 600;
}

.quantity-input:focus {
    border-color: var(--primary-color);
    box-shadow: none;
}

.order-summary-card {
    background: #fff;
    border: 1px solid var(--medium-gray) !important;
    position: sticky;
    top: 100px;
}

.promo-input {
    border-radius: 50px 0 0 50px !important;
    padding-left: 20px;
    font-size: 0.95rem;
    border-color: var(--medium-gray);
}

.promo-btn {
    border-radius: 0 50px 50px 0 !important;
    font-weight: 600;
}

.checkout-btn {
    transition: var(--transition);
}

.checkout-btn:hover {
    background: #333 !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.remove-item-btn {
    transition: var(--transition);
}

.remove-item-btn:hover {
    transform: scale(1.1);
}

.grayscale {
    filter: grayscale(1);
    transition: var(--transition);
}

.grayscale:hover {
    filter: grayscale(0);
    opacity: 1 !important;
}

/* Responsiveness for Cart */
@media (max-width: 768px) {
    .cart-item {
        text-align: center;
    }

    .cart-item-img {
        margin: 0 auto 15px !important;
    }

    .cart-item-details {
        margin-bottom: 20px;
    }

    .quantity-input-wrapper {
        margin-bottom: 15px;
    }
}

/* Checkout Page Styles */
.checkout-container {
    padding-top: 40px;
    padding-bottom: 80px;
}

.checkout-section-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--medium-gray);
}

.checkout-section-title.border-0 {
    border-bottom: none !important;
}

.form-label {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-color);
}

.form-control {
    border-radius: 8px !important;
    padding: 12px 15px !important;
    border: 1px solid var(--medium-gray) !important;
    font-size: 0.95rem;
}

.form-control:focus {
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.05) !important;
    border-color: var(--primary-color) !important;
}

.summary-card {
    background: var(--white);
    border: 1px solid var(--medium-gray);
    border-radius: var(--radius);
    padding: 30px;
    position: sticky;
    top: 100px;
}

.order-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.order-item-name {
    font-weight: 500;
    color: var(--accent-color);
}

.order-item-qty {
    font-size: 0.85rem;
    color: #999;
    margin-left: 5px;
}

.summary-divider {
    height: 1px;
    background: var(--medium-gray);
    margin: 20px 0;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 1rem;
}

.summary-total {
    font-size: 1.25rem;
    font-weight: 800;
    margin-top: 40px;
}

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

.payment-option {
    border: 1px solid var(--medium-gray);
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 12px;
}

.payment-option:hover {
    border-color: var(--primary-color);
}

.payment-option input[type='radio'] {
    accent-color: var(--primary-color);
    width: 18px;
    height: 18px;
}

.payment-icons {
    margin-left: auto;
    display: flex;
    gap: 8px;
}

.payment-icons i {
    width: 24px;
    color: var(--accent-color);
}

/* Success Page Styles */
.success-page {
    padding: 80px 0;
    background-color: #fcfcfc;
    min-height: calc(100vh - 400px);
}

.success-card {
    background: var(--white);
    padding: 50px 40px;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.success-icon-wrapper {
    width: 100px;
    height: 100px;
    background-color: #f0fff4;
    color: #22c55e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.success-icon-wrapper i {
    width: 50px;
    height: 50px;
}

.order-info-card {
    background: var(--light-gray);
    border-radius: 16px;
    padding: 25px;
    margin: 30px 0;
    text-align: left;
}

.order-info-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.order-info-row:last-child {
    margin-bottom: 0;
    padding-top: 12px;
    border-top: 1px solid var(--medium-gray);
    font-weight: 700;
}

.order-info-label {
    color: var(--accent-color);
}

.delivery-info {
    text-align: left;
    margin-bottom: 30px;
}

.delivery-info h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.success-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

@media (max-width: 768px) {
    .success-card {
        padding: 40px 20px;
    }

    .success-actions {
        flex-direction: column;
    }
}

/* Profile Page */
.profile-page {
    background-color: var(--light-gray);
    min-height: 80vh;
}

.profile-sidebar,
.profile-card {
    border: 1px solid var(--medium-gray);
    background: var(--white);
}

.profile-avatar {
    width: 80px;
    height: 80px;
    background: var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.profile-nav .nav-link {
    color: var(--text-color);
    padding: 12px 20px;
    border-radius: 10px;
    margin-bottom: 5px;
    font-weight: 500;
    transition: var(--transition);
    border: 1px solid transparent;
    display: flex;
    align-items: center;
}

.profile-nav .nav-link:hover {
    background: var(--light-gray);
    color: var(--primary-color);
}

.profile-nav .nav-link.active {
    background: var(--primary-color) !important;
    color: var(--white) !important;
}

.profile-nav .nav-link i {
    width: 18px;
    height: 18px;
}

.address-card {
    transition: var(--transition);
    background: var(--white);
}

.address-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow);
}

.active-address {
    border-color: var(--primary-color);
    background-color: #fbfbfb;
}

.table th {
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    color: var(--accent-color);
    padding: 15px;
}

.table td {
    padding: 15px;
}

@media (max-width: 991px) {
    .profile-sidebar {
        margin-bottom: 30px;
    }
}

/* Wishlist Page Specific Styles */
.wishlist-page {
    background-color: var(--white);
    min-height: 60vh;
}

#empty-wishlist i {
    color: var(--medium-gray);
    margin-bottom: 20px;
}

#empty-wishlist h2 {
    font-size: 2rem;
    font-weight: 800;
}

.remove-form {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 10;
}

.product-card .remove-form .wishlist-btn {
    position: static;
    background: var(--white);
    color: var(--text-color);
    border: 1px solid var(--medium-gray);
}

.product-card .remove-form .wishlist-btn:hover {
    background: #ff3b30;
    color: var(--white);
    border-color: #ff3b30;
}

#wishlist-grid .product-card {
    border: 1px solid var(--light-gray);
    border-radius: var(--radius);
    padding: 10px;
    background: var(--white);
    transition: var(--transition);
}

#wishlist-grid .product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-color: var(--medium-gray);
}

/* =========================================
   Admin Dashboard Styles
   ========================================= */

.admin-layout {
    display: flex;
    min-height: 100vh;
}

/* Sidebar */
.admin-sidebar {
    width: 260px;
    background: #09090b;
    color: #fff;
    position: fixed;
    height: 100vh;
    left: 0;
    top: 0;
    transition: var(--transition);
    z-index: 1001;
    display: flex;
    flex-direction: column;
}

.admin-sidebar .sidebar-header {
    padding: 30px 24px;
    display: flex;
    align-items: center;
}

.admin-sidebar .logo {
    color: #fff;
    font-size: 1.5rem;
    margin: 0;
}

.sidebar-nav {
    flex: 1;
    padding: 0 12px;
}

.nav-item-admin {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    color: #a1a1aa;
    border-radius: 8px;
    margin-bottom: 4px;
    transition: var(--transition);
    font-weight: 500;
}

.nav-item-admin:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
}

.nav-item-admin.active {
    background: #27272a;
    color: #fff;
}

.nav-item-admin i {
    width: 20px;
    height: 20px;
    margin-right: 12px;
}

.sidebar-footer {
    padding: 24px;
    border-top: 1px solid #27272a;
}

/* Main Content Area */
.admin-main {
    margin-left: 260px;
    flex: 1;
    background: #f4f4f5;
    min-width: 0;
}

/* Top Navigation Bar */
.admin-top-bar {
    height: 70px;
    background: #fff;
    border-bottom: 1px solid var(--medium-gray);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 30px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.admin-top-bar h2 {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0;
}

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

.admin-profile {
    display: flex;
    align-items: center;
    gap: 10px;
}

.admin-avatar {
    width: 36px;
    height: 36px;
    background: var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Dashboard Content */
.admin-content {
    padding: 30px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    margin-bottom: 30px;
}

.stat-card {
    background: #fff;
    padding: 24px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 20px;
}

.stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon.blue {
    background: #eff6ff;
    color: #3b82f6;
}

.stat-icon.green {
    background: #f0fdf4;
    color: #22c55e;
}

.stat-icon.orange {
    background: #fff7ed;
    color: #f97316;
}

.stat-icon.red {
    background: #fef2f2;
    color: #ef4444;
}

.stat-info span {
    font-size: 0.875rem;
    color: var(--accent-color);
    display: block;
    margin-bottom: 4px;
}

.stat-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

/* Admin Tables */
.admin-card {
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    margin-bottom: 30px;
}

.card-header {
    padding: 20px 24px;
    border-bottom: 1px solid var(--medium-gray);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
}

.card-header h4 {
    margin: 0;
    font-weight: 700;
}

.table-admin {
    width: 100%;
    border-collapse: collapse;
}

.table-admin th {
    padding: 16px 24px;
    background: #fafafa;
    text-align: left;
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--accent-color);
    border-bottom: 1px solid var(--medium-gray);
}

.table-admin td {
    padding: 16px 24px;
    border-bottom: 1px solid var(--medium-gray);
    vertical-align: middle;
}

.table-admin tr:last-child td {
    border-bottom: none;
}

.product-thumb-admin {
    width: 40px;
    height: 40px;
    background: var(--light-gray);
    border-radius: 6px;
    object-fit: contain;
}

.table-admin .btn-light {
    background: #fff;
    border-color: #e4e4e7 !important;
    color: #3f3f46;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    padding: 0;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.table-admin .btn-light:hover {
    background: #f4f4f5;
    border-color: #27272a !important;
    color: #000;
    transform: translateY(-1px);
}

.table-admin .btn-light i {
    color: #71717a;
}

.table-admin .btn-light:hover i {
    color: #000;
}

.table-admin .btn-light.text-danger i {
    color: #ef4444;
}

.table-admin .btn-light.text-danger:hover {
    background: #fef2f2;
    border-color: #ef4444 !important;
}

.table-admin .btn-light.text-danger:hover i {
    color: #dc2626;
}

.stock-badge {
    padding: 4px 10px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}

.stock-badge.low {
    background: #fef2f2;
    color: #ef4444;
}

.stock-badge.ok {
    background: #f0fdf4;
    color: #22c55e;
}

/* Status Badges */
.status-badge {
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}

.status-badge.paid {
    background: #f0fdf4;
    color: #22c55e;
}

.status-badge.pending {
    background: #fff7ed;
    color: #f97316;
}

.status-badge.shipped {
    background: #eff6ff;
    color: #3b82f6;
}

.status-badge.return-requested {
    background: #fff7ed;
    color: #ea580c;
}

.status-badge.returned {
    background: #fdf2f8;
    color: #db2777;
}

/* Notifications */
.notif-item {
    padding: 16px 24px;
    border-bottom: 1px solid var(--medium-gray);
    display: flex;
    gap: 16px;
}

.notif-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.notif-content h5 {
    font-size: 0.9375rem;
    font-weight: 600;
    margin: 0 0 4px;
}

.notif-content p {
    font-size: 0.8125rem;
    color: var(--accent-color);
    margin: 0 0 4px;
}

.notif-content .time {
    font-size: 0.75rem;
    color: #a1a1aa;
}

/* Responsive Admin */
@media (max-width: 991px) {
    .admin-sidebar {
        transform: translateX(-100%);
    }

    .admin-sidebar.show {
        transform: translateX(0);
    }

    .admin-main {
        margin-left: 0;
    }
}

/* Modal & Form Fixes */
.modal-content {
    background-color: var(--white);
    border-radius: 20px !important;
}

.modal-header .btn-close {
    padding: 1.25rem;
    margin: -0.5rem -0.5rem -0.5rem auto;
}

#edit-profile-form .form-label {
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

#edit-profile-form .form-control {
    padding: 0.8rem 1rem;
    border-radius: 12px;
}

#edit-profile-form .form-control:focus {
    box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.05);
    border-color: var(--primary-color);
}

/* Order Details Modal Styles */
.order-items-list {
    max-height: 400px;
    overflow-y: auto;
    padding-right: 5px;
}

.order-items-list::-webkit-scrollbar {
    width: 4px;
}

.order-items-list::-webkit-scrollbar-thumb {
    background: var(--medium-gray);
    border-radius: 10px;
}

.extra-small {
    font-size: 0.75rem;
}

.order-item-detail {
    transition: var(--transition);
}

.order-item-detail:hover {
    border-color: var(--primary-color) !important;
    background: #f8f9fa;
}

.order-summary-card {
    border: 1px solid var(--medium-gray);
}

/* Product Review Section Styles */
.review-summary-box {
    background: #fff;
    padding: 30px;
    border-radius: var(--radius);
    border: 1px solid var(--medium-gray);
    margin-bottom: 30px;
}

.avg-rating-number {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
    color: var(--primary-color);
}

.verified-badge {
    background: #e8f5e9;
    color: #2e7d32;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.review-item-card {
    border: 1px solid var(--light-gray);
    border-radius: var(--radius);
    padding: 24px;
    margin-bottom: 20px;
    transition: var(--transition);
}

.review-item-card:hover {
    border-color: var(--medium-gray);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* Star Rating Radio System */
.star-rating-radio {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 5px;
}

.star-rating-radio input {
    display: none;
}

.star-rating-radio label {
    cursor: pointer;
    width: 24px;
    height: 24px;
    color: var(--medium-gray);
    transition: var(--transition);
}

.star-rating-radio label:hover,
.star-rating-radio label:hover~label,
.star-rating-radio input:checked~label {
    color: #ffc107;
}

.star-rating-radio label i {
    width: 24px;
    height: 24px;
}

.write-review-card {
    background: #fdfdfd;
    padding: 30px;
    border-radius: var(--radius);
    border: 1px dashed var(--medium-gray);
    margin-top: 40px;
}

/* Wallet Styles */
.wallet-balance-card {
    transition: var(--transition);
}

.wallet-balance-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.wallet-chip {
    background: rgba(255, 255, 255, 0.1);
    padding: 10px;
    border-radius: 12px;
}

.letter-spacing-1 {
    letter-spacing: 2px;
}

.transaction-item {
    transition: var(--transition);
}

.transaction-item:hover {
    background: #fcfcfc;
}

.transaction-icon {
    flex-shrink: 0;
}

/* Wallet Checkout Option */
.wallet-checkout-card {
    background: #fdfdfd;
    border: 1px solid var(--medium-gray);
    transition: var(--transition);
}

.wallet-checkout-card:hover {
    border-color: var(--primary-color);
    background: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* CSS-only Toggle Logic */
#useWallet:checked+label .custom-checkbox-styled {
    border-color: var(--primary-color) !important;
    background: var(--primary-color);
}

#useWallet:checked+label .check-dot {
    display: block !important;
    background: white !important;
}

#useWallet:checked~#wallet-deduction {
    display: block !important;
}

.deduction-amount {
    color: #ff3b30;
    font-weight: 700;
}

.italic {
    font-style: italic;
}

/* Order Management & Tracking Styles */
.bg-purple {
    background-color: #7c3aed !important;
}

.text-purple {
    color: #7c3aed !important;
}

.bg-purple-subtle {
    background-color: #f5f3ff !important;
    border-color: #ddd6fe !important;
}

.text-purple-subtle {
    color: #7c3aed !important;
}

.bg-orange {
    background-color: #f97316 !important;
}

.text-orange {
    color: #f97316 !important;
}

.bg-orange-subtle {
    background-color: #fff7ed !important;
    border-color: #ffedd5 !important;
}

.text-orange-subtle {
    color: #ea580c !important;
}

.status-badge {
    padding: 6px 12px;
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Tracking Timeline */
.tracking-timeline {
    position: relative;
    padding: 20px 0;
}

.timeline-item {
    position: relative;
    padding-bottom: 2rem;
    padding-left: 3rem;
    border-left: 2px solid var(--medium-gray);
    transition: var(--transition);
}

.timeline-item:last-child {
    border-left: 2px solid transparent;
    padding-bottom: 0;
}

.timeline-icon {
    position: absolute;
    left: -15px;
    top: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid var(--medium-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: var(--transition);
}

.timeline-item.active .timeline-icon {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}

.timeline-item.completed {
    border-left-color: var(--primary-color);
}

.timeline-item.completed .timeline-icon {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}

.timeline-content {
    margin-top: -2px;
}

.timeline-content h6 {
    margin-bottom: 0.25rem;
    font-weight: 700;
}

.timeline-content p {
    margin-bottom: 0;
    color: var(--accent-color);
    font-size: 0.85rem;
}

/* Horizontal Timeline for Desktop */
@media (min-width: 768px) {
    .tracking-timeline-horizontal {
        display: flex;
        justify-content: space-between;
        padding: 40px 0;
        position: relative;
    }

    .tracking-timeline-horizontal::before {
        content: '';
        position: absolute;
        top: 54px;
        left: 0;
        width: 100%;
        height: 2px;
        background: var(--medium-gray);
        z-index: 0;
    }

    .h-timeline-item {
        position: relative;
        flex: 1;
        text-align: center;
        z-index: 1;
    }

    .h-timeline-icon {
        width: 32px;
        height: 32px;
        background: #fff;
        border: 2px solid var(--medium-gray);
        border-radius: 50%;
        margin: 0 auto 15px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: var(--transition);
    }

    .h-timeline-item.active .h-timeline-icon,
    .h-timeline-item.completed .h-timeline-icon {
        background: var(--primary-color);
        border-color: var(--primary-color);
        color: #fff;
    }

    /* Connection lines for active state */
    .h-timeline-item.completed::after {
        content: '';
        position: absolute;
        top: 14px;
        left: 50%;
        width: 100%;
        height: 2px;
        background: var(--primary-color);
        z-index: -1;
    }

    .h-timeline-item:last-child::after {
        display: none;
    }

    .h-timeline-title {
        font-weight: 700;
        font-size: 0.9rem;
        margin-bottom: 2px;
    }

    .h-timeline-date {
        font-size: 0.75rem;
        color: var(--accent-color);
    }
}

/* Order Cards Styles */
.order-card {
    background: #fff;
    border: 1px solid var(--medium-gray);
    border-radius: var(--radius);
    padding: 24px;
    margin-bottom: 20px;
    transition: var(--transition);
}

.order-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.order-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--light-gray);
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 15px;
}

.order-meta-item {
    display: flex;
    flex-direction: column;
}

.order-meta-label {
    font-size: 0.75rem;
    color: var(--accent-color);
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 4px;
}

.order-meta-value {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-color);
}

.order-product-info {
    display: flex;
    gap: 20px;
    align-items: center;
}

.order-product-thumb {
    width: 80px;
    height: 80px;
    background: var(--light-gray);
    border-radius: 12px;
    padding: 10px;
    object-fit: contain;
}

.order-product-details h6 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.order-product-brand {
    font-size: 0.85rem;
    color: var(--accent-color);
    margin-bottom: 4px;
}

.order-product-qty {
    font-size: 0.9rem;
    font-weight: 500;
}

.order-status-section {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

.order-actions {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

/* Status Badges */
.status-badge {
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
}

.status-badge.status-pending {
    background: #fef9c3;
    color: #854d0e;
}

.status-badge.status-confirmed {
    background: #dbeafe;
    color: #1e40af;
}

.status-badge.status-shipped {
    background: #f3e8ff;
    color: #6b21a8;
}

.status-badge.status-delivered {
    background: #dcfce7;
    color: #166534;
}

.status-badge.status-cancelled {
    background: #fee2e2;
    color: #991b1b;
}

/* Order Details Page */
.detail-section {
    margin-bottom: 40px;
}

.detail-section-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--light-gray);
}

.address-info-card {
    background: #fff;
    border: 1px solid var(--medium-gray);
    border-radius: var(--radius);
    padding: 20px;
    height: 100%;
}

.payment-summary-card {
    background: #fafafa;
    border: 1px solid var(--medium-gray);
    border-radius: var(--radius);
    padding: 20px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.summary-row.total {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid var(--medium-gray);
    font-size: 1.2rem;
    font-weight: 800;
}

/* Order Timeline (Vertical for Mobile, Stepper for Details context) */
.order-timeline {
    position: relative;
    padding-left: 30px;
}

.order-timeline::before {
    content: '';
    position: absolute;
    left: 4px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--medium-gray);
}

.timeline-step {
    position: relative;
    padding-bottom: 30px;
}

.timeline-step:last-child {
    padding-bottom: 0;
}

.timeline-point {
    position: absolute;
    left: -30px;
    top: 5px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--medium-gray);
    border: 2px solid #fff;
    box-shadow: 0 0 0 2px var(--medium-gray);
    z-index: 1;
}

.timeline-step.active .timeline-point {
    background: var(--primary-color);
    box-shadow: 0 0 0 2px var(--primary-color);
}

.timeline-content {
    display: flex;
    justify-content: space-between;
}

.timeline-title {
    font-weight: 700;
    font-size: 1rem;
}

.timeline-date {
    font-size: 0.85rem;
    color: var(--accent-color);
}

@media (max-width: 768px) {
    .order-card-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .order-product-info {
        flex-direction: column;
        align-items: flex-start;
    }

    .order-status-section {
        align-items: flex-start;
        margin-top: 20px;
    }
}

/* Wallet Enhancements */
.wallet-product-thumb {
    transition: transform 0.2s ease;
}

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

.wallet-history-container::-webkit-scrollbar {
    width: 6px;
}

.wallet-history-container::-webkit-scrollbar-track {
    background: transparent;
}

.wallet-history-container::-webkit-scrollbar-thumb {
    background: #000;
    border-radius: 10px;
}

.extra-small {
    font-size: 0.75rem;
}

/* =====================================
   REGISTER PAGE – EXACT MODEL DESIGN
   ===================================== */

/* Card spacing */
.auth-card {
    padding: 48px 40px;
}

/* Title spacing */
.auth-logo {
    margin-bottom: 12px;
}

.auth-header h2 {
    margin-bottom: 32px;
}

/* Each field spacing */
.auth-card .mb-3 {
    margin-bottom: 22px;
}

/* Label – bold, clean, black */
.auth-card .form-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 8px;
}

/* Input – exact model look */
.auth-card .form-control {
    height: 52px;
    /* 🔥 key */
    padding: 0 16px;
    border-radius: 12px;
    /* 🔥 key */
    border: 1px solid #e4e4e7;
    font-size: 0.95rem;
    color: #09090b;
    background-color: #fff;
}

/* Placeholder color */
.auth-card .form-control::placeholder {
    color: #a1a1aa;
    font-weight: 400;
}

/* Focus – subtle, no glow */
.auth-card .form-control:focus {
    border-color: #000;
    box-shadow: none;
    outline: none;
}

/* Register button – pill shape */
.auth-card .auth-btn {
    height: 54px;
    border-radius: 999px;
    /* 🔥 full pill */
    font-size: 1rem;
    font-weight: 700;
    margin-top: 16px;
}

.otp-input {
    width: 55px;
    height: 55px;
    text-align: center;
    font-size: 1.4rem;
    font-weight: 600;
    border-radius: 12px;
}

html {
    scroll-behavior: smooth;
}

/* --- Toast Notifications --- */
#toast-container {
    position: fixed;
    top: 24px;
    right: 24px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 12px;
    pointer-events: none;
}

.toast {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    padding: 16px 20px;
    min-width: 300px;
    max-width: 400px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.08),
        0 4px 10px -2px rgba(0, 0, 0, 0.04);
    pointer-events: auto;
    animation: toast-slide-in 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
    transition: all 0.3s ease;
}

.toast.hiding {
    animation: toast-slide-out 0.4s cubic-bezier(0.6, -0.28, 0.735, 0.045) forwards;
}

.toast-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    flex-shrink: 0;
}

.toast-success .toast-icon {
    background-color: #ecfdf5;
    color: #10b981;
}

.toast-error .toast-icon {
    background-color: #fef2f2;
    color: #ef4444;
}

.toast-info .toast-icon {
    background-color: #eff6ff;
    color: #3b82f6;
}

.toast-warning .toast-icon {
    background-color: #fffbeb;
    color: #f59e0b;
}

.toast-content {
    flex: 1;
}

.toast-message {
    font-size: 0.9rem;
    font-weight: 500;
    color: #18181b;
    margin: 0;
}

.toast-close {
    background: none;
    border: none;
    padding: 0;
    color: #a1a1aa;
    cursor: pointer;
    transition: color 0.2s;
}

.toast-close:hover {
    color: #3f3f46;
}

@keyframes toast-slide-in {
    from {
        opacity: 0;
        transform: translateX(100px);
    }

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

@keyframes toast-slide-out {
    from {
        opacity: 1;
        transform: translateX(0);
    }

    to {
        opacity: 0;
        transform: translateX(100px);
    }
}