﻿/**
* Template Name: FashionStore
* Template URL: https://bootstrapmade.com/fashion-store-bootstrap-template/
* Updated: Apr 26 2025 with Bootstrap v5.3.5
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

@charset "UTF-8";

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
    --default-font: "Roboto", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --heading-font: "Quicksand", sans-serif;
    --nav-font: "Ubuntu", sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
    --background-color: #ffffff; /* Background color for the entire website, including individual sections */
    --default-color: #212529; /* Default color used for the majority of the text content across the entire website */
    --heading-color: #3e0925; /* Color for headings, subheadings and title throughout the website */
    --accent-color: #74676f; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
    --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
    --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
    --nav-color: #212529; /* The default color of the main navmenu links */
    --nav-hover-color: #74676f; /* Applied to main navmenu links when they are hovered over or active */
    --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
    --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
    --nav-dropdown-color: #212529; /* Used for navigation links of the dropdown items in the navigation menu. */
    --nav-dropdown-hover-color: #74676f; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
    --background-color: #f8f4f6;
    --surface-color: #ffffff;
}

.dark-background {
    --background-color: #232931;
    --default-color: #ffffff;
    --heading-color: #ffffff;
    --accent-color: #397deb;
    --surface-color: #38424f;
    --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
    scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
    color: var(--default-color);
    background-color: var(--background-color);
    font-family: var(--default-font);
}

a {
    color: #74676f;
    text-decoration: none;
    transition: 0.3s;
}

    a:hover {
        color: color-mix(in srgb, #74676f, transparent 25%);
        text-decoration: none;
    }

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--heading-color);
    font-family: var(--heading-font);
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
    display: none;
    background: #df1529;
    color: #ffffff;
    text-align: left;
    padding: 15px;
    margin-bottom: 24px;
    font-weight: 600;
}

.php-email-form .sent-message {
    display: none;
    color: #ffffff;
    background: #059652;
    text-align: center;
    padding: 15px;
    margin-bottom: 24px;
    font-weight: 600;
}

.php-email-form .loading {
    display: none;
    background: var(--surface-color);
    text-align: center;
    padding: 15px;
    margin-bottom: 24px;
}

    .php-email-form .loading:before {
        content: "";
        display: inline-block;
        border-radius: 50%;
        width: 24px;
        height: 24px;
        margin: 0 10px -6px 0;
        border: 3px solid #74676f;
        border-top-color: var(--surface-color);
        animation: php-email-form-loading 1s linear infinite;
    }

@keyframes php-email-form-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
    color: var(--default-color);
    background-color: var(--background-color);
    transition: all 0.5s;
    z-index: 997;
}

    .header .top-bar {
        background-color: color-mix(in srgb, var(--default-color), transparent 96%);
        font-size: 14px;
    }

        .header .top-bar .top-bar-item {
            color: var(--default-color);
        }

            .header .top-bar .top-bar-item a {
                color: #74676f;
                text-decoration: none;
                display: inline-flex;
                align-items: center;
            }

                .header .top-bar .top-bar-item a:hover {
                    color: color-mix(in srgb, #74676f, transparent 25%);
                }

            .header .top-bar .top-bar-item .selected-icon {
                color: #74676f;
                opacity: 1;
                width: 16px;
            }

        .header .top-bar .dropdown-menu {
            min-width: 150px;
            padding: 0.5rem 0;
            margin-top: 0.5rem;
            background-color: var(--surface-color);
            border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
            border-radius: 4px;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
        }

            .header .top-bar .dropdown-menu .dropdown-item {
                padding: 0.5rem 1rem;
                font-size: 14px;
                color: var(--default-color);
                display: flex;
                align-items: center;
            }

                .header .top-bar .dropdown-menu .dropdown-item .selected-icon {
                    opacity: 1;
                    color: #74676f;
                    width: 16px;
                }

                .header .top-bar .dropdown-menu .dropdown-item:hover {
                    background-color: color-mix(in srgb, #74676f, transparent 90%);
                    color: #74676f;
                }

    .header .main-header {
        border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    }

        .header .main-header .logo {
            line-height: 1;
        }

            .header .main-header .logo img {
                max-height: 32px;
                margin-right: 8px;
            }

            .header .main-header .logo h1 {
                font-size: 26px;
                margin: 0;
                font-weight: 700;
                color: var(--heading-color);
            }

                .header .main-header .logo h1 span {
                    color: #74676f;
                }

@media (max-width: 768px) {
    .header .main-header .logo h1 {
        font-size: 24px;
    }
}

.header .main-header .desktop-search-form {
    min-width: 440px;
    margin: 0 auto;
}

@media (max-width: 1200px) {
    .header .main-header .desktop-search-form {
        display: none;
    }
}

.header .main-header .header-actions {
    gap: 16px;
}

    .header .main-header .header-actions .header-action-btn {
        position: relative;
        background: none;
        border: none;
        padding: 0.5rem;
        color: var(--default-color);
        font-size: 15px;
        cursor: pointer;
        transition: color 0.3s ease;
        display: flex;
        align-items: center;
    }

        .header .main-header .header-actions .header-action-btn i {
            font-size: 24px;
            margin-right: 6px;
        }

            .header .main-header .header-actions .header-action-btn i.bi-person {
                font-size: 26px;
            }

        .header .main-header .header-actions .header-action-btn .action-text {
            font-weight: 500;
            font-size: 14px;
        }

        .header .main-header .header-actions .header-action-btn:hover {
            color: #74676f;
        }

        .header .main-header .header-actions .header-action-btn .badge {
            position: absolute;
            top: -5px;
            right: -5px;
            background-color: #74676f;
            color: var(--contrast-color);
            font-size: 10px;
            padding: 2px 6px;
            border-radius: 10px;
            min-width: 18px;
            height: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

.header .main-header .account-dropdown .dropdown-menu {
    background-color: var(--surface-color);
    min-width: 280px;
    padding: 0;
    border-radius: 6px;
    margin-top: 0.75rem;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.15);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

    .header .main-header .account-dropdown .dropdown-menu .dropdown-header {
        padding: 1.25rem;
        border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    }

        .header .main-header .account-dropdown .dropdown-menu .dropdown-header h6 {
            margin: 0 0 0.25rem;
            color: var(--heading-color);
            font-size: 16px;
        }

        .header .main-header .account-dropdown .dropdown-menu .dropdown-header p {
            font-size: 13px;
            color: color-mix(in srgb, var(--default-color), transparent 40%);
        }

    .header .main-header .account-dropdown .dropdown-menu .dropdown-body {
        padding: 1rem 0;
    }

        .header .main-header .account-dropdown .dropdown-menu .dropdown-body .dropdown-item {
            padding: 0.5rem 1.25rem;
            font-size: 14px;
            color: var(--default-color);
            transition: all 0.2s ease;
        }

            .header .main-header .account-dropdown .dropdown-menu .dropdown-body .dropdown-item i {
                color: color-mix(in srgb, var(--default-color), transparent 30%);
                transition: color 0.2s ease;
                font-size: 16px;
            }

            .header .main-header .account-dropdown .dropdown-menu .dropdown-body .dropdown-item:hover {
                background-color: color-mix(in srgb, #74676f, transparent 90%);
                color: #74676f;
            }

                .header .main-header .account-dropdown .dropdown-menu .dropdown-body .dropdown-item:hover i {
                    color: #74676f;
                }

    .header .main-header .account-dropdown .dropdown-menu .dropdown-footer {
        padding: 1.25rem;
        background-color: color-mix(in srgb, var(--default-color), transparent 97%);
        border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    }

        .header .main-header .account-dropdown .dropdown-menu .dropdown-footer .btn {
            font-size: 14px;
            padding: 0.5rem 1rem;
            background-color: #74676f;
            border-color: #74676f;
            color: var(--contrast-color);
            transition: 0.3s;
            border-radius: 50px;
        }

        .header .main-header .account-dropdown .dropdown-menu .dropdown-footer .btn-outline-primary {
            border-color: #74676f;
            background-color: transparent;
            color: #74676f;
        }

            .header .main-header .account-dropdown .dropdown-menu .dropdown-footer .btn-outline-primary:hover {
                background-color: #74676f;
                color: var(--contrast-color);
            }

.header .main-header .cart-dropdown .cart-dropdown-menu {
    background-color: var(--surface-color);
    min-width: 320px;
    padding: 0;
    border-radius: 6px;
    margin-top: 0.75rem;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.15);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    right: 0;
    left: auto;
}

@media (max-width: 576px) {
    .header .main-header .cart-dropdown .cart-dropdown-menu {
        min-width: 280px;
    }
}

.header .main-header .cart-dropdown .cart-dropdown-menu .dropdown-header {
    padding: 1rem;
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

    .header .main-header .cart-dropdown .cart-dropdown-menu .dropdown-header h6 {
        margin: 0;
        color: var(--heading-color);
        font-size: 16px;
    }

.header .main-header .cart-dropdown .cart-dropdown-menu .dropdown-body {
    max-height: 320px;
    overflow-y: auto;
}

    .header .main-header .cart-dropdown .cart-dropdown-menu .dropdown-body .cart-items {
        padding: 0.5rem 0;
    }

    .header .main-header .cart-dropdown .cart-dropdown-menu .dropdown-body .cart-item {
        display: flex;
        align-items: center;
        padding: 0.75rem 1rem;
        border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 95%);
    }

        .header .main-header .cart-dropdown .cart-dropdown-menu .dropdown-body .cart-item:last-child {
            border-bottom: none;
        }

        .header .main-header .cart-dropdown .cart-dropdown-menu .dropdown-body .cart-item .cart-item-image {
            width: 50px;
            height: 50px;
            border-radius: 4px;
            overflow: hidden;
            margin-right: 12px;
            border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
        }

            .header .main-header .cart-dropdown .cart-dropdown-menu .dropdown-body .cart-item .cart-item-image img {
                width: 100%;
                height: 100%;
                object-fit: cover;
            }

        .header .main-header .cart-dropdown .cart-dropdown-menu .dropdown-body .cart-item .cart-item-content {
            flex: 1;
        }

            .header .main-header .cart-dropdown .cart-dropdown-menu .dropdown-body .cart-item .cart-item-content .cart-item-title {
                font-size: 14px;
                margin: 0 0 4px;
                color: var(--heading-color);
                font-weight: 500;
            }

            .header .main-header .cart-dropdown .cart-dropdown-menu .dropdown-body .cart-item .cart-item-content .cart-item-meta {
                font-size: 13px;
                color: color-mix(in srgb, var(--default-color), transparent 40%);
            }

        .header .main-header .cart-dropdown .cart-dropdown-menu .dropdown-body .cart-item .cart-item-remove {
            background: none;
            border: none;
            color: color-mix(in srgb, var(--default-color), transparent 50%);
            font-size: 18px;
            padding: 0;
            margin-left: 8px;
            cursor: pointer;
            transition: color 0.2s ease;
        }

            .header .main-header .cart-dropdown .cart-dropdown-menu .dropdown-body .cart-item .cart-item-remove:hover {
                color: #dc3545;
            }

.header .main-header .cart-dropdown .cart-dropdown-menu .dropdown-footer {
    padding: 1rem;
    background-color: color-mix(in srgb, var(--default-color), transparent 97%);
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

    .header .main-header .cart-dropdown .cart-dropdown-menu .dropdown-footer .cart-total {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 1rem;
        font-weight: 500;
        color: var(--heading-color);
    }

        .header .main-header .cart-dropdown .cart-dropdown-menu .dropdown-footer .cart-total .cart-total-price {
            font-size: 16px;
            color: #74676f;
        }

    .header .main-header .cart-dropdown .cart-dropdown-menu .dropdown-footer .cart-actions {
        display: flex;
        gap: 8px;
    }

        .header .main-header .cart-dropdown .cart-dropdown-menu .dropdown-footer .cart-actions .btn {
            flex: 1;
            font-size: 14px;
            padding: 0.5rem 1rem;
            background-color: #74676f;
            border-color: #74676f;
            color: var(--contrast-color);
            transition: 0.3s;
            border-radius: 50px;
        }

        .header .main-header .cart-dropdown .cart-dropdown-menu .dropdown-footer .cart-actions .btn-outline-primary {
            border-color: #74676f;
            background-color: transparent;
            color: #74676f;
        }

            .header .main-header .cart-dropdown .cart-dropdown-menu .dropdown-footer .cart-actions .btn-outline-primary:hover {
                background-color: #74676f;
                color: var(--contrast-color);
            }

.header .search-form {
    margin: 0;
}

    .header .search-form .input-group {
        position: relative;
        background-color: var(--surface-color);
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
        transition: all 0.3s ease;
    }

        .header .search-form .input-group:focus-within {
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.12);
        }

        .header .search-form .input-group .form-control {
            border: 2px solid color-mix(in srgb, var(--default-color), transparent 85%);
            border-right: none;
            padding: 14px 20px;
            font-size: 15px;
            background-color: transparent;
            color: var(--default-color);
            border-radius: 8px 0 0 8px;
        }

            .header .search-form .input-group .form-control::placeholder {
                color: color-mix(in srgb, var(--default-color), transparent 50%);
                font-size: 15px;
            }

            .header .search-form .input-group .form-control:focus {
                box-shadow: none;
                border-color: #74676f;
            }

        .header .search-form .input-group .search-btn {
            background-color: #74676f;
            color: var(--contrast-color);
            padding: 0 25px;
            border: 2px solid #74676f;
            transition: all 0.3s ease;
            border-radius: 0 8px 8px 0;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

            .header .search-form .input-group .search-btn::before {
                content: "";
                position: absolute;
                top: 0;
                left: 0;
                width: 0;
                height: 100%;
                background-color: color-mix(in srgb, #74676f, transparent 20%);
                transition: width 0.3s ease;
                z-index: -1;
            }

            .header .search-form .input-group .search-btn:hover::before {
                width: 100%;
            }

            .header .search-form .input-group .search-btn i {
                font-size: 18px;
                position: relative;
            }

.header .header-nav {
    background-color: var(--background-color);
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    padding: 10px 0;
}

.header .announcement-bar {
    background-color: #74676f;
    color: var(--contrast-color);
    text-align: center;
    font-weight: 500;
    font-size: 14px;
}

    .header .announcement-bar .announcement-slider {
        height: 24px;
        overflow: hidden;
    }

        .header .announcement-bar .announcement-slider .swiper-wrapper {
            height: auto !important;
        }

        .header .announcement-bar .announcement-slider .swiper-slide {
            text-align: center;
            height: 24px;
            line-height: 24px;
        }

.header #mobileSearch {
    background-color: color-mix(in srgb, var(--default-color), transparent 96%);
    z-index: 1000;
}

    .header #mobileSearch .search-form {
        padding: 10px 0;
    }

@media (max-width: 991.98px) {
    .header .main-header .header-actions {
        gap: 0.5rem;
    }

        .header .main-header .header-actions .header-action-btn {
            padding: 0.25rem;
        }

            .header .main-header .header-actions .header-action-btn i {
                font-size: 20px;
                margin-right: 0;
            }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
@media (min-width: 1200px) {
    .navmenu {
        padding: 0;
    }

        .navmenu ul {
            margin: 0;
            padding: 0;
            display: flex;
            list-style: none;
            align-items: center;
        }

        .navmenu li {
            position: relative;
        }

        .navmenu > ul > li {
            white-space: nowrap;
            padding: 15px 14px;
        }

            .navmenu > ul > li:last-child {
                padding-right: 0;
            }

        .navmenu a,
        .navmenu a:focus {
            color: var(--nav-color);
            font-size: 15px;
            padding: 0 2px;
            font-family: var(--nav-font);
            font-weight: 400;
            display: flex;
            align-items: center;
            justify-content: space-between;
            white-space: nowrap;
            transition: 0.3s;
            position: relative;
        }

            .navmenu a i,
            .navmenu a:focus i {
                font-size: 12px;
                line-height: 0;
                margin-left: 5px;
                transition: 0.3s;
            }

        .navmenu > ul > li > a:before {
            content: "";
            position: absolute;
            width: 100%;
            height: 2px;
            bottom: -6px;
            left: 0;
            background-color: #74676f;
            visibility: hidden;
            width: 0px;
            transition: all 0.3s ease-in-out 0s;
        }

        .navmenu a:hover:before,
        .navmenu li:hover > a:before,
        .navmenu .active:before {
            visibility: visible;
            width: 100%;
        }

        .navmenu li:hover > a,
        .navmenu .active,
        .navmenu .active:focus {
            color: #74676f;
        }

        .navmenu .dropdown ul {
            margin: 0;
            padding: 10px 0;
            background: var(--nav-dropdown-background-color);
            display: block;
            position: absolute;
            visibility: hidden;
            left: 14px;
            top: 130%;
            opacity: 0;
            transition: 0.3s;
            border-radius: 4px;
            z-index: 99;
            box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
        }

            .navmenu .dropdown ul li {
                min-width: 200px;
            }

            .navmenu .dropdown ul a {
                padding: 10px 20px;
                font-size: 15px;
                text-transform: none;
                color: var(--nav-dropdown-color);
            }

                .navmenu .dropdown ul a i {
                    font-size: 12px;
                }

                .navmenu .dropdown ul a:hover,
                .navmenu .dropdown ul .active:hover,
                .navmenu .dropdown ul li:hover > a {
                    color: var(--nav-dropdown-hover-color);
                }

        .navmenu .dropdown:hover > ul {
            opacity: 1;
            top: 100%;
            visibility: visible;
        }

        .navmenu .dropdown .dropdown ul {
            top: 0;
            left: -90%;
            visibility: hidden;
        }

        .navmenu .dropdown .dropdown:hover > ul {
            opacity: 1;
            top: 0;
            left: -100%;
            visibility: visible;
        }
}

/* Mobile Navigation */
@media (max-width: 1199px) {
    .mobile-nav-toggle {
        color: var(--nav-color);
        font-size: 28px;
        line-height: 0;
        margin-right: 10px;
        cursor: pointer;
        transition: color 0.3s;
    }

    .navmenu {
        padding: 0;
        z-index: 9997;
    }

        .navmenu ul {
            display: none;
            list-style: none;
            position: absolute;
            inset: 60px 20px 20px 20px;
            padding: 10px 0;
            margin: 0;
            border-radius: 6px;
            background-color: var(--nav-mobile-background-color);
            border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
            box-shadow: none;
            overflow-y: auto;
            transition: 0.3s;
            z-index: 9998;
        }

        .navmenu a,
        .navmenu a:focus {
            color: var(--nav-dropdown-color);
            padding: 10px 20px;
            font-family: var(--nav-font);
            font-size: 17px;
            font-weight: 500;
            display: flex;
            align-items: center;
            justify-content: space-between;
            white-space: nowrap;
            transition: 0.3s;
        }

            .navmenu a i,
            .navmenu a:focus i {
                font-size: 12px;
                line-height: 0;
                margin-left: 5px;
                width: 30px;
                height: 30px;
                display: flex;
                align-items: center;
                justify-content: center;
                border-radius: 50%;
                transition: 0.3s;
                background-color: color-mix(in srgb, #74676f, transparent 90%);
            }

                .navmenu a i:hover,
                .navmenu a:focus i:hover {
                    background-color: #74676f;
                    color: var(--contrast-color);
                }

            .navmenu a:hover,
            .navmenu .active,
            .navmenu .active:focus {
                color: var(--nav-dropdown-hover-color);
            }

                .navmenu .active i,
                .navmenu .active:focus i {
                    background-color: #74676f;
                    color: var(--contrast-color);
                    transform: rotate(180deg);
                }

        .navmenu .dropdown ul {
            position: static;
            display: none;
            z-index: 99;
            padding: 10px 0;
            margin: 10px 20px;
            background-color: var(--nav-dropdown-background-color);
            transition: all 0.5s ease-in-out;
        }

            .navmenu .dropdown ul ul {
                background-color: rgba(33, 37, 41, 0.1);
            }

        .navmenu .dropdown > .dropdown-active {
            display: block;
            background-color: rgba(33, 37, 41, 0.03);
        }

    .mobile-nav-active {
        overflow: hidden;
    }

        .mobile-nav-active .mobile-nav-toggle {
            color: #fff;
            position: absolute;
            font-size: 32px;
            top: 15px;
            right: 15px;
            margin-right: 0;
            z-index: 9999;
        }

        .mobile-nav-active .navmenu {
            position: fixed;
            overflow: hidden;
            inset: 0;
            background: rgba(33, 37, 41, 0.8);
            transition: 0.3s;
        }

            .mobile-nav-active .navmenu > ul {
                display: block;
            }
}

/* Products Mega Menu 1 - Desktop */
@media (min-width: 1200px) {
    .navmenu .products-megamenu-1 {
        position: static;
        /*  Hide Desktop Mega Menu 1 in Desktop */
        /* Bootstrap Tabs Navigation */
        /* Tab Content */
    }

        .navmenu .products-megamenu-1 .mobile-megamenu {
            display: none;
        }

        .navmenu .products-megamenu-1 .desktop-megamenu,
        .navmenu .products-megamenu-1 .active,
        .navmenu .products-megamenu-1 .active:focus {
            background-color: var(--nav-dropdown-background-color);
        }

        .navmenu .products-megamenu-1 .desktop-megamenu {
            box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.1);
            position: absolute;
            top: 130%;
            left: 0;
            right: 0;
            visibility: hidden;
            opacity: 0;
            transition: 0.3s;
            border-radius: 6px;
            z-index: 99;
            padding: 20px;
            display: flex;
            flex-direction: column;
            max-height: 80vh;
            overflow: hidden;
        }

        .navmenu .products-megamenu-1:hover > .desktop-megamenu {
            opacity: 1;
            top: 100%;
            visibility: visible;
        }

        .navmenu .products-megamenu-1 .megamenu-tabs {
            margin-bottom: 15px;
        }

            .navmenu .products-megamenu-1 .megamenu-tabs .nav-tabs {
                border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
            }

                .navmenu .products-megamenu-1 .megamenu-tabs .nav-tabs .nav-item {
                    margin-bottom: 0;
                }

                .navmenu .products-megamenu-1 .megamenu-tabs .nav-tabs .nav-link {
                    border: none;
                    padding: 10px 20px;
                    color: var(--nav-dropdown-color);
                    font-weight: 500;
                    font-size: 15px;
                    transition: 0.3s;
                    background-color: transparent;
                    border-bottom: 2px solid transparent;
                }

                    .navmenu .products-megamenu-1 .megamenu-tabs .nav-tabs .nav-link:hover {
                        color: var(--nav-dropdown-hover-color);
                        border-color: transparent;
                    }

                    .navmenu .products-megamenu-1 .megamenu-tabs .nav-tabs .nav-link.active {
                        color: #74676f;
                        background-color: transparent;
                        border-bottom: 2px solid #74676f;
                    }

        .navmenu .products-megamenu-1 .megamenu-content {
            flex: 1;
            overflow-y: auto;
            padding-right: 5px;
            /* Hide scrollbar for Chrome, Safari and Opera */
            /* Category Grid */
            /* Product Grid */
        }

            .navmenu .products-megamenu-1 .megamenu-content::-webkit-scrollbar {
                width: 5px;
            }

            .navmenu .products-megamenu-1 .megamenu-content::-webkit-scrollbar-track {
                background: color-mix(in srgb, var(--default-color), transparent 95%);
                border-radius: 10px;
            }

            .navmenu .products-megamenu-1 .megamenu-content::-webkit-scrollbar-thumb {
                background: color-mix(in srgb, var(--default-color), transparent 80%);
                border-radius: 10px;
            }

            .navmenu .products-megamenu-1 .megamenu-content .tab-content {
                display: none;
            }

                .navmenu .products-megamenu-1 .megamenu-content .tab-content.active {
                    display: block;
                }

            .navmenu .products-megamenu-1 .megamenu-content .category-grid {
                display: grid;
                grid-template-columns: repeat(4, 1fr);
                gap: 25px;
            }

                .navmenu .products-megamenu-1 .megamenu-content .category-grid .category-column {
                    background-color: color-mix(in srgb, var(--surface-color), #74676f 3%);
                    border-radius: 8px;
                    padding: 15px;
                    transition: 0.3s;
                }

                    .navmenu .products-megamenu-1 .megamenu-content .category-grid .category-column h4 {
                        color: var(--heading-color);
                        font-size: 16px;
                        margin-bottom: 15px;
                        font-weight: 600;
                        padding-bottom: 10px;
                        border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
                        position: relative;
                    }

                        .navmenu .products-megamenu-1 .megamenu-content .category-grid .category-column h4:after {
                            content: "";
                            position: absolute;
                            bottom: -1px;
                            left: 0;
                            width: 40px;
                            height: 2px;
                            background-color: #74676f;
                        }

                    .navmenu .products-megamenu-1 .megamenu-content .category-grid .category-column ul {
                        list-style: none;
                        padding: 0;
                        margin: 0;
                        display: flex;
                        flex-direction: column;
                    }

                        .navmenu .products-megamenu-1 .megamenu-content .category-grid .category-column ul li {
                            margin-bottom: 10px;
                            background-color: none !important;
                            position: relative;
                            display: flex;
                            align-items: center;
                            justify-content: start !important;
                            width: 100%;
                        }

                            .navmenu .products-megamenu-1 .megamenu-content .category-grid .category-column ul li:last-child {
                                margin-bottom: 0;
                            }

                            .navmenu .products-megamenu-1 .megamenu-content .category-grid .category-column ul li a {
                                color: var(--nav-dropdown-color);
                                font-size: 14px;
                                transition: 0.3s;
                                padding: 0 0 0 20px;
                                display: block;
                                position: relative;
                            }

                                .navmenu .products-megamenu-1 .megamenu-content .category-grid .category-column ul li a:before {
                                    content: "\f285";
                                    font-family: "bootstrap-icons";
                                    position: absolute;
                                    left: 0;
                                    top: 2px;
                                    font-size: 12px;
                                    color: #74676f;
                                    opacity: 0.7;
                                }

                                .navmenu .products-megamenu-1 .megamenu-content .category-grid .category-column ul li a:hover {
                                    color: var(--nav-dropdown-hover-color);
                                    transform: translateX(3px);
                                }

                                    .navmenu .products-megamenu-1 .megamenu-content .category-grid .category-column ul li a:hover:before {
                                        opacity: 1;
                                    }

                    .navmenu .products-megamenu-1 .megamenu-content .category-grid .category-column .active {
                        background-color: none;
                    }

            .navmenu .products-megamenu-1 .megamenu-content .product-grid {
                display: grid;
                grid-template-columns: repeat(4, 1fr);
                gap: 20px;
                padding-top: 10px;
            }

                .navmenu .products-megamenu-1 .megamenu-content .product-grid .product-card {
                    background-color: var(--surface-color);
                    overflow: hidden;
                }

                    .navmenu .products-megamenu-1 .megamenu-content .product-grid .product-card:hover .product-image img {
                        transform: scale(1.1);
                    }

                    .navmenu .products-megamenu-1 .megamenu-content .product-grid .product-card .product-image {
                        height: 160px;
                        position: relative;
                        overflow: hidden;
                    }

                        .navmenu .products-megamenu-1 .megamenu-content .product-grid .product-card .product-image img {
                            width: 100%;
                            height: 100%;
                            object-fit: cover;
                            transition: 0.5s;
                        }

                        .navmenu .products-megamenu-1 .megamenu-content .product-grid .product-card .product-image .badge-new,
                        .navmenu .products-megamenu-1 .megamenu-content .product-grid .product-card .product-image .badge-sale {
                            position: absolute;
                            top: 10px;
                            right: 10px;
                            padding: 3px 8px;
                            font-size: 11px;
                            font-weight: 600;
                            border-radius: 3px;
                            z-index: 1;
                        }

                        .navmenu .products-megamenu-1 .megamenu-content .product-grid .product-card .product-image .badge-new {
                            background-color: #28a745;
                            color: white;
                        }

                        .navmenu .products-megamenu-1 .megamenu-content .product-grid .product-card .product-image .badge-sale {
                            background-color: #dc3545;
                            color: white;
                        }

                    .navmenu .products-megamenu-1 .megamenu-content .product-grid .product-card .product-info {
                        padding: 15px;
                    }

                        .navmenu .products-megamenu-1 .megamenu-content .product-grid .product-card .product-info h5 {
                            margin: 0 0 5px;
                            font-size: 15px;
                            font-weight: 600;
                            color: var(--heading-color);
                        }

                        .navmenu .products-megamenu-1 .megamenu-content .product-grid .product-card .product-info .price {
                            color: #74676f;
                            font-weight: 600;
                            margin-bottom: 10px;
                            font-size: 14px;
                        }

                            .navmenu .products-megamenu-1 .megamenu-content .product-grid .product-card .product-info .price .original-price {
                                text-decoration: line-through;
                                color: color-mix(in srgb, var(--default-color), transparent 40%);
                                margin-right: 5px;
                                font-weight: normal;
                            }

                        .navmenu .products-megamenu-1 .megamenu-content .product-grid .product-card .product-info .btn-view {
                            display: inline-block;
                            padding: 5px 12px;
                            background-color: color-mix(in srgb, #74676f, transparent 85%);
                            color: #74676f;
                            border-radius: 4px;
                            font-size: 12px;
                            font-weight: 500;
                            transition: 0.3s;
                        }

                            .navmenu .products-megamenu-1 .megamenu-content .product-grid .product-card .product-info .btn-view:hover {
                                background-color: #74676f;
                                color: var(--contrast-color);
                            }
}

/* Products Mega Menu 1 - Mobile */
@media (max-width: 1199px) {
    .navmenu .products-megamenu-1 {
        /* Hide Desktop Mega Menu 1 in Mobile */
    }

        .navmenu .products-megamenu-1 .desktop-megamenu {
            display: none;
        }

        .navmenu .products-megamenu-1 .mobile-megamenu {
            position: static;
            display: none;
            z-index: 99;
            padding: 0;
            margin: 10px 20px;
            background-color: var(--nav-dropdown-background-color);
            border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
            box-shadow: none;
            transition: all 0.5s ease-in-out;
            border-radius: 4px;
            overflow: hidden;
        }

            .navmenu .products-megamenu-1 .mobile-megamenu li {
                position: relative;
                border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
            }

                .navmenu .products-megamenu-1 .mobile-megamenu li:last-child {
                    border-bottom: none;
                }

                .navmenu .products-megamenu-1 .mobile-megamenu li a {
                    padding: 12px 15px;
                    display: flex;
                    align-items: center;
                    justify-content: space-between;
                    color: var(--nav-dropdown-color);
                    font-size: 15px;
                    transition: 0.3s;
                }

                    .navmenu .products-megamenu-1 .mobile-megamenu li a:hover {
                        color: var(--nav-dropdown-hover-color);
                        background-color: color-mix(in srgb, var(--default-color), transparent 97%);
                    }

                .navmenu .products-megamenu-1 .mobile-megamenu li ul {
                    padding: 0;
                }

            .navmenu .products-megamenu-1 .mobile-megamenu.dropdown-active {
                display: block;
            }
}

/* Products Mega Menu 2 - Desktop */
@media (min-width: 1200px) {
    .navmenu .products-megamenu-2 {
        position: static;
        /* Hide Mobile Mega Menu in Desktop */
        /* Tabs Navigation */
        /* Tab Content */
    }

        .navmenu .products-megamenu-2 .mobile-megamenu {
            display: none;
        }

        .navmenu .products-megamenu-2 .desktop-megamenu,
        .navmenu .products-megamenu-2 .active,
        .navmenu .products-megamenu-2 .active:focus {
            background-color: var(--nav-dropdown-background-color);
        }

        .navmenu .products-megamenu-2 .desktop-megamenu {
            box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.1);
            position: absolute;
            top: 130%;
            left: 0;
            right: 0;
            visibility: hidden;
            opacity: 0;
            transition: 0.3s;
            border-radius: 6px;
            z-index: 99;
            padding: 10px 0 0 0;
            display: flex;
            flex-direction: column;
            max-height: 80vh;
            overflow: hidden;
        }

        .navmenu .products-megamenu-2:hover > .desktop-megamenu {
            opacity: 1;
            top: 100%;
            visibility: visible;
        }

        .navmenu .products-megamenu-2 .megamenu-tabs {
            padding: 0;
            border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
        }

            .navmenu .products-megamenu-2 .megamenu-tabs .nav-tabs {
                border-bottom: none;
                display: flex;
                justify-content: center;
            }

                .navmenu .products-megamenu-2 .megamenu-tabs .nav-tabs .nav-item {
                    margin: 0;
                }

                .navmenu .products-megamenu-2 .megamenu-tabs .nav-tabs .nav-link {
                    border: none;
                    padding: 15px 30px;
                    color: var(--nav-dropdown-color);
                    font-weight: 600;
                    font-size: 14px;
                    transition: 0.3s;
                    background-color: transparent;
                    border-bottom: 2px solid transparent;
                    letter-spacing: 0.5px;
                }

                    .navmenu .products-megamenu-2 .megamenu-tabs .nav-tabs .nav-link:hover {
                        color: var(--nav-dropdown-hover-color);
                    }

                    .navmenu .products-megamenu-2 .megamenu-tabs .nav-tabs .nav-link.active {
                        color: #74676f;
                        background-color: transparent;
                        border-bottom: 2px solid #74676f;
                    }

        .navmenu .products-megamenu-2 .megamenu-content {
            flex: 1;
            overflow-y: auto;
            /* Hide scrollbar for Chrome, Safari and Opera */
            /* Category Layout */
            /* Categories Section */
            /* Featured Section */
        }

            .navmenu .products-megamenu-2 .megamenu-content::-webkit-scrollbar {
                width: 5px;
            }

            .navmenu .products-megamenu-2 .megamenu-content::-webkit-scrollbar-track {
                background: color-mix(in srgb, var(--default-color), transparent 95%);
                border-radius: 10px;
            }

            .navmenu .products-megamenu-2 .megamenu-content::-webkit-scrollbar-thumb {
                background: color-mix(in srgb, var(--default-color), transparent 80%);
                border-radius: 10px;
            }

            .navmenu .products-megamenu-2 .megamenu-content .tab-pane {
                padding: 25px;
            }

            .navmenu .products-megamenu-2 .megamenu-content .category-layout {
                display: flex;
                gap: 30px;
            }

            .navmenu .products-megamenu-2 .megamenu-content .categories-section {
                flex: 1;
                /* Category Headers */
                /* Category Links */
            }

                .navmenu .products-megamenu-2 .megamenu-content .categories-section .category-headers {
                    display: grid;
                    grid-template-columns: repeat(4, 1fr);
                    gap: 30px;
                    margin-bottom: 15px;
                }

                    .navmenu .products-megamenu-2 .megamenu-content .categories-section .category-headers h4 {
                        color: var(--heading-color);
                        font-size: 16px;
                        font-weight: 600;
                        position: relative;
                        margin: 0;
                        padding-bottom: 10px;
                        border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
                    }

                .navmenu .products-megamenu-2 .megamenu-content .categories-section .category-links {
                    display: flex;
                    flex-direction: column;
                    gap: 12px;
                }

                    .navmenu .products-megamenu-2 .megamenu-content .categories-section .category-links .link-row {
                        display: grid;
                        grid-template-columns: repeat(4, 1fr);
                        gap: 30px;
                    }

                        .navmenu .products-megamenu-2 .megamenu-content .categories-section .category-links .link-row a {
                            color: var(--nav-dropdown-color);
                            font-size: 14px;
                            transition: 0.3s;
                            display: block;
                            white-space: nowrap;
                            overflow: hidden;
                            text-overflow: ellipsis;
                            padding: 0;
                        }

                            .navmenu .products-megamenu-2 .megamenu-content .categories-section .category-links .link-row a:hover {
                                color: var(--nav-dropdown-hover-color);
                                transform: translateX(3px);
                            }

            .navmenu .products-megamenu-2 .megamenu-content .featured-section {
                width: 300px;
            }

                .navmenu .products-megamenu-2 .megamenu-content .featured-section .featured-image {
                    position: relative;
                    height: 100%;
                    background-color: #f5f5f5;
                    border-radius: 6px;
                    overflow: hidden;
                }

                    .navmenu .products-megamenu-2 .megamenu-content .featured-section .featured-image img {
                        width: 100%;
                        height: 100%;
                        object-fit: cover;
                        opacity: 0.9;
                    }

                    .navmenu .products-megamenu-2 .megamenu-content .featured-section .featured-image .featured-content {
                        position: absolute;
                        top: 0;
                        left: 0;
                        width: 100%;
                        height: 100%;
                        display: flex;
                        flex-direction: column;
                        justify-content: center;
                        padding: 30px;
                    }

                        .navmenu .products-megamenu-2 .megamenu-content .featured-section .featured-image .featured-content h3 {
                            color: var(--heading-color);
                            font-size: 28px;
                            font-weight: 700;
                            margin-bottom: 20px;
                            line-height: 1.2;
                        }

                        .navmenu .products-megamenu-2 .megamenu-content .featured-section .featured-image .featured-content .btn-shop {
                            display: inline-block;
                            padding: 8px 20px;
                            background-color: #74676f;
                            color: var(--contrast-color);
                            border-radius: 4px;
                            font-size: 14px;
                            font-weight: 500;
                            transition: 0.3s;
                            width: fit-content;
                        }

                            .navmenu .products-megamenu-2 .megamenu-content .featured-section .featured-image .featured-content .btn-shop:hover {
                                background-color: color-mix(in srgb, #74676f, black 15%);
                                transform: translateY(-2px);
                            }
}

/* Products Mega Menu 2 - Mobile */
@media (max-width: 1199px) {
    .navmenu .products-megamenu-2 {
        /* Hide Desktop Mega Menu in Mobile */
    }

        .navmenu .products-megamenu-2 .desktop-megamenu {
            display: none;
        }

        .navmenu .products-megamenu-2 .mobile-megamenu {
            position: static;
            display: none;
            z-index: 99;
            padding: 0;
            margin: 10px 20px;
            background-color: var(--nav-dropdown-background-color);
            border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
            box-shadow: none;
            transition: all 0.5s ease-in-out;
            border-radius: 4px;
            overflow: hidden;
        }

            .navmenu .products-megamenu-2 .mobile-megamenu li {
                position: relative;
                border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
            }

                .navmenu .products-megamenu-2 .mobile-megamenu li:last-child {
                    border-bottom: none;
                }

                .navmenu .products-megamenu-2 .mobile-megamenu li a {
                    padding: 12px 15px;
                    display: flex;
                    align-items: center;
                    justify-content: space-between;
                    color: var(--nav-dropdown-color);
                    font-size: 15px;
                    transition: 0.3s;
                }

                    .navmenu .products-megamenu-2 .mobile-megamenu li a:hover {
                        color: var(--nav-dropdown-hover-color);
                        background-color: color-mix(in srgb, var(--default-color), transparent 97%);
                    }

                .navmenu .products-megamenu-2 .mobile-megamenu li ul {
                    padding: 0;
                }

            .navmenu .products-megamenu-2 .mobile-megamenu.dropdown-active {
                display: block;
            }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
    color: var(--default-color);
    background-color: var(--background-color);
    font-size: 14px;
    position: relative;
}

    .footer .footer-main {
        padding: 70px 0 40px;
        border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
        border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
    }

        .footer .footer-main .footer-widget {
            margin-bottom: 30px;
        }

            .footer .footer-main .footer-widget .logo {
                display: inline-block;
                margin-bottom: 20px;
            }

                .footer .footer-main .footer-widget .logo span {
                    color: var(--heading-color);
                    font-size: 28px;
                    font-weight: 700;
                    letter-spacing: 0.5px;
                    font-family: var(--heading-font);
                }

            .footer .footer-main .footer-widget p {
                margin-bottom: 20px;
                line-height: 1.7;
                color: color-mix(in srgb, var(--default-color), transparent 20%);
            }

            .footer .footer-main .footer-widget h4 {
                font-size: 18px;
                font-weight: 600;
                margin-bottom: 25px;
                position: relative;
                padding-bottom: 12px;
            }

                .footer .footer-main .footer-widget h4:after {
                    content: "";
                    position: absolute;
                    width: 40px;
                    height: 3px;
                    background-color: #74676f;
                    bottom: 0;
                    left: 0;
                }

            .footer .footer-main .footer-widget h5 {
                color: color-mix(in srgb, var(--default-color), transparent 20%);
                font-size: 16px;
                font-weight: 500;
                margin-bottom: 15px;
            }

        .footer .footer-main .footer-contact .contact-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 15px;
        }

            .footer .footer-main .footer-contact .contact-item i {
                color: #74676f;
                font-size: 18px;
                margin-right: 12px;
                margin-top: 3px;
            }

            .footer .footer-main .footer-contact .contact-item span {
                color: color-mix(in srgb, var(--default-color), transparent 30%);
                line-height: 1.5;
            }

        .footer .footer-main .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }

            .footer .footer-main .footer-links li {
                margin-bottom: 12px;
                position: relative;
                padding-left: 15px;
            }

                .footer .footer-main .footer-links li:before {
                    content: "→";
                    position: absolute;
                    left: 0;
                    top: 0;
                    color: #74676f;
                    font-size: 14px;
                    transition: all 0.3s ease;
                }

            .footer .footer-main .footer-links a {
                color: color-mix(in srgb, var(--default-color), transparent 30%);
                transition: all 0.3s ease;
            }

                .footer .footer-main .footer-links a:hover {
                    color: #74676f;
                }

        .footer .footer-main .app-buttons {
            display: flex;
            gap: 10px;
            margin-top: 15px;
        }

            .footer .footer-main .app-buttons .app-btn {
                display: flex;
                align-items: center;
                background-color: color-mix(in srgb, var(--default-color), transparent 90%);
                color: var(--default-color);
                padding: 10px 15px;
                border-radius: 8px;
                transition: all 0.3s ease;
            }

                .footer .footer-main .app-buttons .app-btn i {
                    font-size: 20px;
                    margin-right: 8px;
                }

                .footer .footer-main .app-buttons .app-btn span {
                    font-size: 13px;
                    font-weight: 500;
                }

                .footer .footer-main .app-buttons .app-btn:hover {
                    background-color: #74676f;
                    color: var(--contrast-color);
                    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
                }

        .footer .footer-main .social-links {
            margin-top: 25px;
        }

            .footer .footer-main .social-links h5 {
                margin-bottom: 15px;
            }

            .footer .footer-main .social-links .social-icons {
                display: flex;
                gap: 12px;
                flex-wrap: wrap;
            }

                .footer .footer-main .social-links .social-icons a {
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    width: 38px;
                    height: 38px;
                    border-radius: 8px;
                    background-color: color-mix(in srgb, var(--default-color), transparent 90%);
                    color: var(--default-color);
                    font-size: 16px;
                    transition: all 0.3s ease;
                }

                    .footer .footer-main .social-links .social-icons a:hover {
                        background-color: #74676f;
                        color: var(--contrast-color);
                        transform: translateY(-3px);
                        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
                    }

    .footer .footer-bottom {
        padding: 25px 0;
    }

        .footer .footer-bottom .payment-methods .payment-icons {
            display: flex;
            gap: 12px;
        }

            .footer .footer-bottom .payment-methods .payment-icons i {
                font-size: 22px;
                color: color-mix(in srgb, var(--default-color), transparent 30%);
                transition: color 0.3s ease;
            }

                .footer .footer-bottom .payment-methods .payment-icons i:hover {
                    color: #74676f;
                }

        .footer .footer-bottom .copyright p {
            margin-bottom: 0;
            color: color-mix(in srgb, var(--default-color), transparent 30%);
        }

            .footer .footer-bottom .copyright p strong {
                color: color-mix(in srgb, var(--default-color), transparent 10%);
            }

        .footer .footer-bottom .credits {
            font-size: 13px;
            color: color-mix(in srgb, var(--default-color), transparent 40%);
        }

            .footer .footer-bottom .credits a {
                color: #74676f;
            }

        .footer .footer-bottom .legal-links {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
        }

            .footer .footer-bottom .legal-links a {
                color: color-mix(in srgb, var(--default-color), transparent 40%);
                font-size: 13px;
                transition: color 0.3s ease;
            }

                .footer .footer-bottom .legal-links a:hover {
                    color: #74676f;
                }

@media (max-width: 991.98px) {
    .footer .footer-main {
        padding: 60px 0 30px;
    }

    .footer .footer-widget h4 {
        margin-bottom: 20px;
    }
}

@media (max-width: 767.98px) {
    .footer .footer-main {
        padding: 50px 0 20px;
    }

        .footer .footer-main .footer-widget {
            text-align: center;
        }

            .footer .footer-main .footer-widget h4:after {
                left: 50%;
                transform: translateX(-50%);
            }

        .footer .footer-main .footer-contact .contact-item {
            justify-content: center;
        }

        .footer .footer-main .footer-links li {
            padding-left: 0;
        }

            .footer .footer-main .footer-links li:before {
                display: none;
            }

        .footer .footer-main .app-buttons {
            justify-content: center;
        }

        .footer .footer-main .social-icons {
            justify-content: center;
        }

    .footer .footer-bottom .copyright,
    .footer .footer-bottom .credits {
        text-align: center;
    }
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
    position: fixed;
    inset: 0;
    z-index: 999999;
    overflow: hidden;
    background: var(--background-color);
    transition: all 0.6s ease-out;
}

    #preloader:before {
        content: "";
        position: fixed;
        top: calc(50% - 30px);
        left: calc(50% - 30px);
        border: 6px solid #ffffff;
        border-color: #74676f transparent #74676f transparent;
        border-radius: 50%;
        width: 60px;
        height: 60px;
        animation: animate-preloader 1.5s linear infinite;
    }

@keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: -15px;
    z-index: 99999;
    background-color: #74676f;
    width: 44px;
    height: 44px;
    border-radius: 50px;
    transition: all 0.4s;
}

    .scroll-top i {
        font-size: 24px;
        color: var(--contrast-color);
        line-height: 0;
    }

    .scroll-top:hover {
        background-color: color-mix(in srgb, #74676f, transparent 20%);
        color: var(--contrast-color);
    }

    .scroll-top.active {
        visibility: visible;
        opacity: 1;
        bottom: 15px;
    }

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 20px 0;
    position: relative;
}

    .page-title h1 {
        font-size: 28px;
        font-weight: 700;
        margin: 0;
    }

    .page-title .breadcrumbs ol {
        display: flex;
        flex-wrap: wrap;
        list-style: none;
        padding: 0 0 10px 0;
        margin: 0;
        font-size: 14px;
        font-weight: 400;
    }

        .page-title .breadcrumbs ol li + li {
            padding-left: 10px;
        }

            .page-title .breadcrumbs ol li + li::before {
                content: "/";
                display: inline-block;
                padding-right: 10px;
                color: color-mix(in srgb, var(--default-color), transparent 70%);
            }

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 60px 0;
    scroll-margin-top: 90px;
    overflow: clip;
}

@media (max-width: 1199px) {

    section,
    .section {
        scroll-margin-top: 66px;
    }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
    text-align: center;
    padding-bottom: 60px;
    position: relative;
}

    .section-title h2 {
        font-size: 32px;
        font-weight: 700;
        margin-bottom: 15px;
    }

    .section-title p {
        margin-bottom: 0;
    }

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

    .hero .hero-slider {
        position: relative;
    }

        .hero .hero-slider .swiper-wrapper {
            height: auto !important;
        }

        .hero .hero-slider .swiper-slide {
            padding: 2rem 0;
        }

            .hero .hero-slider .swiper-slide .row {
                min-height: 500px;
            }

        .hero .hero-slider .swiper-pagination {
            bottom: 0;
        }

            .hero .hero-slider .swiper-pagination .swiper-pagination-bullet {
                width: 10px;
                height: 10px;
                background-color: color-mix(in srgb, #74676f, transparent 50%);
                opacity: 0.7;
                transition: all 0.3s ease;
            }

                .hero .hero-slider .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
                    width: 30px;
                    border-radius: 5px;
                    background-color: #74676f;
                    opacity: 1;
                }

        .hero .hero-slider .swiper-button-prev,
        .hero .hero-slider .swiper-button-next {
            width: 44px;
            height: 44px;
            background-color: var(--surface-color);
            border-radius: 50%;
            box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
            top: auto;
            bottom: 10px;
        }

            .hero .hero-slider .swiper-button-prev::after,
            .hero .hero-slider .swiper-button-next::after {
                font-size: 1.25rem;
                color: #74676f;
            }

            .hero .hero-slider .swiper-button-prev:hover,
            .hero .hero-slider .swiper-button-next:hover {
                background-color: #74676f;
            }

                .hero .hero-slider .swiper-button-prev:hover::after,
                .hero .hero-slider .swiper-button-next:hover::after {
                    color: var(--contrast-color);
                }

        .hero .hero-slider .swiper-button-prev {
            left: calc(50% - 60px);
        }

        .hero .hero-slider .swiper-button-next {
            right: calc(50% - 60px);
        }

    .hero .slide-content .slide-badge {
        display: inline-block;
        background-color: color-mix(in srgb, #74676f, transparent 85%);
        color: #74676f;
        font-size: 0.875rem;
        font-weight: 600;
        padding: 0.5rem 1rem;
        border-radius: 2rem;
        margin-bottom: 1.5rem;
    }

    .hero .slide-content h1 {
        font-size: 3.25rem;
        font-weight: 700;
        line-height: 1.2;
        margin-bottom: 1.5rem;
    }

        .hero .slide-content h1 span {
            color: #74676f;
            position: relative;
        }

            .hero .slide-content h1 span::after {
                content: "";
                position: absolute;
                bottom: 0.25rem;
                left: 0;
                width: 100%;
                height: 0.5rem;
                background-color: color-mix(in srgb, #74676f, transparent 85%);
                z-index: -1;
            }

    .hero .slide-content p {
        font-size: 1.125rem;
        line-height: 1.6;
        margin-bottom: 2rem;
        color: color-mix(in srgb, var(--default-color), transparent 20%);
    }

    .hero .slide-content .slide-cta {
        margin-bottom: 2rem;
    }

        .hero .slide-content .slide-cta .btn {
            padding: 0.75rem 1.5rem;
            font-weight: 600;
            border-radius: 0.375rem;
            transition: all 0.3s ease;
        }

            .hero .slide-content .slide-cta .btn.btn-shop {
                background-color: #74676f;
                color: var(--contrast-color);
                border: none;
            }

                .hero .slide-content .slide-cta .btn.btn-shop i {
                    margin-left: 0.5rem;
                    transition: transform 0.3s ease;
                }

                .hero .slide-content .slide-cta .btn.btn-shop:hover {
                    background-color: color-mix(in srgb, #74676f, #000 10%);
                }

                    .hero .slide-content .slide-cta .btn.btn-shop:hover i {
                        transform: translateX(5px);
                    }

    .hero .slide-new .product-showcase {
        padding: 1rem;
    }

        .hero .slide-new .product-showcase .product-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
        }

            .hero .slide-new .product-showcase .product-grid .product-item {
                background-color: var(--surface-color);
                border-radius: 0.75rem;
                overflow: hidden;
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
                transition: transform 0.3s ease, box-shadow 0.3s ease;
            }

                .hero .slide-new .product-showcase .product-grid .product-item:hover {
                    transform: translateY(-5px);
                    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
                }

                .hero .slide-new .product-showcase .product-grid .product-item .product-image {
                    height: 180px;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    padding: 1rem;
                }

                    .hero .slide-new .product-showcase .product-grid .product-item .product-image img {
                        max-width: 100%;
                        max-height: 100%;
                        object-fit: contain;
                    }

                .hero .slide-new .product-showcase .product-grid .product-item .product-info {
                    padding: 1rem;
                    text-align: center;
                    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
                }

                    .hero .slide-new .product-showcase .product-grid .product-item .product-info h4 {
                        font-size: 1rem;
                        font-weight: 600;
                        margin-bottom: 0.5rem;
                    }

                    .hero .slide-new .product-showcase .product-grid .product-item .product-info .price {
                        font-size: 1.125rem;
                        font-weight: 700;
                        color: #74676f;
                    }

    .hero .slide-sale .countdown-container {
        margin-top: 1.5rem;
    }

        .hero .slide-sale .countdown-container .countdown-label {
            font-size: 1rem;
            font-weight: 500;
            margin-bottom: 0.75rem;
        }

        .hero .slide-sale .countdown-container .countdown {
            display: flex;
            gap: 1rem;
        }

            .hero .slide-sale .countdown-container .countdown > div {
                background-color: var(--surface-color);
                border-radius: 0.5rem;
                padding: 0.75rem 1rem;
                min-width: 70px;
                text-align: center;
                box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            }

                .hero .slide-sale .countdown-container .countdown > div h3 {
                    font-size: 1.5rem;
                    font-weight: 700;
                    margin-bottom: 0.25rem;
                    color: #74676f;
                }

                .hero .slide-sale .countdown-container .countdown > div h4 {
                    font-size: 0.75rem;
                    font-weight: 500;
                    margin: 0;
                    color: color-mix(in srgb, var(--default-color), transparent 30%);
                }

    .hero .slide-sale .sale-showcase {
        position: relative;
        display: flex;
        justify-content: center;
    }

        .hero .slide-sale .sale-showcase .main-product {
            position: relative;
            max-width: 100%;
        }

            .hero .slide-sale .sale-showcase .main-product img {
                max-width: 100%;
                height: auto;
                border-radius: 1rem;
            }

            .hero .slide-sale .sale-showcase .main-product .discount-badge {
                position: absolute;
                top: 1rem;
                right: 1rem;
                background-color: #74676f;
                color: var(--contrast-color);
                width: 5rem;
                height: 5rem;
                border-radius: 50%;
                display: flex;
                flex-direction: column;
                justify-content: center;
                align-items: center;
                box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
            }

                .hero .slide-sale .sale-showcase .main-product .discount-badge .percent {
                    font-size: 1.75rem;
                    font-weight: 700;
                    line-height: 1;
                }

                .hero .slide-sale .sale-showcase .main-product .discount-badge .text {
                    font-size: 1rem;
                    font-weight: 600;
                }

        .hero .slide-sale .sale-showcase .floating-tag {
            position: absolute;
            bottom: 2rem;
            left: 0;
            background-color: var(--surface-color);
            border-radius: 0.75rem;
            padding: 1rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

            .hero .slide-sale .sale-showcase .floating-tag .tag-content .tag-label {
                display: block;
                font-size: 0.875rem;
                font-weight: 600;
                margin-bottom: 0.5rem;
            }

            .hero .slide-sale .sale-showcase .floating-tag .tag-content .tag-price {
                display: flex;
                align-items: center;
                gap: 0.75rem;
            }

                .hero .slide-sale .sale-showcase .floating-tag .tag-content .tag-price .old-price {
                    font-size: 1rem;
                    font-weight: 500;
                    color: color-mix(in srgb, var(--default-color), transparent 40%);
                    text-decoration: line-through;
                }

                .hero .slide-sale .sale-showcase .floating-tag .tag-content .tag-price .new-price {
                    font-size: 1.25rem;
                    font-weight: 700;
                    color: #74676f;
                }

    .hero .slide-featured .feature-list {
        margin-top: 1.5rem;
    }

        .hero .slide-featured .feature-list .feature-item {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            margin-bottom: 1rem;
        }

            .hero .slide-featured .feature-list .feature-item i {
                font-size: 1.25rem;
                color: #74676f;
            }

            .hero .slide-featured .feature-list .feature-item span {
                font-size: 1rem;
                font-weight: 500;
            }

    .hero .slide-featured .featured-showcase {
        position: relative;
        display: flex;
        justify-content: center;
    }

        .hero .slide-featured .featured-showcase .featured-image {
            position: relative;
            max-width: 100%;
        }

            .hero .slide-featured .featured-showcase .featured-image img {
                max-width: 100%;
                height: auto;
                border-radius: 1rem;
            }

            .hero .slide-featured .featured-showcase .featured-image .featured-badge {
                position: absolute;
                top: 1rem;
                left: 1rem;
                background-color: #74676f;
                color: var(--contrast-color);
                display: flex;
                align-items: center;
                gap: 0.5rem;
                padding: 0.5rem 1rem;
                border-radius: 2rem;
                font-size: 0.875rem;
                font-weight: 600;
                box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
            }

                .hero .slide-featured .featured-showcase .featured-image .featured-badge i {
                    font-size: 1rem;
                }

        .hero .slide-featured .featured-showcase .floating-review {
            position: absolute;
            bottom: 2rem;
            right: 0;
            background-color: var(--surface-color);
            border-radius: 0.75rem;
            padding: 1rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            max-width: 250px;
        }

            .hero .slide-featured .featured-showcase .floating-review .review-stars {
                display: flex;
                gap: 0.25rem;
                margin-bottom: 0.75rem;
            }

                .hero .slide-featured .featured-showcase .floating-review .review-stars i {
                    color: #FFD700;
                    font-size: 1rem;
                }

            .hero .slide-featured .featured-showcase .floating-review .review-text {
                font-size: 0.875rem;
                font-style: italic;
                margin-bottom: 0.5rem;
                line-height: 1.5;
            }

            .hero .slide-featured .featured-showcase .floating-review .review-author {
                font-size: 0.75rem;
                font-weight: 600;
                color: color-mix(in srgb, var(--default-color), transparent 30%);
            }

@media (max-width: 991.98px) {
    .hero {
        padding: 60px 0;
    }

        .hero .hero-slider .swiper-slide .row {
            min-height: auto;
        }

        .hero .hero-slider .swiper-wrapper {
            height: auto !important;
        }

        .hero .slide-content {
            text-align: center;
            margin-bottom: 3rem;
        }

            .hero .slide-content h1 {
                font-size: 2.5rem;
            }

            .hero .slide-content .slide-cta {
                justify-content: center;
            }

            .hero .slide-content .feature-list {
                display: flex;
                flex-direction: column;
                align-items: center;
            }

        .hero .slide-sale .countdown-container .countdown {
            justify-content: center;
        }
}

@media (max-width: 767.98px) {
    .hero {
        padding: 40px 0;
    }

        .hero .hero-slider .swiper-button-prev,
        .hero .hero-slider .swiper-button-next {
            width: 36px;
            height: 36px;
        }

            .hero .hero-slider .swiper-button-prev::after,
            .hero .hero-slider .swiper-button-next::after {
                font-size: 1rem;
            }

        .hero .hero-slider .swiper-button-prev {
            left: calc(50% - 50px);
        }

        .hero .hero-slider .swiper-button-next {
            right: calc(50% - 50px);
        }

        .hero .hero-slider .swiper-slide {
            height: auto;
        }

            .hero .hero-slider .swiper-slide .row {
                min-height: 0;
            }

        .hero .slide-content h1 {
            font-size: 2rem;
        }

        .hero .slide-content p {
            font-size: 1rem;
        }

        .hero .slide-new .product-showcase .product-grid {
            grid-template-columns: 1fr 1fr;
            gap: 0.75rem;
        }

            .hero .slide-new .product-showcase .product-grid .product-item .product-image {
                height: 140px;
                padding: 0.5rem;
            }

            .hero .slide-new .product-showcase .product-grid .product-item .product-info {
                padding: 0.75rem;
            }

                .hero .slide-new .product-showcase .product-grid .product-item .product-info h4 {
                    font-size: 0.875rem;
                    margin-bottom: 0.25rem;
                }

                .hero .slide-new .product-showcase .product-grid .product-item .product-info .price {
                    font-size: 1rem;
                }

        .hero .slide-sale .countdown-container {
            margin-top: 1rem;
        }

            .hero .slide-sale .countdown-container .countdown-label {
                font-size: 0.875rem;
                margin-bottom: 0.5rem;
            }

            .hero .slide-sale .countdown-container .countdown {
                flex-wrap: wrap;
                justify-content: center;
                gap: 0.5rem;
            }

                .hero .slide-sale .countdown-container .countdown > div {
                    min-width: 55px;
                    padding: 0.5rem;
                }

                    .hero .slide-sale .countdown-container .countdown > div h3 {
                        font-size: 1.25rem;
                        margin-bottom: 0.125rem;
                    }

                    .hero .slide-sale .countdown-container .countdown > div h4 {
                        font-size: 0.7rem;
                    }

        .hero .slide-sale .sale-showcase .main-product .discount-badge {
            width: 4rem;
            height: 4rem;
        }

            .hero .slide-sale .sale-showcase .main-product .discount-badge .percent {
                font-size: 1.5rem;
            }

            .hero .slide-sale .sale-showcase .main-product .discount-badge .text {
                font-size: 0.875rem;
            }

        .hero .slide-sale .sale-showcase .floating-tag {
            bottom: 1rem;
            left: 1rem;
            padding: 0.75rem;
        }

        .hero .slide-featured .featured-showcase .featured-image .featured-badge {
            padding: 0.375rem 0.75rem;
            font-size: 0.75rem;
        }

        .hero .slide-featured .featured-showcase .floating-review {
            bottom: 1rem;
            right: 1rem;
            padding: 0.75rem;
            max-width: 200px;
        }
}

/*--------------------------------------------------------------
# Promo Cards Section
--------------------------------------------------------------*/
.promo-cards {
    --default-color: #666;
    --heading-color: #333;
}

    .promo-cards .promo-card {
        position: relative;
        height: 100%;
        min-height: 400px;
        padding: 2rem;
        border-radius: 0.5rem;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        transition: transform 0.3s ease;
    }

        .promo-cards .promo-card:hover {
            transform: translateY(-5px);
        }

        .promo-cards .promo-card .promo-content {
            position: relative;
            z-index: 2;
            max-width: 80%;
        }

        .promo-cards .promo-card .small-text {
            font-size: 0.9rem;
            margin-bottom: 0.5rem;
            opacity: 0.8;
        }

        .promo-cards .promo-card .promo-title {
            font-size: 1.75rem;
            font-weight: 700;
            margin-bottom: 1rem;
            line-height: 1.2;
        }

        .promo-cards .promo-card .promo-description {
            font-size: 0.95rem;
            margin-bottom: 1.5rem;
            opacity: 0.9;
        }

        .promo-cards .promo-card .btn-shop {
            display: inline-block;
            position: relative;
            font-weight: 600;
            color: var(--heading-color);
            text-decoration: none;
            padding-bottom: 0.25rem;
            border-bottom: 2px solid var(--heading-color);
            transition: all 0.3s ease;
        }

            .promo-cards .promo-card .btn-shop:hover {
                color: #74676f;
                border-color: #74676f;
            }

        .promo-cards .promo-card .promo-image {
            position: absolute;
            bottom: 0;
            right: 0;
            max-width: 50%;
            max-height: 80%;
            display: flex;
            justify-content: flex-end;
            align-items: flex-end;
            z-index: 1;
        }

            .promo-cards .promo-card .promo-image img {
                max-height: 100%;
                object-fit: contain;
            }

        .promo-cards .promo-card.card-1 {
            background-color: #f5f2ee;
            color: var(--default-color);
        }

            .promo-cards .promo-card.card-1 .promo-title {
                color: var(--heading-color);
            }

        .promo-cards .promo-card.card-2 {
            background-color: #f0f5f0;
            color: var(--default-color);
        }

            .promo-cards .promo-card.card-2 .promo-title {
                color: var(--heading-color);
            }

        .promo-cards .promo-card.card-3 {
            background-color: #faf4ea;
            color: var(--default-color);
        }

            .promo-cards .promo-card.card-3 .promo-title {
                color: var(--heading-color);
            }

        .promo-cards .promo-card.card-4 {
            background-color: #eef5fa;
            color: var(--default-color);
        }

            .promo-cards .promo-card.card-4 .promo-title {
                color: var(--heading-color);
            }

@media (max-width: 991.98px) {
    .promo-cards .promo-card {
        min-height: 350px;
    }

        .promo-cards .promo-card .promo-content {
            max-width: 100%;
        }

        .promo-cards .promo-card .promo-image {
            max-width: 40%;
            max-height: 70%;
            opacity: 0.9;
        }
}

@media (max-width: 767.98px) {
    .promo-cards .promo-card {
        min-height: 300px;
        padding: 1.5rem;
    }

        .promo-cards .promo-card .promo-title {
            font-size: 1.5rem;
        }

        .promo-cards .promo-card .promo-image {
            max-width: 45%;
            max-height: 65%;
        }
}

/*--------------------------------------------------------------
# Category Cards Section
--------------------------------------------------------------*/
.category-cards .category-tabs {
    margin-bottom: 40px;
    position: relative;
}

    .category-cards .category-tabs .nav {
        border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
    }

    .category-cards .category-tabs .nav-link {
        color: color-mix(in srgb, var(--default-color), transparent 40%);
        font-weight: 600;
        font-size: 0.95rem;
        letter-spacing: 1px;
        padding: 0.75rem 1.5rem;
        border: none;
        background: transparent;
        position: relative;
        transition: all 0.3s ease;
    }

        .category-cards .category-tabs .nav-link:hover {
            color: var(--heading-color);
        }

        .category-cards .category-tabs .nav-link.active {
            color: var(--heading-color);
            font-weight: 700;
            background: transparent;
        }

            .category-cards .category-tabs .nav-link.active::after {
                content: "";
                position: absolute;
                bottom: -1px;
                left: 50%;
                transform: translateX(-50%);
                width: 80px;
                height: 2px;
                background-color: var(--heading-color);
            }

.category-cards .tab-content {
    padding-top: 10px;
}

.category-cards .category-card {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 20px;
    background-color: var(--surface-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

    .category-cards .category-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    }

        .category-cards .category-card:hover img {
            transform: scale(1.05);
        }

        .category-cards .category-card:hover .category-link {
            background-color: #74676f;
            color: var(--contrast-color);
        }

    .category-cards .category-card img {
        width: 100%;
        height: 350px;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

@media (max-width: 991px) {
    .category-cards .category-card img {
        height: 300px;
    }
}

@media (max-width: 767px) {
    .category-cards .category-card img {
        height: 250px;
    }
}

.category-cards .category-card .category-link {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--surface-color);
    color: var(--heading-color);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
    padding: 10px 20px;
    border-radius: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    white-space: nowrap;
}

    .category-cards .category-card .category-link i {
        margin-left: 5px;
        font-size: 0.8rem;
        transition: transform 0.3s ease;
    }

    .category-cards .category-card .category-link:hover i {
        transform: translateX(3px);
    }

@media (max-width: 767px) {
    .category-cards .category-tabs .nav-link {
        font-size: 0.85rem;
        padding: 0.5rem 1rem;
    }

    .category-cards .category-card .category-link {
        font-size: 0.8rem;
        padding: 8px 16px;
    }
}

/*--------------------------------------------------------------
# Best Sellers Section
--------------------------------------------------------------*/
.best-sellers .product-card {
    position: relative;
    background: var(--surface-color);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

    .best-sellers .product-card:hover {
        transform: translateY(-4px);
    }

        .best-sellers .product-card:hover .product-overlay {
            opacity: 1;
            visibility: visible;
        }

        .best-sellers .product-card:hover .hover-image {
            transform: scale(1);
            opacity: 1;
        }

        .best-sellers .product-card:hover .main-image {
            transform: scale(1.1);
            opacity: 0;
        }

.best-sellers .product-image {
    position: relative;
    padding-top: 125%;
    background: color-mix(in srgb, var(--surface-color), transparent 97%);
    overflow: hidden;
}

    .best-sellers .product-image img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: all 0.5s ease;
    }

    .best-sellers .product-image .main-image {
        transform: scale(1);
        opacity: 1;
    }

    .best-sellers .product-image .hover-image {
        transform: scale(1.1);
        opacity: 0;
    }

.best-sellers .product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: color-mix(in srgb, var(--background-color), transparent 75%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.best-sellers .product-actions {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

    .best-sellers .product-actions .action-btn {
        width: 3rem;
        height: 3rem;
        border-radius: 50%;
        background: var(--surface-color);
        border: none;
        color: #74676f;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
        transform: translateX(20px);
        animation: slideIn 0.3s ease forwards;
        opacity: 0;
    }

        .best-sellers .product-actions .action-btn:nth-child(2) {
            animation-delay: 0.1s;
        }

        .best-sellers .product-actions .action-btn:hover {
            background: #74676f;
            color: var(--contrast-color);
            transform: translateY(-2px);
        }

        .best-sellers .product-actions .action-btn i {
            font-size: 1.25rem;
        }

.best-sellers .product-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.35rem 0.75rem;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    z-index: 1;
}

    .best-sellers .product-badge.new {
        background: #74676f;
        color: var(--contrast-color);
    }

    .best-sellers .product-badge.sale {
        background: #ffa007;
        color: var(--contrast-color);
    }

.best-sellers .product-details {
    padding: 1.5rem;
    background: var(--surface-color);
}

.best-sellers .product-category {
    font-size: 0.875rem;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    margin-bottom: 0.5rem;
}

.best-sellers .product-title {
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

    .best-sellers .product-title a {
        color: var(--heading-color);
        text-decoration: none;
        transition: color 0.3s ease;
    }

        .best-sellers .product-title a:hover {
            color: #74676f;
        }

.best-sellers .product-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.best-sellers .product-price {
    font-weight: 600;
    font-size: 1.125rem;
    color: #74676f;
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

    .best-sellers .product-price .original-price {
        font-size: 0.875rem;
        color: color-mix(in srgb, var(--default-color), transparent 40%);
        text-decoration: line-through;
        font-weight: normal;
    }

.best-sellers .product-rating {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    color: var(--heading-color);
    font-weight: 500;
}

    .best-sellers .product-rating i {
        color: #ffc107;
        margin-right: 0.25rem;
    }

    .best-sellers .product-rating span {
        color: color-mix(in srgb, var(--default-color), transparent 40%);
        font-size: 0.875rem;
        font-weight: normal;
    }

@keyframes slideIn {
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@media (max-width: 991.98px) {
    .best-sellers .product-image {
        padding-top: 100%;
    }

    .best-sellers .product-details {
        padding: 1.25rem;
    }

    .best-sellers .product-title {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }

    .best-sellers .product-price {
        font-size: 1rem;
    }

    .best-sellers .product-actions .action-btn {
        width: 2.5rem;
        height: 2.5rem;
    }

        .best-sellers .product-actions .action-btn i {
            font-size: 1.125rem;
        }
}

/*--------------------------------------------------------------
# Product List Section
--------------------------------------------------------------*/
.product-list .product-filters ul {
    gap: 10px;
}

    .product-list .product-filters ul li {
        padding: 8px 20px;
        font-size: 14px;
        font-weight: 500;
        color: var(--default-color);
        cursor: pointer;
        border-radius: 30px;
        background-color: color-mix(in srgb, var(--default-color), transparent 95%);
        transition: all 0.3s ease;
    }

        .product-list .product-filters ul li:hover {
            color: #74676f;
            background-color: color-mix(in srgb, #74676f, transparent 90%);
        }

        .product-list .product-filters ul li.filter-active {
            color: var(--contrast-color);
            background-color: #74676f;
        }

.product-list .product-container {
    position: relative;
    min-height: 400px;
}

.product-list .product-item {
    margin-bottom: 30px;
}

.product-list .product-card {
    position: relative;
    height: 100%;
    background-color: var(--surface-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

    .product-list .product-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    }

        .product-list .product-card:hover .product-image .main-img {
            opacity: 0;
        }

        .product-list .product-card:hover .product-image .hover-img {
            opacity: 1;
        }

        .product-list .product-card:hover .product-image .product-overlay {
            opacity: 1;
            visibility: visible;
        }

.product-list .product-image {
    position: relative;
    overflow: hidden;
    padding-top: 100%;
}

    .product-list .product-image img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: all 0.5s ease;
    }

    .product-list .product-image .main-img {
        opacity: 1;
        z-index: 1;
    }

    .product-list .product-image .hover-img {
        opacity: 0;
        z-index: 2;
    }

    .product-list .product-image .badge {
        position: absolute;
        top: 15px;
        left: 15px;
        z-index: 3;
        padding: 5px 12px;
        font-size: 12px;
        font-weight: 500;
        color: var(--contrast-color);
        background-color: #74676f;
        border-radius: 30px;
    }

    .product-list .product-image .product-overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        padding: 20px;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 3;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

        .product-list .product-image .product-overlay .btn-cart {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            width: 100%;
            padding: 10px 20px;
            font-size: 14px;
            font-weight: 500;
            color: var(--contrast-color);
            background-color: #74676f;
            border-radius: 30px;
            transition: all 0.3s ease;
        }

            .product-list .product-image .product-overlay .btn-cart:hover {
                background-color: color-mix(in srgb, #74676f, #000 10%);
                transform: translateY(-2px);
            }

        .product-list .product-image .product-overlay .product-actions {
            display: flex;
            align-items: center;
            gap: 10px;
        }

            .product-list .product-image .product-overlay .product-actions .action-btn {
                display: flex;
                align-items: center;
                justify-content: center;
                width: 36px;
                height: 36px;
                color: var(--default-color);
                background-color: var(--surface-color);
                border-radius: 50%;
                transition: all 0.3s ease;
            }

                .product-list .product-image .product-overlay .product-actions .action-btn:hover {
                    color: #74676f;
                    transform: translateY(-2px);
                }

.product-list .product-info {
    padding: 20px;
}

    .product-list .product-info .product-title {
        margin-bottom: 10px;
        font-size: 16px;
        font-weight: 600;
    }

        .product-list .product-info .product-title a {
            color: var(--heading-color);
            transition: all 0.3s ease;
        }

            .product-list .product-info .product-title a:hover {
                color: #74676f;
            }

    .product-list .product-info .product-price {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 10px;
    }

        .product-list .product-info .product-price .current-price {
            font-size: 18px;
            font-weight: 700;
            color: #74676f;
        }

        .product-list .product-info .product-price .old-price {
            font-size: 14px;
            font-weight: 400;
            color: color-mix(in srgb, var(--default-color), transparent 40%);
            text-decoration: line-through;
        }

    .product-list .product-info .product-rating {
        display: flex;
        align-items: center;
        gap: 5px;
        font-size: 14px;
        color: #FFB800;
    }

        .product-list .product-info .product-rating span {
            margin-left: 5px;
            font-size: 12px;
            color: color-mix(in srgb, var(--default-color), transparent 40%);
        }

.product-list .view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 500;
    color: var(--contrast-color);
    background-color: #74676f;
    border-radius: 30px;
    transition: all 0.3s ease;
}

    .product-list .view-all-btn i {
        transition: transform 0.3s ease;
    }

    .product-list .view-all-btn:hover {
        background-color: color-mix(in srgb, #74676f, #000 10%);
    }

        .product-list .view-all-btn:hover i {
            transform: translateX(5px);
        }

@media (max-width: 991.98px) {
    .product-list .product-container .product-item {
        margin-bottom: 20px;
    }
}

@media (max-width: 767.98px) {
    .product-list .product-filters ul {
        justify-content: center;
    }

        .product-list .product-filters ul li {
            padding: 6px 15px;
            font-size: 13px;
        }

    .product-list .product-info {
        padding: 15px;
    }

        .product-list .product-info .product-title {
            font-size: 15px;
        }

        .product-list .product-info .product-price .current-price {
            font-size: 16px;
        }

        .product-list .product-info .product-price .old-price {
            font-size: 13px;
        }
}

@media (max-width: 575.98px) {
    .product-list .product-container .row {
        margin-left: -10px;
        margin-right: -10px;
    }

    .product-list .product-container .product-item {
        padding-left: 10px;
        padding-right: 10px;
        margin-bottom: 15px;
    }
}

/*--------------------------------------------------------------
# Product Details Section
--------------------------------------------------------------*/
.product-details .product-gallery {
    display: flex;
    flex-direction: column;
}

@media (min-width: 768px) {
    .product-details .product-gallery {
        flex-direction: row;
        gap: 1.5rem;
    }
}

.product-details .product-gallery .thumbnails-vertical {
    order: 2;
    margin-top: 1rem;
}

@media (min-width: 768px) {
    .product-details .product-gallery .thumbnails-vertical {
        order: 1;
        width: 80px;
        margin-top: 0;
    }
}

.product-details .product-gallery .thumbnails-vertical .thumbnails-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

@media (max-width: 767px) {
    .product-details .product-gallery .thumbnails-vertical .thumbnails-container {
        flex-direction: row;
        flex-wrap: wrap;
    }
}

.product-details .product-gallery .thumbnails-vertical .thumbnail-item {
    cursor: pointer;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid transparent;
    opacity: 0.7;
    transition: all 0.3s ease;
}

    .product-details .product-gallery .thumbnails-vertical .thumbnail-item:hover {
        opacity: 0.9;
    }

    .product-details .product-gallery .thumbnails-vertical .thumbnail-item.active {
        border-color: #74676f;
        opacity: 1;
    }

    .product-details .product-gallery .thumbnails-vertical .thumbnail-item img {
        width: 100%;
        height: auto;
        object-fit: cover;
        aspect-ratio: 1/1;
    }

.product-details .product-gallery .main-image-wrapper {
    order: 1;
    position: relative;
}

@media (min-width: 768px) {
    .product-details .product-gallery .main-image-wrapper {
        order: 2;
        flex: 1;
    }
}

.product-details .product-gallery .main-image-wrapper .image-zoom-container {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    background-color: var(--surface-color);
}

    .product-details .product-gallery .main-image-wrapper .image-zoom-container a {
        display: block;
        position: relative;
    }

        .product-details .product-gallery .main-image-wrapper .image-zoom-container a:hover .zoom-overlay {
            opacity: 1;
        }

    .product-details .product-gallery .main-image-wrapper .image-zoom-container .main-image {
        width: 100%;
        height: auto;
        object-fit: contain;
        cursor: crosshair;
    }

    .product-details .product-gallery .main-image-wrapper .image-zoom-container .drift-zoom-pane {
        background: var(--surface-color);
        border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
        border-radius: 4px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

        .product-details .product-gallery .main-image-wrapper .image-zoom-container .drift-zoom-pane.drift-opening {
            animation: drift-fadeZoomIn 180ms ease-out;
        }

        .product-details .product-gallery .main-image-wrapper .image-zoom-container .drift-zoom-pane.drift-closing {
            animation: drift-fadeZoomOut 210ms ease-in;
        }

    .product-details .product-gallery .main-image-wrapper .image-zoom-container .drift-zoom-pane-loader {
        display: none;
    }

@keyframes drift-fadeZoomIn {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes drift-fadeZoomOut {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(0.8);
        opacity: 0;
    }
}

.product-details .product-gallery .main-image-wrapper .image-zoom-container .zoom-overlay {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    background-color: var(--surface-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

    .product-details .product-gallery .main-image-wrapper .image-zoom-container .zoom-overlay i {
        color: #74676f;
        font-size: 1.25rem;
    }

.product-details .product-gallery .main-image-wrapper .image-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 0.5rem;
    pointer-events: none;
}

    .product-details .product-gallery .main-image-wrapper .image-nav .image-nav-btn {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background-color: var(--surface-color);
        border: none;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
        pointer-events: auto;
    }

        .product-details .product-gallery .main-image-wrapper .image-nav .image-nav-btn i {
            color: #74676f;
            font-size: 1.25rem;
        }

        .product-details .product-gallery .main-image-wrapper .image-nav .image-nav-btn:hover {
            background-color: #74676f;
        }

            .product-details .product-gallery .main-image-wrapper .image-nav .image-nav-btn:hover i {
                color: var(--contrast-color);
            }

.product-details .product-info-wrapper {
    height: 100%;
    padding: 0 0.5rem;
}

@media (min-width: 992px) {
    .product-details .product-info-wrapper {
        padding: 0 1rem;
        position: sticky;
        top: 100px;
    }
}

.product-details .product-info-wrapper .product-meta {
    margin-bottom: 1.5rem;
}

    .product-details .product-info-wrapper .product-meta .product-category {
        font-size: 0.875rem;
        color: color-mix(in srgb, var(--default-color), transparent 40%);
        text-transform: uppercase;
        letter-spacing: 1px;
        font-weight: 500;
    }

    .product-details .product-info-wrapper .product-meta .product-share {
        position: relative;
    }

        .product-details .product-info-wrapper .product-meta .product-share .share-btn {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background-color: var(--surface-color);
            border: none;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
        }

            .product-details .product-info-wrapper .product-meta .product-share .share-btn i {
                color: #74676f;
                font-size: 1rem;
            }

            .product-details .product-info-wrapper .product-meta .product-share .share-btn:hover {
                background-color: #74676f;
            }

                .product-details .product-info-wrapper .product-meta .product-share .share-btn:hover i {
                    color: var(--contrast-color);
                }

                .product-details .product-info-wrapper .product-meta .product-share .share-btn:hover + .share-dropdown {
                    opacity: 1;
                    visibility: visible;
                    transform: translateY(0);
                }

        .product-details .product-info-wrapper .product-meta .product-share .share-dropdown {
            position: absolute;
            top: 100%;
            right: 0;
            background-color: var(--surface-color);
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            padding: 0.75rem;
            display: flex;
            gap: 0.75rem;
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: all 0.3s ease;
            z-index: 10;
        }

            .product-details .product-info-wrapper .product-meta .product-share .share-dropdown:hover {
                opacity: 1;
                visibility: visible;
                transform: translateY(0);
            }

            .product-details .product-info-wrapper .product-meta .product-share .share-dropdown a {
                width: 32px;
                height: 32px;
                border-radius: 50%;
                background-color: color-mix(in srgb, var(--default-color), transparent 90%);
                display: flex;
                align-items: center;
                justify-content: center;
                transition: all 0.3s ease;
            }

                .product-details .product-info-wrapper .product-meta .product-share .share-dropdown a i {
                    color: var(--default-color);
                    font-size: 0.875rem;
                }

                .product-details .product-info-wrapper .product-meta .product-share .share-dropdown a:hover {
                    background-color: #74676f;
                }

                    .product-details .product-info-wrapper .product-meta .product-share .share-dropdown a:hover i {
                        color: var(--contrast-color);
                    }

    .product-details .product-info-wrapper .product-meta .product-title {
        font-size: 1.75rem;
        font-weight: 700;
        margin: 0.75rem 0;
        color: var(--heading-color);
        line-height: 1.3;
    }

@media (min-width: 768px) {
    .product-details .product-info-wrapper .product-meta .product-title {
        font-size: 2.25rem;
    }
}

.product-details .product-info-wrapper .product-meta .product-rating {
    display: flex;
    align-items: center;
    gap: 1rem;
}

    .product-details .product-info-wrapper .product-meta .product-rating .stars {
        display: flex;
        align-items: center;
    }

        .product-details .product-info-wrapper .product-meta .product-rating .stars i {
            color: #FFD700;
            font-size: 1rem;
            margin-right: 2px;
        }

        .product-details .product-info-wrapper .product-meta .product-rating .stars .rating-value {
            margin-left: 0.5rem;
            font-weight: 600;
            color: var(--heading-color);
        }

    .product-details .product-info-wrapper .product-meta .product-rating .rating-count {
        font-size: 0.875rem;
        color: color-mix(in srgb, var(--default-color), transparent 40%);
        text-decoration: none;
    }

        .product-details .product-info-wrapper .product-meta .product-rating .rating-count:hover {
            color: #74676f;
            text-decoration: underline;
        }

.product-details .product-info-wrapper .product-price-container {
    margin-bottom: 1.5rem;
    padding: 1.25rem;
    background-color: color-mix(in srgb, #74676f, transparent 95%);
    border-radius: 12px;
}

    .product-details .product-info-wrapper .product-price-container .price-wrapper {
        display: flex;
        align-items: center;
        margin-bottom: 0.5rem;
    }

        .product-details .product-info-wrapper .product-price-container .price-wrapper .current-price {
            font-size: 2rem;
            font-weight: 700;
            color: var(--heading-color);
        }

        .product-details .product-info-wrapper .product-price-container .price-wrapper .original-price {
            font-size: 1.25rem;
            text-decoration: line-through;
            color: color-mix(in srgb, var(--default-color), transparent 40%);
            margin-left: 1rem;
        }

    .product-details .product-info-wrapper .product-price-container .discount-badge {
        display: inline-block;
        background-color: #74676f;
        color: var(--contrast-color);
        font-size: 0.875rem;
        font-weight: 600;
        padding: 0.25rem 0.75rem;
        border-radius: 4px;
        margin-bottom: 0.75rem;
    }

    .product-details .product-info-wrapper .product-price-container .stock-info {
        display: flex;
        align-items: center;
    }

        .product-details .product-info-wrapper .product-price-container .stock-info i {
            color: #10b981;
            margin-right: 0.5rem;
        }

        .product-details .product-info-wrapper .product-price-container .stock-info span {
            font-weight: 500;
        }

        .product-details .product-info-wrapper .product-price-container .stock-info .stock-count {
            margin-left: 0.5rem;
            font-size: 0.875rem;
            color: color-mix(in srgb, var(--default-color), transparent 40%);
            font-weight: normal;
        }

.product-details .product-info-wrapper .product-short-description {
    margin-bottom: 2rem;
}

    .product-details .product-info-wrapper .product-short-description p {
        color: color-mix(in srgb, var(--default-color), transparent 20%);
        line-height: 1.6;
        font-size: 1rem;
    }

.product-details .product-info-wrapper .product-options {
    margin-bottom: 2rem;
}

    .product-details .product-info-wrapper .product-options .option-group {
        margin-bottom: 1.5rem;
    }

        .product-details .product-info-wrapper .product-options .option-group .option-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 0.75rem;
        }

            .product-details .product-info-wrapper .product-options .option-group .option-header .option-title {
                font-weight: 600;
                margin: 0;
            }

            .product-details .product-info-wrapper .product-options .option-group .option-header .selected-option {
                font-size: 0.875rem;
                color: color-mix(in srgb, var(--default-color), transparent 30%);
            }

        .product-details .product-info-wrapper .product-options .option-group .color-options {
            display: flex;
            gap: 1rem;
        }

            .product-details .product-info-wrapper .product-options .option-group .color-options .color-option {
                width: 36px;
                height: 36px;
                border-radius: 50%;
                cursor: pointer;
                position: relative;
                border: 2px solid transparent;
                transition: all 0.3s ease;
            }

                .product-details .product-info-wrapper .product-options .option-group .color-options .color-option:hover {
                    transform: scale(1.1);
                }

                .product-details .product-info-wrapper .product-options .option-group .color-options .color-option.active {
                    border-color: #74676f;
                }

                    .product-details .product-info-wrapper .product-options .option-group .color-options .color-option.active i {
                        opacity: 1;
                    }

                .product-details .product-info-wrapper .product-options .option-group .color-options .color-option i {
                    position: absolute;
                    top: 50%;
                    left: 50%;
                    transform: translate(-50%, -50%);
                    color: var(--contrast-color);
                    font-size: 0.875rem;
                    opacity: 0;
                }

        .product-details .product-info-wrapper .product-options .option-group .size-options {
            display: flex;
            gap: 0.75rem;
        }

            .product-details .product-info-wrapper .product-options .option-group .size-options .size-option {
                min-width: 48px;
                height: 48px;
                display: flex;
                align-items: center;
                justify-content: center;
                border-radius: 8px;
                cursor: pointer;
                background-color: var(--surface-color);
                border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
                transition: all 0.3s ease;
                font-weight: 500;
            }

                .product-details .product-info-wrapper .product-options .option-group .size-options .size-option:hover {
                    border-color: #74676f;
                    transform: translateY(-2px);
                }

                .product-details .product-info-wrapper .product-options .option-group .size-options .size-option.active {
                    background-color: #74676f;
                    color: var(--contrast-color);
                    border-color: #74676f;
                    box-shadow: 0 4px 10px color-mix(in srgb, #74676f, transparent 70%);
                }

        .product-details .product-info-wrapper .product-options .option-group .quantity-selector {
            display: flex;
            align-items: center;
            max-width: 150px;
        }

            .product-details .product-info-wrapper .product-options .option-group .quantity-selector .quantity-btn {
                width: 40px;
                height: 40px;
                display: flex;
                align-items: center;
                justify-content: center;
                background-color: var(--surface-color);
                border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
                cursor: pointer;
                transition: all 0.3s ease;
            }

                .product-details .product-info-wrapper .product-options .option-group .quantity-selector .quantity-btn:hover {
                    background-color: color-mix(in srgb, #74676f, transparent 90%);
                }

                .product-details .product-info-wrapper .product-options .option-group .quantity-selector .quantity-btn.decrease {
                    border-radius: 8px 0 0 8px;
                }

                .product-details .product-info-wrapper .product-options .option-group .quantity-selector .quantity-btn.increase {
                    border-radius: 0 8px 8px 0;
                }

            .product-details .product-info-wrapper .product-options .option-group .quantity-selector .quantity-input {
                width: 60px;
                height: 40px;
                text-align: center;
                border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
                border-left: none;
                border-right: none;
                color: var(--default-color);
                background-color: var(--surface-color);
                font-size: 14px;
            }

                .product-details .product-info-wrapper .product-options .option-group .quantity-selector .quantity-input:focus {
                    border-color: #74676f;
                    outline: none;
                }

                .product-details .product-info-wrapper .product-options .option-group .quantity-selector .quantity-input::-webkit-inner-spin-button,
                .product-details .product-info-wrapper .product-options .option-group .quantity-selector .quantity-input::-webkit-outer-spin-button {
                    -webkit-appearance: none;
                    margin: 0;
                }

.product-details .product-info-wrapper .product-actions {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

    .product-details .product-info-wrapper .product-actions .btn {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0.75rem 1.5rem;
        font-weight: 600;
        border-radius: 8px;
        transition: all 0.3s ease;
    }

        .product-details .product-info-wrapper .product-actions .btn i {
            margin-right: 0.5rem;
        }

    .product-details .product-info-wrapper .product-actions .add-to-cart-btn {
        flex: 1;
        background-color: #74676f;
        border-color: #74676f;
        color: var(--contrast-color);
    }

        .product-details .product-info-wrapper .product-actions .add-to-cart-btn:hover {
            background-color: color-mix(in srgb, #74676f, #000 10%);
            border-color: color-mix(in srgb, #74676f, #000 10%);
            transform: translateY(-2px);
            box-shadow: 0 4px 12px color-mix(in srgb, #74676f, transparent 70%);
        }

    .product-details .product-info-wrapper .product-actions .buy-now-btn {
        flex: 1;
        border-color: #74676f;
        color: #74676f;
    }

        .product-details .product-info-wrapper .product-actions .buy-now-btn:hover {
            background-color: #74676f;
            color: var(--contrast-color);
            transform: translateY(-2px);
            box-shadow: 0 4px 12px color-mix(in srgb, #74676f, transparent 70%);
        }

    .product-details .product-info-wrapper .product-actions .wishlist-btn {
        width: 48px;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .product-details .product-info-wrapper .product-actions .wishlist-btn i {
            margin-right: 0;
            font-size: 1.25rem;
        }

        .product-details .product-info-wrapper .product-actions .wishlist-btn:hover {
            color: #fff;
            border-color: #e53935;
            background-color: #e53935;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(229, 57, 53, 0.3);
        }

@media (max-width: 575px) {
    .product-details .product-info-wrapper .product-actions {
        flex-direction: column;
    }

        .product-details .product-info-wrapper .product-actions .wishlist-btn {
            width: 100%;
        }
}

.product-details .product-info-wrapper .delivery-options {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 576px) {
    .product-details .product-info-wrapper .delivery-options {
        grid-template-columns: repeat(3, 1fr);
    }
}

.product-details .product-info-wrapper .delivery-options .delivery-option {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem;
    background-color: var(--surface-color);
    border-radius: 8px;
    transition: all 0.3s ease;
}

    .product-details .product-info-wrapper .delivery-options .delivery-option:hover {
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    }

    .product-details .product-info-wrapper .delivery-options .delivery-option i {
        color: #74676f;
        font-size: 1.5rem;
        margin-top: 0.25rem;
    }

    .product-details .product-info-wrapper .delivery-options .delivery-option h6 {
        margin: 0 0 0.25rem;
        font-weight: 600;
        color: var(--heading-color);
    }

    .product-details .product-info-wrapper .delivery-options .delivery-option p {
        margin: 0;
        font-size: 0.875rem;
        color: color-mix(in srgb, var(--default-color), transparent 30%);
    }

.product-details .sticky-add-to-cart {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--surface-color);
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.05);
    padding: 1rem 0;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    z-index: 1000;
}

    .product-details .sticky-add-to-cart.visible {
        transform: translateY(0);
    }

    .product-details .sticky-add-to-cart .sticky-content {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

@media (max-width: 767px) {
    .product-details .sticky-add-to-cart .sticky-content {
        flex-direction: column;
        gap: 1rem;
    }
}

.product-details .sticky-add-to-cart .sticky-content .product-preview {
    display: flex;
    align-items: center;
    gap: 1rem;
}

    .product-details .sticky-add-to-cart .sticky-content .product-preview .product-thumbnail {
        width: 60px;
        height: 60px;
        object-fit: contain;
        border-radius: 8px;
    }

    .product-details .sticky-add-to-cart .sticky-content .product-preview .product-info .product-title {
        font-size: 1rem;
        font-weight: 600;
        margin: 0 0 0.25rem;
        color: var(--heading-color);
    }

    .product-details .sticky-add-to-cart .sticky-content .product-preview .product-info .product-price {
        font-weight: 700;
        color: #74676f;
    }

.product-details .sticky-add-to-cart .sticky-content .sticky-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

    .product-details .sticky-add-to-cart .sticky-content .sticky-actions .quantity-selector {
        display: flex;
        align-items: center;
    }

        .product-details .sticky-add-to-cart .sticky-content .sticky-actions .quantity-selector .quantity-btn {
            width: 36px;
            height: 36px;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: var(--surface-color);
            border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
            cursor: pointer;
            transition: all 0.3s ease;
        }

            .product-details .sticky-add-to-cart .sticky-content .sticky-actions .quantity-selector .quantity-btn:hover {
                background-color: color-mix(in srgb, #74676f, transparent 90%);
            }

            .product-details .sticky-add-to-cart .sticky-content .sticky-actions .quantity-selector .quantity-btn.decrease {
                border-radius: 8px 0 0 8px;
            }

            .product-details .sticky-add-to-cart .sticky-content .sticky-actions .quantity-selector .quantity-btn.increase {
                border-radius: 0 8px 8px 0;
            }

        .product-details .sticky-add-to-cart .sticky-content .sticky-actions .quantity-selector .quantity-input {
            width: 50px;
            height: 36px;
            text-align: center;
            border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
            border-left: none;
            border-right: none;
            color: var(--default-color);
            background-color: var(--surface-color);
            font-size: 14px;
        }

            .product-details .sticky-add-to-cart .sticky-content .sticky-actions .quantity-selector .quantity-input:focus {
                border-color: #74676f;
                outline: none;
            }

            .product-details .sticky-add-to-cart .sticky-content .sticky-actions .quantity-selector .quantity-input::-webkit-inner-spin-button,
            .product-details .sticky-add-to-cart .sticky-content .sticky-actions .quantity-selector .quantity-input::-webkit-outer-spin-button {
                -webkit-appearance: none;
                margin: 0;
            }

    .product-details .sticky-add-to-cart .sticky-content .sticky-actions .add-to-cart-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0.625rem 1.25rem;
        font-weight: 600;
        border-radius: 8px;
        background-color: #74676f;
        border-color: #74676f;
        color: var(--contrast-color);
        transition: all 0.3s ease;
    }

        .product-details .sticky-add-to-cart .sticky-content .sticky-actions .add-to-cart-btn i {
            margin-right: 0.5rem;
        }

        .product-details .sticky-add-to-cart .sticky-content .sticky-actions .add-to-cart-btn:hover {
            background-color: color-mix(in srgb, #74676f, #000 10%);
            border-color: color-mix(in srgb, #74676f, #000 10%);
            box-shadow: 0 4px 12px color-mix(in srgb, #74676f, transparent 70%);
        }

.product-details .product-details-accordion {
    margin-top: 3rem;
}

    .product-details .product-details-accordion .accordion-item {
        border: none;
        background-color: transparent;
        margin-bottom: 1rem;
    }

        .product-details .product-details-accordion .accordion-item:last-child {
            margin-bottom: 0;
        }

        .product-details .product-details-accordion .accordion-item .accordion-header .accordion-button {
            background-color: var(--surface-color);
            border-radius: 12px;
            padding: 1.25rem 1.5rem;
            font-weight: 700;
            font-size: 1.125rem;
            color: var(--heading-color);
            box-shadow: none;
        }

            .product-details .product-details-accordion .accordion-item .accordion-header .accordion-button:not(.collapsed) {
                color: #74676f;
                background-color: color-mix(in srgb, #74676f, transparent 95%);
                border-bottom-left-radius: 0;
                border-bottom-right-radius: 0;
            }

            .product-details .product-details-accordion .accordion-item .accordion-header .accordion-button:focus {
                box-shadow: none;
                border-color: #74676f;
            }

            .product-details .product-details-accordion .accordion-item .accordion-header .accordion-button::after {
                background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%233690e7'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
            }

        .product-details .product-details-accordion .accordion-item .accordion-collapse {
            border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
            border-top: none;
            border-bottom-left-radius: 12px;
            border-bottom-right-radius: 12px;
        }

            .product-details .product-details-accordion .accordion-item .accordion-collapse .accordion-body {
                padding: 1.5rem;
                background-color: var(--surface-color);
                border-bottom-left-radius: 12px;
                border-bottom-right-radius: 12px;
            }

                .product-details .product-details-accordion .accordion-item .accordion-collapse .accordion-body h4 {
                    color: var(--heading-color);
                    font-size: 1.25rem;
                    margin-bottom: 1rem;
                    font-weight: 600;
                }

                .product-details .product-details-accordion .accordion-item .accordion-collapse .accordion-body p {
                    color: color-mix(in srgb, var(--default-color), transparent 20%);
                    line-height: 1.6;
                    margin-bottom: 1.5rem;
                }

                .product-details .product-details-accordion .accordion-item .accordion-collapse .accordion-body .feature-list {
                    padding-left: 0;
                    list-style: none;
                    margin-bottom: 1.5rem;
                }

                    .product-details .product-details-accordion .accordion-item .accordion-collapse .accordion-body .feature-list li {
                        display: flex;
                        align-items: flex-start;
                        margin-bottom: 0.75rem;
                        color: color-mix(in srgb, var(--default-color), transparent 20%);
                    }

                        .product-details .product-details-accordion .accordion-item .accordion-collapse .accordion-body .feature-list li i {
                            color: #74676f;
                            margin-right: 0.75rem;
                            font-size: 1.125rem;
                            margin-top: 0.125rem;
                        }

                .product-details .product-details-accordion .accordion-item .accordion-collapse .accordion-body .specs-table .specs-row {
                    display: flex;
                    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
                }

                    .product-details .product-details-accordion .accordion-item .accordion-collapse .accordion-body .specs-table .specs-row:last-child {
                        border-bottom: none;
                    }

                    .product-details .product-details-accordion .accordion-item .accordion-collapse .accordion-body .specs-table .specs-row .specs-label {
                        width: 40%;
                        padding: 0.75rem 0;
                        font-weight: 600;
                        color: var(--heading-color);
                    }

                    .product-details .product-details-accordion .accordion-item .accordion-collapse .accordion-body .specs-table .specs-row .specs-value {
                        width: 60%;
                        padding: 0.75rem 0;
                        color: color-mix(in srgb, var(--default-color), transparent 20%);
                    }

    .product-details .product-details-accordion .product-reviews .reviews-summary {
        margin-bottom: 2.5rem;
    }

        .product-details .product-details-accordion .product-reviews .reviews-summary .overall-rating {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 1.5rem;
            background-color: color-mix(in srgb, #74676f, transparent 95%);
            border-radius: 12px;
            margin-bottom: 1.5rem;
        }

@media (min-width: 992px) {
    .product-details .product-details-accordion .product-reviews .reviews-summary .overall-rating {
        margin-bottom: 0;
    }
}

.product-details .product-details-accordion .product-reviews .reviews-summary .overall-rating .rating-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--heading-color);
    line-height: 1;
}

.product-details .product-details-accordion .product-reviews .reviews-summary .overall-rating .rating-stars {
    margin: 0.75rem 0;
}

    .product-details .product-details-accordion .product-reviews .reviews-summary .overall-rating .rating-stars i {
        color: #FFD700;
        font-size: 1.5rem;
        margin-right: 2px;
    }

.product-details .product-details-accordion .product-reviews .reviews-summary .overall-rating .rating-count {
    font-size: 0.875rem;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.product-details .product-details-accordion .product-reviews .reviews-summary .rating-breakdown {
    padding: 1.5rem;
    background-color: var(--surface-color);
    border-radius: 12px;
}

    .product-details .product-details-accordion .product-reviews .reviews-summary .rating-breakdown .rating-bar {
        display: flex;
        align-items: center;
        margin-bottom: 0.75rem;
    }

        .product-details .product-details-accordion .product-reviews .reviews-summary .rating-breakdown .rating-bar:last-child {
            margin-bottom: 0;
        }

        .product-details .product-details-accordion .product-reviews .reviews-summary .rating-breakdown .rating-bar .rating-label {
            width: 60px;
            font-size: 0.875rem;
            color: color-mix(in srgb, var(--default-color), transparent 30%);
        }

        .product-details .product-details-accordion .product-reviews .reviews-summary .rating-breakdown .rating-bar .progress {
            flex: 1;
            height: 8px;
            margin: 0 0.75rem;
            background-color: color-mix(in srgb, var(--default-color), transparent 90%);
            border-radius: 4px;
        }

            .product-details .product-details-accordion .product-reviews .reviews-summary .rating-breakdown .rating-bar .progress .progress-bar {
                background-color: #FFD700;
                border-radius: 4px;
            }

        .product-details .product-details-accordion .product-reviews .reviews-summary .rating-breakdown .rating-bar .rating-count {
            width: 30px;
            font-size: 0.875rem;
            color: color-mix(in srgb, var(--default-color), transparent 30%);
            text-align: right;
        }

.product-details .product-details-accordion .product-reviews .reviews-list .review-item {
    padding: 1.5rem;
    border-radius: 12px;
    background-color: var(--surface-color);
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

    .product-details .product-details-accordion .product-reviews .reviews-list .review-item:hover {
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    .product-details .product-details-accordion .product-reviews .reviews-list .review-item .review-header {
        display: flex;
        justify-content: space-between;
        margin-bottom: 1rem;
    }

        .product-details .product-details-accordion .product-reviews .reviews-list .review-item .review-header .reviewer-info {
            display: flex;
            align-items: center;
        }

            .product-details .product-details-accordion .product-reviews .reviews-list .review-item .review-header .reviewer-info .reviewer-avatar {
                width: 48px;
                height: 48px;
                border-radius: 50%;
                object-fit: cover;
                margin-right: 0.75rem;
            }

            .product-details .product-details-accordion .product-reviews .reviews-list .review-item .review-header .reviewer-info .reviewer-name {
                font-size: 1rem;
                font-weight: 600;
                margin-bottom: 0.25rem;
            }

            .product-details .product-details-accordion .product-reviews .reviews-list .review-item .review-header .reviewer-info .review-date {
                font-size: 0.75rem;
                color: color-mix(in srgb, var(--default-color), transparent 40%);
            }

        .product-details .product-details-accordion .product-reviews .reviews-list .review-item .review-header .review-rating i {
            color: #FFD700;
            font-size: 0.875rem;
            margin-right: 2px;
        }

    .product-details .product-details-accordion .product-reviews .reviews-list .review-item .review-title {
        font-size: 1.125rem;
        font-weight: 600;
        margin-bottom: 0.75rem;
        color: var(--heading-color);
    }

    .product-details .product-details-accordion .product-reviews .reviews-list .review-item .review-content p {
        margin-bottom: 0;
        color: color-mix(in srgb, var(--default-color), transparent 20%);
        line-height: 1.6;
    }

.product-details .product-details-accordion .product-reviews .review-form-container {
    padding: 2rem;
    background-color: var(--surface-color);
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

    .product-details .product-details-accordion .product-reviews .review-form-container h4 {
        margin-bottom: 1.5rem;
        font-weight: 700;
        position: relative;
        padding-bottom: 0.75rem;
    }

        .product-details .product-details-accordion .product-reviews .review-form-container h4:after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background-color: #74676f;
            border-radius: 3px;
        }

    .product-details .product-details-accordion .product-reviews .review-form-container .form-label {
        font-weight: 600;
        color: var(--heading-color);
        margin-bottom: 0.5rem;
    }

    .product-details .product-details-accordion .product-reviews .review-form-container .form-control {
        padding: 0.75rem 1rem;
        border-radius: 8px;
        border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
        background-color: var(--background-color);
        transition: all 0.3s ease;
    }

        .product-details .product-details-accordion .product-reviews .review-form-container .form-control:focus {
            border-color: #74676f;
            box-shadow: 0 0 0 0.25rem color-mix(in srgb, #74676f, transparent 80%);
        }

    .product-details .product-details-accordion .product-reviews .review-form-container .form-text {
        color: color-mix(in srgb, var(--default-color), transparent 40%);
        font-size: 0.875rem;
        margin-top: 0.5rem;
    }

    .product-details .product-details-accordion .product-reviews .review-form-container .star-rating {
        display: flex;
        flex-direction: row-reverse;
        justify-content: flex-end;
    }

        .product-details .product-details-accordion .product-reviews .review-form-container .star-rating input[type=radio] {
            display: none;
        }

        .product-details .product-details-accordion .product-reviews .review-form-container .star-rating label {
            cursor: pointer;
            font-size: 0;
            margin: 0;
            padding: 0 0.25rem;
        }

            .product-details .product-details-accordion .product-reviews .review-form-container .star-rating label i {
                font-size: 1.75rem;
                color: color-mix(in srgb, var(--default-color), transparent 80%);
                transition: all 0.2s ease;
            }

            .product-details .product-details-accordion .product-reviews .review-form-container .star-rating input[type=radio]:checked ~ label i,
            .product-details .product-details-accordion .product-reviews .review-form-container .star-rating label:hover i,
            .product-details .product-details-accordion .product-reviews .review-form-container .star-rating label:hover ~ label i {
                color: #FFD700;
            }

    .product-details .product-details-accordion .product-reviews .review-form-container .btn-primary {
        background-color: #74676f;
        border-color: #74676f;
        color: var(--contrast-color);
        padding: 0.75rem 1.5rem;
        font-weight: 600;
        border-radius: 8px;
        transition: all 0.3s ease;
    }

        .product-details .product-details-accordion .product-reviews .review-form-container .btn-primary:hover {
            background-color: color-mix(in srgb, #74676f, #000 10%);
            border-color: color-mix(in srgb, #74676f, #000 10%);
            transform: translateY(-2px);
            box-shadow: 0 4px 12px color-mix(in srgb, #74676f, transparent 70%);
        }

/*--------------------------------------------------------------
# Category Header Section
--------------------------------------------------------------*/
.category-header {
    padding-bottom: 0;
}

    .category-header .filter-container {
        background-color: var(--surface-color);
        border-radius: 12px;
        padding: 1.75rem;
        box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.05);
        margin-bottom: 2rem;
    }

        .category-header .filter-container .filter-item {
            margin-bottom: 0.75rem;
        }

            .category-header .filter-container .filter-item .form-label {
                font-weight: 600;
                font-size: 0.875rem;
                margin-bottom: 0.5rem;
                color: var(--heading-color);
                letter-spacing: 0.01em;
            }

            .category-header .filter-container .filter-item.search-form .input-group {
                border-radius: 8px;
                overflow: hidden;
                box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
                overflow: hidden;
            }

                .category-header .filter-container .filter-item.search-form .input-group .form-control {
                    border-right: none;
                    padding: 0.5rem 1rem;
                    font-size: 0.95rem;
                    height: 44px;
                    color: var(--default-color);
                    background-color: var(--surface-color);
                    border-color: color-mix(in srgb, var(--default-color), transparent 85%);
                    border-radius: 8px 0 0 8px;
                }

                    .category-header .filter-container .filter-item.search-form .input-group .form-control:focus {
                        border-color: #74676f;
                        box-shadow: none;
                    }

                    .category-header .filter-container .filter-item.search-form .input-group .form-control::placeholder {
                        color: color-mix(in srgb, var(--default-color), transparent 60%);
                        font-size: 0.9rem;
                    }

                .category-header .filter-container .filter-item.search-form .input-group .search-btn {
                    background-color: #74676f;
                    color: var(--contrast-color);
                    border: none;
                    padding: 0.5rem 1rem;
                    transition: all 0.3s ease;
                }

                    .category-header .filter-container .filter-item.search-form .input-group .search-btn:hover {
                        background-color: color-mix(in srgb, #74676f, var(--heading-color) 15%);
                    }

                    .category-header .filter-container .filter-item.search-form .input-group .search-btn i {
                        font-size: 1rem;
                    }

            .category-header .filter-container .filter-item .form-select {
                color: var(--default-color);
                background-color: var(--surface-color);
                font-size: 0.95rem;
                border-color: color-mix(in srgb, var(--default-color), transparent 85%);
                padding: 0.625rem 2.25rem 0.625rem 1rem;
                height: 46px;
                border-radius: 8px;
                box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
                background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%233690e7' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
            }

                .category-header .filter-container .filter-item .form-select:focus {
                    border-color: #74676f;
                    box-shadow: 0 0 0 0.25rem color-mix(in srgb, #74676f, transparent 85%);
                }

                .category-header .filter-container .filter-item .form-select.form-select-sm {
                    height: 38px;
                    font-size: 0.85rem;
                    padding: 0.4rem 2rem 0.4rem 0.75rem;
                }

            .category-header .filter-container .filter-item .view-options {
                display: flex;
                gap: 0.5rem;
            }

                .category-header .filter-container .filter-item .view-options .view-btn {
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    width: 42px;
                    height: 42px;
                    border-radius: 6px;
                    background-color: var(--surface-color);
                    border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
                    color: var(--default-color);
                    transition: all 0.3s ease;
                    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
                }

                    .category-header .filter-container .filter-item .view-options .view-btn:hover {
                        background-color: color-mix(in srgb, #74676f, transparent 90%);
                        border-color: #74676f;
                        color: #74676f;
                    }

                    .category-header .filter-container .filter-item .view-options .view-btn.active {
                        background-color: #74676f;
                        border-color: #74676f;
                        color: var(--contrast-color);
                        box-shadow: 0 2px 8px color-mix(in srgb, #74676f, transparent 60%);
                    }

                    .category-header .filter-container .filter-item .view-options .view-btn i {
                        font-size: 1.1rem;
                    }

            .category-header .filter-container .filter-item .items-per-page {
                min-width: 110px;
            }

        .category-header .filter-container .active-filters {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 0.75rem;
            margin-top: 1.25rem;
            padding-top: 1.25rem;
            border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
        }

            .category-header .filter-container .active-filters .active-filter-label {
                font-weight: 600;
                font-size: 0.875rem;
                color: var(--heading-color);
                letter-spacing: 0.01em;
            }

            .category-header .filter-container .active-filters .filter-tags {
                display: flex;
                flex-wrap: wrap;
                gap: 0.5rem;
                flex: 1;
            }

            .category-header .filter-container .active-filters .filter-tag {
                display: inline-flex;
                align-items: center;
                background-color: color-mix(in srgb, #74676f, transparent 90%);
                color: #74676f;
                font-size: 0.875rem;
                padding: 0.35rem 0.85rem;
                border-radius: 50px;
                box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
                font-weight: 500;
            }

                .category-header .filter-container .active-filters .filter-tag .filter-remove {
                    background: none;
                    border: none;
                    color: #74676f;
                    margin-left: 0.35rem;
                    padding: 0;
                    display: inline-flex;
                    align-items: center;
                    justify-content: center;
                    cursor: pointer;
                    transition: all 0.3s ease;
                    width: 20px;
                    height: 20px;
                    border-radius: 50%;
                }

                    .category-header .filter-container .active-filters .filter-tag .filter-remove:hover {
                        color: color-mix(in srgb, #74676f, var(--heading-color) 30%);
                        background-color: color-mix(in srgb, #74676f, transparent 80%);
                        transform: scale(1.1);
                    }

            .category-header .filter-container .active-filters .clear-all-btn {
                background: none;
                border: 1px solid color-mix(in srgb, #74676f, transparent 70%);
                color: #74676f;
                font-size: 0.875rem;
                font-weight: 600;
                padding: 0.35rem 0.85rem;
                cursor: pointer;
                transition: all 0.3s ease;
                margin-left: auto;
                border-radius: 50px;
            }

                .category-header .filter-container .active-filters .clear-all-btn:hover {
                    background-color: color-mix(in srgb, #74676f, transparent 90%);
                    color: color-mix(in srgb, #74676f, var(--heading-color) 15%);
                    border-color: #74676f;
                }

@media (max-width: 767.98px) {
    .category-header .filter-container {
        padding: 1rem;
    }

        .category-header .filter-container .active-filters {
            flex-direction: column;
            align-items: flex-start;
        }

            .category-header .filter-container .active-filters .filter-tags {
                width: 100%;
            }

            .category-header .filter-container .active-filters .clear-all-btn {
                margin-left: 0;
                margin-top: 0.5rem;
            }
}

/*--------------------------------------------------------------
# Category Product List Section
--------------------------------------------------------------*/
.category-product-list {
    padding: 0 0 40px 0;
}

    .category-product-list .product-box {
        position: relative;
        height: 100%;
        background-color: var(--surface-color);
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    }

        .category-product-list .product-box:hover {
            transform: translateY(-8px);
        }

            .category-product-list .product-box:hover .product-overlay {
                opacity: 1;
                visibility: visible;
            }

            .category-product-list .product-box:hover .main-img {
                transform: scale(1.08);
            }

    .category-product-list .product-thumb {
        position: relative;
        overflow: hidden;
        padding-bottom: 100%;
    }

    .category-product-list .main-img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    }

    .category-product-list .product-label {
        position: absolute;
        top: 15px;
        left: 15px;
        z-index: 3;
        background-color: #74676f;
        color: var(--contrast-color);
        font-size: 0.7rem;
        font-weight: 600;
        padding: 0.35em 0.8em;
        border-radius: 30px;
        letter-spacing: 0.03em;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }

        .category-product-list .product-label.product-label-sale {
            background-color: #e53e3e;
        }

        .category-product-list .product-label.product-label-sold {
            background-color: #718096;
        }

        .category-product-list .product-label.product-label-hot {
            background-color: #dd6b20;
        }

    .category-product-list .product-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s ease;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        padding: 1rem;
    }

    .category-product-list .product-quick-actions {
        display: flex;
        justify-content: flex-end;
        gap: 0.5rem;
    }

    .category-product-list .quick-action-btn {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        background-color: white;
        border: none;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--heading-color);
        font-size: 1rem;
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
    }

        .category-product-list .quick-action-btn:hover {
            background-color: #74676f;
            color: var(--contrast-color);
            transform: translateY(-2px);
        }

    .category-product-list .add-to-cart-container {
        width: 100%;
    }

    .category-product-list .add-to-cart-btn {
        width: 100%;
        padding: 0.8rem 1.5rem;
        background-color: #74676f;
        color: var(--contrast-color);
        border: none;
        border-radius: 6px;
        font-weight: 600;
        font-size: 0.9rem;
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

        .category-product-list .add-to-cart-btn:hover {
            background-color: color-mix(in srgb, #74676f, #000 15%);
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
        }

        .category-product-list .add-to-cart-btn.disabled {
            background-color: #a0aec0;
            cursor: not-allowed;
        }

            .category-product-list .add-to-cart-btn.disabled:hover {
                background-color: #a0aec0;
                box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
            }

    .category-product-list .product-content {
        padding: 1.5rem;
    }

    .category-product-list .product-details {
        margin-bottom: 1rem;
    }

    .category-product-list .product-title {
        font-size: 1.1rem;
        font-weight: 600;
        margin-bottom: 0.75rem;
        line-height: 1.4;
        height: 2.8rem;
        overflow: hidden;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        color: var(--heading-color);
    }

        .category-product-list .product-title a {
            color: inherit;
        }

            .category-product-list .product-title a:hover {
                color: #74676f;
            }

    .category-product-list .product-price {
        display: flex;
        align-items: center;
        gap: 0.75rem;
    }

        .category-product-list .product-price span {
            font-weight: 700;
            font-size: 1.1rem;
            color: var(--heading-color);
        }

        .category-product-list .product-price .original {
            font-size: 0.9rem;
            font-weight: 400;
            text-decoration: line-through;
            color: color-mix(in srgb, var(--default-color), transparent 40%);
        }

        .category-product-list .product-price .sale {
            color: #e53e3e;
        }

    .category-product-list .product-rating-container {
        display: flex;
        align-items: center;
        margin-bottom: 1rem;
    }

    .category-product-list .rating-stars {
        color: #f59e0b;
        font-size: 0.85rem;
        margin-right: 0.5rem;
    }

        .category-product-list .rating-stars i {
            margin-right: 1px;
        }

    .category-product-list .rating-number {
        font-size: 0.85rem;
        font-weight: 600;
        color: var(--heading-color);
    }

    .category-product-list .product-color-options {
        display: flex;
        gap: 0.5rem;
    }

    .category-product-list .color-option {
        width: 20px;
        height: 20px;
        border-radius: 50%;
        cursor: pointer;
        position: relative;
        transition: transform 0.2s ease;
    }

        .category-product-list .color-option:hover {
            transform: scale(1.1);
        }

        .category-product-list .color-option.active:after {
            content: "";
            position: absolute;
            top: -3px;
            left: -3px;
            right: -3px;
            bottom: -3px;
            border: 2px solid #74676f;
            border-radius: 50%;
        }

@media (max-width: 991.98px) {
    .category-product-list .product-title {
        font-size: 0.95rem;
        height: 2.6rem;
    }

    .category-product-list .product-content {
        padding: 1.25rem;
    }
}

@media (max-width: 767.98px) {
    .category-product-list .product-box {
        max-width: 350px;
        margin-left: auto;
        margin-right: auto;
    }

    .category-product-list .product-overlay {
        opacity: 1;
        visibility: visible;
        background-color: rgba(0, 0, 0, 0.1);
    }

    .category-product-list .add-to-cart-btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.85rem;
    }
}

/*--------------------------------------------------------------
# Category Pagination Section
--------------------------------------------------------------*/
.category-pagination {
    padding-top: 0;
}

    .category-pagination nav {
        position: relative;
    }

    .category-pagination ul {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        gap: 8px;
        padding: 0;
        margin: 0;
        list-style: none;
    }

    .category-pagination li {
        margin: 0;
        transition: all 0.3s ease-in-out;
    }

        .category-pagination li.ellipsis {
            color: color-mix(in srgb, var(--default-color), transparent 40%);
            padding: 8px 16px;
            user-select: none;
        }

        .category-pagination li a {
            display: flex;
            align-items: center;
            justify-content: center;
            min-width: 40px;
            height: 40px;
            padding: 8px 16px;
            color: var(--default-color);
            background-color: var(--surface-color);
            border-radius: 8px;
            text-decoration: none;
            transition: all 0.3s ease-in-out;
            box-shadow: 0 2px 4px color-mix(in srgb, var(--default-color), transparent 90%);
        }

            .category-pagination li a.active {
                background-color: #74676f;
                color: var(--contrast-color);
                transform: translateY(-2px);
                box-shadow: 0 4px 8px color-mix(in srgb, #74676f, transparent 70%);
            }

            .category-pagination li a:hover:not(.active) {
                background-color: color-mix(in srgb, #74676f, transparent 90%);
                transform: translateY(-1px);
                box-shadow: 0 3px 6px color-mix(in srgb, var(--default-color), transparent 85%);
            }

            .category-pagination li a i {
                font-size: 14px;
            }

            .category-pagination li a span {
                margin: 0 4px;
            }

@media (max-width: 575px) {
    .category-pagination ul {
        gap: 4px;
    }

    .category-pagination li a {
        min-width: 36px;
        height: 36px;
        padding: 8px 12px;
        font-size: 14px;
    }
}

/*--------------------------------------------------------------
# Cart Section
--------------------------------------------------------------*/
.cart .cart-items {
    background-color: var(--surface-color);
    border-radius: 0.5rem;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

    .cart .cart-items .cart-header {
        border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
        padding-bottom: 1rem;
        margin-bottom: 1.5rem;
    }

        .cart .cart-items .cart-header h5 {
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 0;
            color: color-mix(in srgb, var(--heading-color), transparent 20%);
        }

    .cart .cart-items .cart-item {
        padding: 1.25rem 0;
        border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
        transition: background-color 0.3s ease;
    }

        .cart .cart-items .cart-item:last-child {
            border-bottom: none;
        }

        .cart .cart-items .cart-item:hover {
            background-color: color-mix(in srgb, var(--background-color), transparent 70%);
        }

        .cart .cart-items .cart-item .product-info .product-image {
            width: 5rem;
            height: 5rem;
            min-width: 5rem;
            border-radius: 0.375rem;
            overflow: hidden;
            margin-right: 1rem;
            border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
            background-color: var(--surface-color);
            display: flex;
            align-items: center;
            justify-content: center;
        }

            .cart .cart-items .cart-item .product-info .product-image img {
                max-width: 100%;
                max-height: 100%;
                object-fit: contain;
            }

@media (max-width: 767.98px) {
    .cart .cart-items .cart-item .product-info .product-image {
        width: 4rem;
        height: 4rem;
        min-width: 4rem;
    }
}

.cart .cart-items .cart-item .product-info .product-details {
    flex: 1;
}

    .cart .cart-items .cart-item .product-info .product-details .product-title {
        font-weight: 600;
        margin-bottom: 0.5rem;
        font-size: 1rem;
        color: var(--heading-color);
    }

    .cart .cart-items .cart-item .product-info .product-details .product-meta {
        display: flex;
        flex-wrap: wrap;
        gap: 0.75rem;
        margin-bottom: 0.5rem;
        font-size: 0.8125rem;
        color: color-mix(in srgb, var(--default-color), transparent 30%);
    }

        .cart .cart-items .cart-item .product-info .product-details .product-meta span {
            display: inline-block;
        }

    .cart .cart-items .cart-item .product-info .product-details .remove-item {
        background: none;
        border: none;
        padding: 0;
        font-size: 0.8125rem;
        color: color-mix(in srgb, var(--default-color), transparent 30%);
        display: inline-flex;
        align-items: center;
        gap: 0.25rem;
        transition: color 0.3s ease;
    }

        .cart .cart-items .cart-item .product-info .product-details .remove-item:hover {
            color: #dc3545;
        }

        .cart .cart-items .cart-item .product-info .product-details .remove-item i {
            font-size: 0.875rem;
        }

.cart .cart-items .cart-item .price-tag .current-price {
    font-weight: 600;
    color: var(--heading-color);
    font-size: 1rem;
}

.cart .cart-items .cart-item .price-tag .original-price {
    text-decoration: line-through;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    font-size: 0.875rem;
    margin-left: 0.5rem;
}

.cart .cart-items .cart-item .quantity-selector {
    display: inline-flex;
    align-items: center;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
    border-radius: 0.375rem;
    overflow: hidden;
}

    .cart .cart-items .cart-item .quantity-selector .quantity-btn {
        background: none;
        border: none;
        width: 2rem;
        height: 2rem;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--default-color);
        transition: background-color 0.3s ease;
    }

        .cart .cart-items .cart-item .quantity-selector .quantity-btn:hover {
            background-color: color-mix(in srgb, #74676f, transparent 90%);
            color: #74676f;
        }

        .cart .cart-items .cart-item .quantity-selector .quantity-btn:active {
            background-color: color-mix(in srgb, #74676f, transparent 80%);
        }

    .cart .cart-items .cart-item .quantity-selector .quantity-input {
        width: 2.5rem;
        text-align: center;
        border: none;
        border-left: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
        border-right: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
        font-size: 0.875rem;
        color: var(--heading-color);
        font-weight: 600;
        padding: 0.25rem 0;
        background-color: var(--surface-color);
    }

        .cart .cart-items .cart-item .quantity-selector .quantity-input:focus {
            outline: none;
        }

        .cart .cart-items .cart-item .quantity-selector .quantity-input::-webkit-inner-spin-button,
        .cart .cart-items .cart-item .quantity-selector .quantity-input::-webkit-outer-spin-button {
            -webkit-appearance: none;
            margin: 0;
        }

.cart .cart-items .cart-item .item-total {
    font-weight: 700;
    color: var(--heading-color);
    font-size: 1.125rem;
}

@media (max-width: 767.98px) {
    .cart .cart-items .cart-item {
        padding: 1rem 0.5rem;
        margin-bottom: 0.5rem;
        border-radius: 0.375rem;
        border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    }

        .cart .cart-items .cart-item .price-tag,
        .cart .cart-items .cart-item .item-total {
            font-size: 0.9375rem;
        }
}

.cart .cart-items .cart-actions {
    padding-top: 1.5rem;
    margin-top: 1rem;
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

    .cart .cart-items .cart-actions .coupon-form .input-group {
        max-width: 24rem;
    }

        .cart .cart-items .cart-actions .coupon-form .input-group .form-control {
            border-right: none;
            color: var(--default-color);
            background-color: var(--surface-color);
            font-size: 0.875rem;
            border-color: color-mix(in srgb, var(--default-color), transparent 80%);
        }

            .cart .cart-items .cart-actions .coupon-form .input-group .form-control:focus {
                border-color: #74676f;
                box-shadow: none;
            }

            .cart .cart-items .cart-actions .coupon-form .input-group .form-control::placeholder {
                color: color-mix(in srgb, var(--default-color), transparent 70%);
            }

        .cart .cart-items .cart-actions .coupon-form .input-group .btn {
            border-color: color-mix(in srgb, var(--default-color), transparent 80%);
            border-left: none;
            font-size: 0.875rem;
            background-color: color-mix(in srgb, var(--default-color), transparent 10%);
            color: var(--contrast-color);
        }

            .cart .cart-items .cart-actions .coupon-form .input-group .btn:hover {
                background-color: color-mix(in srgb, #74676f, transparent 10%);
                border-color: #74676f;
            }

    .cart .cart-items .cart-actions .btn {
        font-size: 0.875rem;
        padding: 0.5rem 1rem;
        display: inline-flex;
        align-items: center;
        gap: 0.375rem;
        transition: all 0.3s ease;
    }

.cart .cart-summary {
    background-color: var(--surface-color);
    border-radius: 0.5rem;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    padding: 1.5rem;
    position: sticky;
    top: 6.5rem;
}

    .cart .cart-summary .summary-title {
        font-size: 1.25rem;
        font-weight: 600;
        margin-bottom: 1.25rem;
        padding-bottom: 0.75rem;
        border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    }

    .cart .cart-summary .summary-item {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        margin-bottom: 1rem;
        font-size: 0.9375rem;
    }

        .cart .cart-summary .summary-item.discount {
            color: #28a745;
        }

        .cart .cart-summary .summary-item .summary-label {
            color: color-mix(in srgb, var(--default-color), transparent 20%);
        }

        .cart .cart-summary .summary-item .summary-value {
            font-weight: 600;
            color: var(--heading-color);
        }

        .cart .cart-summary .summary-item .shipping-options {
            width: 100%;
            margin-top: 0.5rem;
        }

            .cart .cart-summary .summary-item .shipping-options .form-check {
                margin-bottom: 0.5rem;
                display: flex;
                justify-content: flex-end;
                align-items: center;
            }

                .cart .cart-summary .summary-item .shipping-options .form-check:last-child {
                    margin-bottom: 0;
                }

                .cart .cart-summary .summary-item .shipping-options .form-check .form-check-input {
                    margin-top: 0;
                    margin-left: 0;
                    margin-right: 0.5rem;
                    float: none;
                }

                    .cart .cart-summary .summary-item .shipping-options .form-check .form-check-input:checked {
                        background-color: #74676f;
                        border-color: #74676f;
                    }

                    .cart .cart-summary .summary-item .shipping-options .form-check .form-check-input:focus {
                        box-shadow: 0 0 0 0.25rem color-mix(in srgb, #74676f, transparent 75%);
                    }

                .cart .cart-summary .summary-item .shipping-options .form-check .form-check-label {
                    font-size: 0.875rem;
                    color: var(--default-color);
                    padding-left: 0;
                }

    .cart .cart-summary .summary-total {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin: 1.5rem 0;
        padding-top: 1rem;
        border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    }

        .cart .cart-summary .summary-total .summary-label {
            font-size: 1.125rem;
            font-weight: 600;
            color: var(--heading-color);
        }

        .cart .cart-summary .summary-total .summary-value {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--heading-color);
        }

    .cart .cart-summary .checkout-button {
        margin-bottom: 1rem;
    }

        .cart .cart-summary .checkout-button .btn {
            padding: 0.75rem 1.5rem;
            font-weight: 600;
            font-size: 1rem;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
        }

            .cart .cart-summary .checkout-button .btn i {
                transition: transform 0.3s ease;
            }

            .cart .cart-summary .checkout-button .btn:hover i {
                transform: translateX(0.25rem);
            }

    .cart .cart-summary .continue-shopping {
        margin-bottom: 1.5rem;
    }

        .cart .cart-summary .continue-shopping .btn-link {
            color: #74676f;
            text-decoration: none;
            font-size: 0.9375rem;
            padding: 0.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.375rem;
            transition: all 0.3s ease;
        }

            .cart .cart-summary .continue-shopping .btn-link i {
                transition: transform 0.3s ease;
            }

            .cart .cart-summary .continue-shopping .btn-link:hover {
                color: color-mix(in srgb, #74676f, transparent 25%);
            }

                .cart .cart-summary .continue-shopping .btn-link:hover i {
                    transform: translateX(-0.25rem);
                }

    .cart .cart-summary .payment-methods {
        border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
        padding-top: 1rem;
    }

        .cart .cart-summary .payment-methods .payment-title {
            font-size: 0.875rem;
            color: color-mix(in srgb, var(--default-color), transparent 30%);
            margin-bottom: 0.5rem;
            text-align: center;
        }

        .cart .cart-summary .payment-methods .payment-icons {
            display: flex;
            justify-content: center;
            gap: 1rem;
        }

            .cart .cart-summary .payment-methods .payment-icons i {
                font-size: 1.5rem;
                color: color-mix(in srgb, var(--default-color), transparent 40%);
                transition: color 0.3s ease;
            }

                .cart .cart-summary .payment-methods .payment-icons i:hover {
                    color: #74676f;
                }

.cart .btn-outline-accent {
    color: #74676f;
    border-color: #74676f;
    background-color: transparent;
}

    .cart .btn-outline-accent:hover,
    .cart .btn-outline-accent:focus,
    .cart .btn-outline-accent:active {
        color: var(--contrast-color);
        background-color: #74676f;
        border-color: #74676f;
    }

.cart .btn-outline-heading {
    color: var(--heading-color);
    border-color: var(--heading-color);
    background-color: transparent;
}

    .cart .btn-outline-heading:hover,
    .cart .btn-outline-heading:focus,
    .cart .btn-outline-heading:active {
        color: var(--contrast-color);
        background-color: var(--heading-color);
        border-color: var(--heading-color);
    }

.cart .btn-outline-remove {
    color: #dc3545;
    border-color: #dc3545;
    background-color: transparent;
}

    .cart .btn-outline-remove:hover,
    .cart .btn-outline-remove:focus,
    .cart .btn-outline-remove:active {
        color: var(--contrast-color);
        background-color: #dc3545;
        border-color: #dc3545;
    }

.cart .btn-accent {
    color: var(--contrast-color);
    background-color: #74676f;
    border-color: #74676f;
}

    .cart .btn-accent:hover,
    .cart .btn-accent:focus,
    .cart .btn-accent:active {
        color: var(--contrast-color);
        background-color: color-mix(in srgb, #74676f, #000 15%);
        border-color: color-mix(in srgb, #74676f, #000 15%);
    }

@media (max-width: 991.98px) {
    .cart .cart-summary {
        position: static;
    }
}

/*--------------------------------------------------------------
# Checkout Section
--------------------------------------------------------------*/
.checkout {
    padding: 60px 0;
}

    .checkout .checkout-steps {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 2rem;
        position: relative;
    }

        .checkout .checkout-steps .step {
            display: flex;
            flex-direction: column;
            align-items: center;
            position: relative;
            z-index: 2;
            transition: all 0.3s ease;
        }

            .checkout .checkout-steps .step .step-number {
                width: 40px;
                height: 40px;
                border-radius: 50%;
                background-color: var(--surface-color);
                border: 2px solid color-mix(in srgb, var(--default-color), transparent 80%);
                display: flex;
                align-items: center;
                justify-content: center;
                font-weight: 600;
                margin-bottom: 0.5rem;
                transition: all 0.3s ease;
                color: var(--default-color);
            }

            .checkout .checkout-steps .step .step-title {
                font-size: 0.9rem;
                font-weight: 500;
                color: color-mix(in srgb, var(--default-color), transparent 30%);
                transition: all 0.3s ease;
            }

            .checkout .checkout-steps .step.active .step-number {
                background-color: #74676f;
                border-color: #74676f;
                color: var(--contrast-color);
                transform: scale(1.1);
                box-shadow: 0 0 15px rgba(54, 144, 231, 0.3);
            }

            .checkout .checkout-steps .step.active .step-title {
                color: var(--heading-color);
                font-weight: 600;
            }

            .checkout .checkout-steps .step.completed .step-number {
                background-color: color-mix(in srgb, #74676f, transparent 20%);
                border-color: #74676f;
                color: var(--contrast-color);
            }

                .checkout .checkout-steps .step.completed .step-number::after {
                    content: "\f26b";
                    font-family: "bootstrap-icons";
                    font-size: 1.2rem;
                }

        .checkout .checkout-steps .step-connector {
            flex: 1;
            height: 2px;
            background: linear-gradient(to right, color-mix(in srgb, var(--default-color), transparent 80%) 50%, color-mix(in srgb, var(--default-color), transparent 80%) 50%);
            margin: 0 10px;
            position: relative;
            top: -20px;
            z-index: 1;
            transition: background 0.3s ease;
        }

            .checkout .checkout-steps .step-connector.active {
                background: linear-gradient(to right, #74676f 50%, color-mix(in srgb, var(--default-color), transparent 80%) 50%);
            }

            .checkout .checkout-steps .step-connector.completed {
                background: #74676f;
            }

@media (max-width: 767.98px) {
    .checkout .checkout-steps .step .step-title {
        font-size: 0.8rem;
    }

    .checkout .checkout-steps .step .step-number {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }
}

@media (max-width: 575.98px) {
    .checkout .checkout-steps .step-title {
        display: none;
    }

    .checkout .checkout-steps .step-connector {
        top: 0;
    }
}

.checkout .checkout-forms {
    position: relative;
    min-height: 400px;
}

    .checkout .checkout-forms .checkout-form {
        display: none;
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.4s ease;
    }

        .checkout .checkout-forms .checkout-form.active {
            display: block;
            opacity: 1;
            transform: translateY(0);
            animation: fadeInUp 0.5s ease forwards;
        }

        .checkout .checkout-forms .checkout-form .form-header {
            margin-bottom: 1.5rem;
        }

            .checkout .checkout-forms .checkout-form .form-header h3 {
                font-size: 1.5rem;
                margin-bottom: 0.5rem;
                font-weight: 600;
            }

            .checkout .checkout-forms .checkout-form .form-header p {
                color: color-mix(in srgb, var(--default-color), transparent 30%);
                font-size: 0.95rem;
            }

        .checkout .checkout-forms .checkout-form label {
            font-size: 0.9rem;
            font-weight: 500;
            margin-bottom: 0.5rem;
            color: var(--heading-color);
        }

        .checkout .checkout-forms .checkout-form .form-control,
        .checkout .checkout-forms .checkout-form .form-select {
            color: var(--default-color);
            background-color: var(--surface-color);
            font-size: 15px;
            border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
            border-radius: 10px;
            padding: 14px 18px;
            height: auto;
            transition: all 0.3s ease;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02);
        }

            .checkout .checkout-forms .checkout-form .form-control:hover,
            .checkout .checkout-forms .checkout-form .form-select:hover {
                border-color: color-mix(in srgb, #74676f, transparent 50%);
            }

            .checkout .checkout-forms .checkout-form .form-control:focus,
            .checkout .checkout-forms .checkout-form .form-select:focus {
                border-color: #74676f;
                box-shadow: 0 0 0 3px rgba(54, 144, 231, 0.15);
                outline: none;
            }

            .checkout .checkout-forms .checkout-form .form-control::placeholder,
            .checkout .checkout-forms .checkout-form .form-select::placeholder {
                color: color-mix(in srgb, var(--default-color), transparent 60%);
                font-size: 14px;
            }

            .checkout .checkout-forms .checkout-form .form-control.is-invalid,
            .checkout .checkout-forms .checkout-form .form-select.is-invalid {
                border-color: #dc3545;
                background-image: none;
                padding-right: 18px;
            }

                .checkout .checkout-forms .checkout-form .form-control.is-invalid:focus,
                .checkout .checkout-forms .checkout-form .form-select.is-invalid:focus {
                    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.15);
                }

            .checkout .checkout-forms .checkout-form .form-control.is-valid,
            .checkout .checkout-forms .checkout-form .form-select.is-valid {
                border-color: #28a745;
                background-image: none;
                padding-right: 18px;
            }

                .checkout .checkout-forms .checkout-form .form-control.is-valid:focus,
                .checkout .checkout-forms .checkout-form .form-select.is-valid:focus {
                    box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.15);
                }

        .checkout .checkout-forms .checkout-form .form-select {
            background-position: right 18px center;
            padding-right: 48px;
        }

        .checkout .checkout-forms .checkout-form .form-check {
            padding-left: 1.8rem;
            margin-bottom: 0.5rem;
        }

            .checkout .checkout-forms .checkout-form .form-check .form-check-input {
                width: 1.2rem;
                height: 1.2rem;
                margin-left: -1.8rem;
                margin-top: 0.15rem;
                border: 2px solid color-mix(in srgb, var(--default-color), transparent 70%);
                background-color: var(--surface-color);
                transition: all 0.2s ease;
            }

                .checkout .checkout-forms .checkout-form .form-check .form-check-input:checked {
                    background-color: #74676f;
                    border-color: #74676f;
                }

                .checkout .checkout-forms .checkout-form .form-check .form-check-input:focus {
                    border-color: #74676f;
                    box-shadow: 0 0 0 3px rgba(54, 144, 231, 0.15);
                }

                .checkout .checkout-forms .checkout-form .form-check .form-check-input:hover:not(:checked) {
                    border-color: #74676f;
                }

            .checkout .checkout-forms .checkout-form .form-check .form-check-label {
                font-size: 0.95rem;
                cursor: pointer;
            }

        .checkout .checkout-forms .checkout-form .success-message {
            padding: 15px;
            background-color: rgba(40, 167, 69, 0.1);
            border: 1px solid rgba(40, 167, 69, 0.2);
            border-radius: 10px;
            color: #28a745;
            font-weight: 500;
            margin-top: 1rem;
            text-align: center;
        }

            .checkout .checkout-forms .checkout-form .success-message.d-none {
                display: none;
            }

        .checkout .checkout-forms .checkout-form .btn {
            padding: 12px 24px;
            border-radius: 10px;
            font-weight: 600;
            font-size: 0.95rem;
            letter-spacing: 0.3px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

            .checkout .checkout-forms .checkout-form .btn::before {
                content: "";
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background: rgba(255, 255, 255, 0.1);
                transform: translateX(-100%);
                transition: transform 0.3s ease;
            }

            .checkout .checkout-forms .checkout-form .btn:hover::before {
                transform: translateX(0);
            }

            .checkout .checkout-forms .checkout-form .btn.btn-primary {
                background-color: #74676f;
                border-color: #74676f;
                box-shadow: 0 4px 10px rgba(54, 144, 231, 0.2);
            }

                .checkout .checkout-forms .checkout-form .btn.btn-primary:hover {
                    background-color: color-mix(in srgb, #74676f, #000 10%);
                    border-color: color-mix(in srgb, #74676f, #000 10%);
                    transform: translateY(-2px);
                    box-shadow: 0 6px 15px rgba(54, 144, 231, 0.25);
                }

                .checkout .checkout-forms .checkout-form .btn.btn-primary:active {
                    transform: translateY(0);
                    box-shadow: 0 2px 5px rgba(54, 144, 231, 0.2);
                }

            .checkout .checkout-forms .checkout-form .btn.btn-outline-secondary {
                color: var(--heading-color);
                border: 2px solid color-mix(in srgb, var(--heading-color), transparent 70%);
                background-color: transparent;
            }

                .checkout .checkout-forms .checkout-form .btn.btn-outline-secondary:hover {
                    background-color: color-mix(in srgb, var(--heading-color), transparent 95%);
                    color: var(--heading-color);
                    border-color: color-mix(in srgb, var(--heading-color), transparent 50%);
                    transform: translateY(-2px);
                }

                .checkout .checkout-forms .checkout-form .btn.btn-outline-secondary:active {
                    transform: translateY(0);
                }

            .checkout .checkout-forms .checkout-form .btn.btn-success {
                background-color: #28a745;
                border-color: #28a745;
                box-shadow: 0 4px 10px rgba(40, 167, 69, 0.2);
            }

                .checkout .checkout-forms .checkout-form .btn.btn-success:hover {
                    background-color: #218838;
                    border-color: #1e7e34;
                    transform: translateY(-2px);
                    box-shadow: 0 6px 15px rgba(40, 167, 69, 0.25);
                }

                .checkout .checkout-forms .checkout-form .btn.btn-success:active {
                    transform: translateY(0);
                    box-shadow: 0 2px 5px rgba(40, 167, 69, 0.2);
                }

.checkout .payment-methods .payment-method {
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
}

    .checkout .payment-methods .payment-method.active {
        border-color: #74676f;
        box-shadow: 0 5px 15px rgba(54, 144, 231, 0.1);
    }

    .checkout .payment-methods .payment-method .payment-method-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px;
        background-color: color-mix(in srgb, var(--surface-color), var(--background-color) 50%);
        cursor: pointer;
    }

        .checkout .payment-methods .payment-method .payment-method-header .form-check {
            margin: 0;
        }

            .checkout .payment-methods .payment-method .payment-method-header .form-check .form-check-input {
                margin-top: 0.15rem;
            }

            .checkout .payment-methods .payment-method .payment-method-header .form-check .form-check-label {
                font-weight: 500;
                margin-left: 0.5rem;
            }

        .checkout .payment-methods .payment-method .payment-method-header .payment-icons {
            display: flex;
            gap: 10px;
        }

            .checkout .payment-methods .payment-method .payment-method-header .payment-icons i {
                font-size: 1.2rem;
                color: var(--heading-color);
            }

    .checkout .payment-methods .payment-method .payment-method-body {
        padding: 15px;
        border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    }

        .checkout .payment-methods .payment-method .payment-method-body.d-none {
            display: none;
        }

.checkout .review-sections .review-section {
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
    border-radius: 10px;
    overflow: hidden;
}

    .checkout .review-sections .review-section .review-section-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px;
        background-color: color-mix(in srgb, var(--surface-color), var(--background-color) 50%);
    }

        .checkout .review-sections .review-section .review-section-header h4 {
            margin: 0;
            font-size: 1.1rem;
            font-weight: 600;
        }

        .checkout .review-sections .review-section .review-section-header .btn-edit {
            background: none;
            border: none;
            color: #74676f;
            font-size: 0.9rem;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
        }

            .checkout .review-sections .review-section .review-section-header .btn-edit:hover {
                color: color-mix(in srgb, #74676f, #000 10%);
                text-decoration: underline;
            }

    .checkout .review-sections .review-section .review-section-content {
        padding: 15px;
    }

        .checkout .review-sections .review-section .review-section-content p {
            margin-bottom: 0.5rem;
        }

            .checkout .review-sections .review-section .review-section-content p:last-child {
                margin-bottom: 0;
            }

.checkout .order-summary {
    background-color: var(--surface-color);
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 100px;
}

    .checkout .order-summary .order-summary-header {
        padding: 20px;
        border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

        .checkout .order-summary .order-summary-header h3 {
            margin: 0;
            font-size: 1.3rem;
            font-weight: 600;
        }

        .checkout .order-summary .order-summary-header .btn-toggle-summary {
            background: none;
            border: none;
            color: var(--heading-color);
            font-size: 1.2rem;
            cursor: pointer;
            transition: transform 0.3s ease;
        }

            .checkout .order-summary .order-summary-header .btn-toggle-summary.collapsed {
                transform: rotate(180deg);
            }

    .checkout .order-summary .order-summary-content {
        padding: 20px;
    }

        .checkout .order-summary .order-summary-content .order-items {
            max-height: 300px;
            overflow-y: auto;
            margin-bottom: 20px;
        }

            .checkout .order-summary .order-summary-content .order-items::-webkit-scrollbar {
                width: 5px;
            }

            .checkout .order-summary .order-summary-content .order-items::-webkit-scrollbar-track {
                background: color-mix(in srgb, var(--default-color), transparent 95%);
                border-radius: 10px;
            }

            .checkout .order-summary .order-summary-content .order-items::-webkit-scrollbar-thumb {
                background: color-mix(in srgb, var(--default-color), transparent 70%);
                border-radius: 10px;
            }

            .checkout .order-summary .order-summary-content .order-items .order-item {
                display: flex;
                gap: 15px;
                padding-bottom: 15px;
                margin-bottom: 15px;
                border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
            }

                .checkout .order-summary .order-summary-content .order-items .order-item:last-child {
                    margin-bottom: 0;
                    border-bottom: none;
                }

                .checkout .order-summary .order-summary-content .order-items .order-item .order-item-image {
                    width: 70px;
                    height: 70px;
                    border-radius: 8px;
                    overflow: hidden;
                    flex-shrink: 0;
                }

                    .checkout .order-summary .order-summary-content .order-items .order-item .order-item-image img {
                        width: 100%;
                        height: 100%;
                        object-fit: cover;
                    }

                .checkout .order-summary .order-summary-content .order-items .order-item .order-item-details {
                    flex: 1;
                }

                    .checkout .order-summary .order-summary-content .order-items .order-item .order-item-details h4 {
                        font-size: 1rem;
                        margin-bottom: 5px;
                        font-weight: 600;
                    }

                    .checkout .order-summary .order-summary-content .order-items .order-item .order-item-details .order-item-variant {
                        font-size: 0.85rem;
                        color: color-mix(in srgb, var(--default-color), transparent 40%);
                        margin-bottom: 5px;
                    }

                    .checkout .order-summary .order-summary-content .order-items .order-item .order-item-details .order-item-price {
                        display: flex;
                        align-items: center;
                        gap: 5px;
                        font-weight: 500;
                    }

                        .checkout .order-summary .order-summary-content .order-items .order-item .order-item-details .order-item-price .quantity {
                            color: color-mix(in srgb, var(--default-color), transparent 30%);
                        }

                        .checkout .order-summary .order-summary-content .order-items .order-item .order-item-details .order-item-price .price {
                            color: var(--heading-color);
                        }

        .checkout .order-summary .order-summary-content .order-totals {
            padding: 15px 0;
            border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
            border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
            margin-bottom: 15px;
        }

            .checkout .order-summary .order-summary-content .order-totals > div {
                margin-bottom: 10px;
                font-size: 0.95rem;
            }

                .checkout .order-summary .order-summary-content .order-totals > div:last-child {
                    margin-bottom: 0;
                    margin-top: 15px;
                    padding-top: 10px;
                    border-top: 1px dashed color-mix(in srgb, var(--default-color), transparent 80%);
                    font-size: 1.1rem;
                    font-weight: 600;
                    color: var(--heading-color);
                }

        .checkout .order-summary .order-summary-content .promo-code .input-group .form-control {
            border-top-right-radius: 0;
            border-bottom-right-radius: 0;
            border-right: none;
            z-index: 0;
        }

        .checkout .order-summary .order-summary-content .promo-code .input-group .btn {
            border-top-left-radius: 0;
            border-bottom-left-radius: 0;
            border: 2px solid color-mix(in srgb, var(--default-color), transparent 80%);
            border-left: none;
            color: #74676f;
            font-weight: 600;
            padding: 0 20px;
        }

            .checkout .order-summary .order-summary-content .promo-code .input-group .btn:hover {
                background-color: #74676f;
                border-color: #74676f;
                color: var(--contrast-color);
            }

            .checkout .order-summary .order-summary-content .promo-code .input-group .btn:disabled {
                background-color: #f8f9fa;
                border-color: color-mix(in srgb, var(--default-color), transparent 80%);
                color: #6c757d;
                opacity: 0.8;
            }

        .checkout .order-summary .order-summary-content .secure-checkout {
            text-align: center;
            padding-top: 15px;
            border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
        }

            .checkout .order-summary .order-summary-content .secure-checkout .secure-checkout-header {
                display: flex;
                align-items: center;
                justify-content: center;
                gap: 8px;
                color: var(--heading-color);
                font-weight: 500;
            }

                .checkout .order-summary .order-summary-content .secure-checkout .secure-checkout-header i {
                    color: #28a745;
                    font-size: 1.1rem;
                }

            .checkout .order-summary .order-summary-content .secure-checkout .payment-icons {
                display: flex;
                justify-content: center;
                gap: 15px;
                margin-top: 10px;
            }

                .checkout .order-summary .order-summary-content .secure-checkout .payment-icons i {
                    font-size: 1.5rem;
                    color: color-mix(in srgb, var(--default-color), transparent 40%);
                }

@media (max-width: 991.98px) {
    .checkout .order-summary {
        position: relative;
        top: 0;
        margin-top: 2rem;
    }
}

.checkout .modal-content {
    border-radius: 10px;
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

    .checkout .modal-content .modal-header {
        border-bottom-color: color-mix(in srgb, var(--default-color), transparent 90%);
    }

        .checkout .modal-content .modal-header .modal-title {
            font-weight: 600;
        }

    .checkout .modal-content .modal-footer {
        border-top-color: color-mix(in srgb, var(--default-color), transparent 90%);
    }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(54, 144, 231, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(54, 144, 231, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(54, 144, 231, 0);
    }
}

@media (max-width: 767.98px) {
    .checkout .checkout-form .form-header h3 {
        font-size: 1.3rem;
    }

    .checkout .order-summary .order-summary-header h3 {
        font-size: 1.2rem;
    }
}

.checkout .swiper-wrapper {
    height: auto !important;
}

/*--------------------------------------------------------------
# Order Confirmation Section
--------------------------------------------------------------*/
.order-confirmation {
    position: relative;
    /* ===== Sidebar Styles ===== */
    /* ===== Main Content Styles ===== */
}

    .order-confirmation .sidebar {
        background: linear-gradient(145deg, #74676f, color-mix(in srgb, #74676f, #6a11cb 60%));
        color: var(--contrast-color);
        border-radius: 16px 0 0 16px;
        /* Success Animation */
        /* Order ID */
        /* Stepper */
        /* Price Summary */
        /* Delivery Info */
        /* Customer Service */
    }

        .order-confirmation .sidebar .sidebar-content {
            padding: 2.5rem 1.5rem;
            position: sticky;
            top: 100px;
        }

            .order-confirmation .sidebar .sidebar-content h4,
            .order-confirmation .sidebar .sidebar-content h5 {
                color: var(--contrast-color);
            }

@media (max-width: 991.98px) {
    .order-confirmation .sidebar .sidebar-content {
        position: relative;
        top: 0;
        border-radius: 16px 16px 0 0;
    }
}

.order-confirmation .sidebar .success-animation {
    width: 100px;
    height: 100px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

    .order-confirmation .sidebar .success-animation::before {
        content: "";
        position: absolute;
        width: 90px;
        height: 90px;
        border-radius: 50%;
        background-color: rgba(255, 255, 255, 0.4);
        animation: pulse 2s infinite;
    }

    .order-confirmation .sidebar .success-animation i {
        font-size: 3rem;
        color: white;
        position: relative;
        z-index: 2;
    }

@keyframes pulse {
    0% {
        transform: scale(0.9);
        opacity: 0.7;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.4;
    }

    100% {
        transform: scale(0.9);
        opacity: 0.7;
    }
}

.order-confirmation .sidebar .order-id {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

    .order-confirmation .sidebar .order-id h4 {
        font-size: 1.3rem;
        margin-bottom: 0.5rem;
    }

    .order-confirmation .sidebar .order-id .order-date {
        opacity: 0.8;
        font-size: 0.95rem;
    }

.order-confirmation .sidebar .order-progress {
    margin-bottom: 2rem;
}

    .order-confirmation .sidebar .order-progress .stepper-container {
        display: flex;
        flex-direction: column;
    }

    .order-confirmation .sidebar .order-progress .stepper-item {
        display: flex;
        align-items: center;
        position: relative;
        padding-bottom: 1.5rem;
    }

        .order-confirmation .sidebar .order-progress .stepper-item:not(:last-child)::after {
            content: "";
            position: absolute;
            top: 20px;
            left: 14px;
            width: 2px;
            height: calc(100% - 10px);
            background-color: rgba(255, 255, 255, 0.3);
            z-index: 1;
        }

        .order-confirmation .sidebar .order-progress .stepper-item .stepper-icon {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.9rem;
            margin-right: 0.75rem;
            position: relative;
            z-index: 2;
            transition: all 0.3s ease;
        }

        .order-confirmation .sidebar .order-progress .stepper-item .stepper-text {
            font-weight: 500;
            opacity: 0.7;
            transition: all 0.3s ease;
        }

        .order-confirmation .sidebar .order-progress .stepper-item.completed .stepper-icon,
        .order-confirmation .sidebar .order-progress .stepper-item.current .stepper-icon {
            background-color: white;
            color: #74676f;
        }

        .order-confirmation .sidebar .order-progress .stepper-item.completed .stepper-text,
        .order-confirmation .sidebar .order-progress .stepper-item.current .stepper-text {
            opacity: 1;
        }

        .order-confirmation .sidebar .order-progress .stepper-item.current .stepper-icon {
            box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.25);
        }

.order-confirmation .sidebar .price-summary {
    margin-bottom: 2rem;
}

    .order-confirmation .sidebar .price-summary h5 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }

    .order-confirmation .sidebar .price-summary .summary-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }

        .order-confirmation .sidebar .price-summary .summary-list li {
            display: flex;
            justify-content: space-between;
            margin-bottom: 0.75rem;
            font-size: 0.95rem;
        }

            .order-confirmation .sidebar .price-summary .summary-list li.total {
                margin-top: 0.75rem;
                padding-top: 0.75rem;
                border-top: 1px solid rgba(255, 255, 255, 0.2);
                font-weight: 600;
                font-size: 1.1rem;
            }

.order-confirmation .sidebar .delivery-info {
    margin-bottom: 2rem;
}

    .order-confirmation .sidebar .delivery-info h5 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }

    .order-confirmation .sidebar .delivery-info p {
        display: flex;
        align-items: center;
        margin-bottom: 0.75rem;
        font-size: 0.9rem;
    }

        .order-confirmation .sidebar .delivery-info p i {
            margin-right: 0.5rem;
            font-size: 1rem;
        }

.order-confirmation .sidebar .customer-service h5 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.order-confirmation .sidebar .customer-service .help-link {
    display: flex;
    align-items: center;
    color: var(--contrast-color);
    text-decoration: none;
    padding: 0.5rem 0;
    font-size: 0.95rem;
    transition: opacity 0.2s ease;
}

    .order-confirmation .sidebar .customer-service .help-link i {
        margin-right: 0.5rem;
    }

    .order-confirmation .sidebar .customer-service .help-link:hover {
        opacity: 0.8;
    }

@media (max-width: 991.98px) {
    .order-confirmation .sidebar {
        border-radius: 16px 16px 0 0;
    }
}

.order-confirmation .main-content {
    background-color: var(--surface-color);
    border-radius: 0 16px 16px 0;
    padding: 3rem 2.5rem;
    /* Thank You Message */
    /* Details Cards */
    /* Action Area */
    /* Recommended Products */
}

@media (max-width: 991.98px) {
    .order-confirmation .main-content {
        border-radius: 0 0 16px 16px;
        padding: 2rem 1.5rem;
    }
}

.order-confirmation .main-content .thank-you-message {
    margin-bottom: 2.5rem;
}

    .order-confirmation .main-content .thank-you-message h1 {
        font-size: 2.2rem;
        font-weight: 700;
        margin-bottom: 1rem;
        color: var(--heading-color);
    }

    .order-confirmation .main-content .thank-you-message p {
        font-size: 1.1rem;
        color: color-mix(in srgb, var(--default-color), transparent 30%);
        max-width: 600px;
    }

.order-confirmation .main-content .details-card {
    margin-bottom: 1.5rem;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    border-radius: 12px;
    overflow: hidden;
}

    .order-confirmation .main-content .details-card .card-header {
        background-color: color-mix(in srgb, var(--default-color), transparent 97%);
        padding: 1rem 1.25rem;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: space-between;
        transition: background-color 0.2s ease;
    }

        .order-confirmation .main-content .details-card .card-header:hover {
            background-color: color-mix(in srgb, var(--default-color), transparent 95%);
        }

        .order-confirmation .main-content .details-card .card-header h3 {
            font-size: 1.15rem;
            margin: 0;
            display: flex;
            align-items: center;
        }

            .order-confirmation .main-content .details-card .card-header h3 i {
                margin-right: 0.75rem;
                color: #74676f;
            }

        .order-confirmation .main-content .details-card .card-header .toggle-icon {
            color: color-mix(in srgb, var(--default-color), transparent 50%);
            transition: transform 0.2s ease;
        }

        .order-confirmation .main-content .details-card .card-header.collapsed .toggle-icon {
            transform: rotate(180deg);
        }

    .order-confirmation .main-content .details-card .card-body {
        padding: 1.5rem;
        /* Payment Styles */
        /* Order Items */
    }

        .order-confirmation .main-content .details-card .card-body label {
            display: block;
            font-size: 0.9rem;
            font-weight: 600;
            color: color-mix(in srgb, var(--default-color), transparent 40%);
            margin-bottom: 0.5rem;
            text-transform: uppercase;
        }

        .order-confirmation .main-content .details-card .card-body address {
            font-style: normal;
            line-height: 1.6;
            margin-bottom: 0;
        }

        .order-confirmation .main-content .details-card .card-body .contact-info p {
            margin-bottom: 0.5rem;
            display: flex;
            align-items: center;
        }

            .order-confirmation .main-content .details-card .card-body .contact-info p i {
                width: 20px;
                margin-right: 0.5rem;
                color: #74676f;
            }

        .order-confirmation .main-content .details-card .card-body .payment-method {
            display: flex;
            align-items: center;
        }

            .order-confirmation .main-content .details-card .card-body .payment-method .payment-icon {
                width: 48px;
                height: 48px;
                border-radius: 10px;
                background-color: color-mix(in srgb, #74676f, transparent 90%);
                display: flex;
                align-items: center;
                justify-content: center;
                margin-right: 1rem;
            }

                .order-confirmation .main-content .details-card .card-body .payment-method .payment-icon i {
                    color: #74676f;
                    font-size: 1.5rem;
                }

            .order-confirmation .main-content .details-card .card-body .payment-method .payment-details .card-type {
                font-weight: 600;
                margin-bottom: 0.25rem;
            }

            .order-confirmation .main-content .details-card .card-body .payment-method .payment-details .card-number {
                font-size: 0.9rem;
                color: color-mix(in srgb, var(--default-color), transparent 30%);
            }

        .order-confirmation .main-content .details-card .card-body .billing-address h5 {
            font-size: 1rem;
            margin-bottom: 0.5rem;
        }

        .order-confirmation .main-content .details-card .card-body .billing-address p {
            color: color-mix(in srgb, var(--default-color), transparent 30%);
            font-size: 0.95rem;
            margin-bottom: 0;
        }

        .order-confirmation .main-content .details-card .card-body .item {
            display: flex;
            padding: 1rem 0;
            border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
        }

            .order-confirmation .main-content .details-card .card-body .item:last-child {
                border-bottom: none;
                padding-bottom: 0;
            }

            .order-confirmation .main-content .details-card .card-body .item .item-image {
                flex: 0 0 70px;
                margin-right: 1rem;
            }

                .order-confirmation .main-content .details-card .card-body .item .item-image img {
                    width: 70px;
                    height: 70px;
                    object-fit: contain;
                    border-radius: 8px;
                    background-color: color-mix(in srgb, var(--default-color), transparent 95%);
                }

            .order-confirmation .main-content .details-card .card-body .item .item-details {
                flex: 1;
            }

                .order-confirmation .main-content .details-card .card-body .item .item-details h4 {
                    font-size: 1.05rem;
                    margin-bottom: 0.5rem;
                }

                .order-confirmation .main-content .details-card .card-body .item .item-details .item-meta {
                    font-size: 0.85rem;
                    color: color-mix(in srgb, var(--default-color), transparent 40%);
                    margin-bottom: 0.5rem;
                }

                    .order-confirmation .main-content .details-card .card-body .item .item-details .item-meta span {
                        display: inline-block;
                        margin-right: 1rem;
                    }

                .order-confirmation .main-content .details-card .card-body .item .item-details .item-price {
                    font-size: 0.95rem;
                }

                    .order-confirmation .main-content .details-card .card-body .item .item-details .item-price .quantity {
                        color: color-mix(in srgb, var(--default-color), transparent 30%);
                    }

                    .order-confirmation .main-content .details-card .card-body .item .item-details .item-price .price {
                        font-weight: 600;
                    }

.order-confirmation .main-content .action-area {
    margin-bottom: 3rem;
}

    .order-confirmation .main-content .action-area .btn {
        width: 100%;
        padding: 0.75rem 1.5rem;
        border-radius: 8px;
        display: flex;
        align-items: center;
        transition: all 0.3s ease;
    }

        .order-confirmation .main-content .action-area .btn.btn-back {
            border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
            color: var(--default-color);
            justify-content: flex-start;
        }

            .order-confirmation .main-content .action-area .btn.btn-back i {
                margin-right: 0.75rem;
            }

            .order-confirmation .main-content .action-area .btn.btn-back:hover {
                background-color: color-mix(in srgb, var(--default-color), transparent 95%);
                transform: translateY(-2px);
            }

        .order-confirmation .main-content .action-area .btn.btn-account {
            background-color: #74676f;
            color: var(--contrast-color);
            justify-content: space-between;
        }

            .order-confirmation .main-content .action-area .btn.btn-account i {
                margin-left: 0.75rem;
            }

            .order-confirmation .main-content .action-area .btn.btn-account:hover {
                background-color: color-mix(in srgb, #74676f, #000 10%);
                transform: translateY(-2px);
            }

.order-confirmation .main-content .recommended h3 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    position: relative;
}

    .order-confirmation .main-content .recommended h3::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -10px;
        width: 40px;
        height: 3px;
        background-color: #74676f;
    }

.order-confirmation .main-content .recommended .product-card {
    border-radius: 12px;
    overflow: hidden;
    background-color: var(--surface-color);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    text-align: center;
    padding-bottom: 2rem;
}

    .order-confirmation .main-content .recommended .product-card:hover {
        transform: translateY(-5px);
    }

    .order-confirmation .main-content .recommended .product-card .product-image {
        height: 150px;
        margin-bottom: 1rem;
        overflow: hidden;
    }

        .order-confirmation .main-content .recommended .product-card .product-image img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            padding: 1rem;
        }

    .order-confirmation .main-content .recommended .product-card h5 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
        padding: 0 0.75rem;
    }

    .order-confirmation .main-content .recommended .product-card .product-price {
        color: #74676f;
        font-weight: 600;
        margin-bottom: 1rem;
    }

    .order-confirmation .main-content .recommended .product-card .btn-add-cart {
        background-color: color-mix(in srgb, #74676f, transparent 90%);
        color: #74676f;
        border: none;
        border-radius: 6px;
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
        display: inline-flex;
        align-items: center;
        transition: all 0.2s ease;
    }

        .order-confirmation .main-content .recommended .product-card .btn-add-cart i {
            margin-right: 0.5rem;
        }

        .order-confirmation .main-content .recommended .product-card .btn-add-cart:hover {
            background-color: #74676f;
            color: var(--contrast-color);
        }

@media (max-width: 767.98px) {
    .order-confirmation .main-content {
        padding: 2rem 1.5rem;
    }

        .order-confirmation .main-content .thank-you-message h1 {
            font-size: 1.8rem;
        }

        .order-confirmation .main-content .thank-you-message p {
            font-size: 1rem;
        }
}

/*--------------------------------------------------------------
# Search Results Header Section
--------------------------------------------------------------*/
.search-results-header .results-count h2 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.search-results-header .results-count p {
    font-size: 1.1rem;
    margin-bottom: 0;
}

.search-results-header .results-count .results-number,
.search-results-header .results-count .search-term {
    font-weight: 600;
    color: #74676f;
}

.search-results-header .search-form {
    position: relative;
}

    .search-results-header .search-form .input-group {
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        border-radius: 50px;
        overflow: hidden;
    }

    .search-results-header .search-form .form-control {
        color: var(--default-color);
        background-color: var(--surface-color);
        font-size: 14px;
        border-color: color-mix(in srgb, var(--default-color), transparent 80%);
        padding: 12px 20px;
        border-radius: 50px 0 0 50px;
        border-right: none;
        height: auto;
    }

        .search-results-header .search-form .form-control:focus {
            border-color: #74676f;
            box-shadow: none;
        }

        .search-results-header .search-form .form-control::placeholder {
            color: color-mix(in srgb, var(--default-color), transparent 70%);
        }

    .search-results-header .search-form .search-btn {
        background-color: #74676f;
        color: var(--contrast-color);
        border: none;
        padding: 0 25px;
        border-radius: 0 50px 50px 0;
        transition: all 0.3s ease;
    }

        .search-results-header .search-form .search-btn:hover {
            background-color: color-mix(in srgb, #74676f, #000 15%);
        }

.search-results-header .search-filters .filter-label {
    font-weight: 600;
    margin-right: 10px;
    color: var(--heading-color);
}

.search-results-header .search-filters .tags-wrapper {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 8px;
}

.search-results-header .search-filters .filter-tag {
    display: inline-flex;
    align-items: center;
    background-color: color-mix(in srgb, #74676f, transparent 90%);
    color: #74676f;
    font-size: 0.85rem;
    padding: 5px 12px;
    border-radius: 30px;
    transition: all 0.3s ease;
}

    .search-results-header .search-filters .filter-tag i {
        margin-left: 5px;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .search-results-header .search-filters .filter-tag:hover {
        background-color: color-mix(in srgb, #74676f, transparent 80%);
    }

        .search-results-header .search-filters .filter-tag:hover i {
            transform: scale(1.1);
        }

.search-results-header .search-filters .sort-options label {
    color: var(--heading-color);
    font-weight: 500;
}

.search-results-header .search-filters .sort-options .form-select {
    border-color: color-mix(in srgb, var(--default-color), transparent 80%);
    color: var(--default-color);
    background-color: var(--surface-color);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

    .search-results-header .search-filters .sort-options .form-select:focus {
        border-color: #74676f;
        box-shadow: none;
    }

@media (max-width: 991.98px) {
    .search-results-header .filter-tags {
        margin-bottom: 15px;
    }

    .search-results-header .sort-options {
        text-align: left;
    }
}

@media (max-width: 767.98px) {
    .search-results-header .results-count h2 {
        font-size: 1.5rem;
    }

    .search-results-header .results-count p {
        font-size: 1rem;
    }

    .search-results-header .filter-label {
        display: block;
        margin-bottom: 8px;
    }

    .search-results-header .tags-wrapper {
        margin-top: 5px;
    }
}

/*--------------------------------------------------------------
# Search Product List Section
--------------------------------------------------------------*/
.search-product-list .product-card {
    position: relative;
    background: var(--surface-color);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

    .search-product-list .product-card:hover {
        transform: translateY(-4px);
    }

        .search-product-list .product-card:hover .product-overlay {
            opacity: 1;
            visibility: visible;
        }

        .search-product-list .product-card:hover .hover-image {
            transform: scale(1);
            opacity: 1;
        }

        .search-product-list .product-card:hover .main-image {
            transform: scale(1.1);
            opacity: 0;
        }

.search-product-list .product-image {
    position: relative;
    padding-top: 125%;
    background: color-mix(in srgb, var(--surface-color), transparent 97%);
    overflow: hidden;
}

    .search-product-list .product-image img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: all 0.5s ease;
    }

    .search-product-list .product-image .main-image {
        transform: scale(1);
        opacity: 1;
    }

    .search-product-list .product-image .hover-image {
        transform: scale(1.1);
        opacity: 0;
    }

.search-product-list .product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: color-mix(in srgb, var(--background-color), transparent 75%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.search-product-list .product-actions {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

    .search-product-list .product-actions .action-btn {
        width: 3rem;
        height: 3rem;
        border-radius: 50%;
        background: var(--surface-color);
        border: none;
        color: #74676f;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
        transform: translateX(20px);
        animation: slideIn 0.3s ease forwards;
        opacity: 0;
    }

        .search-product-list .product-actions .action-btn:nth-child(2) {
            animation-delay: 0.1s;
        }

        .search-product-list .product-actions .action-btn:hover {
            background: #74676f;
            color: var(--contrast-color);
            transform: translateY(-2px);
        }

        .search-product-list .product-actions .action-btn i {
            font-size: 1.25rem;
        }

.search-product-list .product-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.35rem 0.75rem;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    z-index: 1;
}

    .search-product-list .product-badge.new {
        background: #74676f;
        color: var(--contrast-color);
    }

    .search-product-list .product-badge.sale {
        background: #ffa007;
        color: var(--contrast-color);
    }

.search-product-list .product-details {
    padding: 1.5rem;
    background: var(--surface-color);
}

.search-product-list .product-category {
    font-size: 0.875rem;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    margin-bottom: 0.5rem;
}

.search-product-list .product-title {
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

    .search-product-list .product-title a {
        color: var(--heading-color);
        text-decoration: none;
        transition: color 0.3s ease;
    }

        .search-product-list .product-title a:hover {
            color: #74676f;
        }

.search-product-list .product-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.search-product-list .product-price {
    font-weight: 600;
    font-size: 1.125rem;
    color: #74676f;
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

    .search-product-list .product-price .original-price {
        font-size: 0.875rem;
        color: color-mix(in srgb, var(--default-color), transparent 40%);
        text-decoration: line-through;
        font-weight: normal;
    }

.search-product-list .product-rating {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    color: var(--heading-color);
    font-weight: 500;
}

    .search-product-list .product-rating i {
        color: #ffc107;
        margin-right: 0.25rem;
    }

    .search-product-list .product-rating span {
        color: color-mix(in srgb, var(--default-color), transparent 40%);
        font-size: 0.875rem;
        font-weight: normal;
    }

@keyframes slideIn {
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@media (max-width: 991.98px) {
    .search-product-list .product-image {
        padding-top: 100%;
    }

    .search-product-list .product-details {
        padding: 1.25rem;
    }

    .search-product-list .product-title {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }

    .search-product-list .product-price {
        font-size: 1rem;
    }

    .search-product-list .product-actions .action-btn {
        width: 2.5rem;
        height: 2.5rem;
    }

        .search-product-list .product-actions .action-btn i {
            font-size: 1.125rem;
        }
}

/*--------------------------------------------------------------
# Account Section
--------------------------------------------------------------*/
.account .sidebar-toggle .btn-toggle {
    width: 100%;
    background-color: var(--surface-color);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    padding: 0.75rem 1rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

    .account .sidebar-toggle .btn-toggle i {
        margin-right: 0.5rem;
        font-size: 1.25rem;
    }

    .account .sidebar-toggle .btn-toggle:hover {
        background-color: rgba(0, 0, 0, 0.02);
    }

@media (max-width: 991.98px) {
    .account .profile-sidebar {
        background-color: var(--surface-color);
        border-radius: 12px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
}

@media (min-width: 992px) {
    .account .profile-sidebar {
        max-width: 280px;
    }
}

@media (max-width: 991.98px) {
    .account .profile-sidebar {
        margin-bottom: 2rem;
    }
}

.account .profile-sidebar .profile-header {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

    .account .profile-sidebar .profile-header .profile-avatar {
        width: 48px;
        height: 48px;
        border-radius: 50%;
        background-color: #74676f;
        color: var(--contrast-color);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        font-weight: 600;
        margin-right: 1rem;
        flex-shrink: 0;
    }

    .account .profile-sidebar .profile-header .profile-info h4 {
        margin: 0 0 0.25rem;
        font-size: 1.125rem;
        font-weight: 600;
    }

    .account .profile-sidebar .profile-header .profile-info .profile-bonus {
        display: flex;
        align-items: center;
        font-size: 0.875rem;
        color: color-mix(in srgb, var(--default-color), transparent 30%);
    }

        .account .profile-sidebar .profile-header .profile-info .profile-bonus i {
            color: #74676f;
            margin-right: 0.5rem;
        }

.account .profile-sidebar .profile-nav .nav-section-title {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    margin: 1.5rem 0 0.75rem;
    padding-left: 0.5rem;
}

.account .profile-sidebar .profile-nav .nav-item {
    margin-bottom: 0.25rem;
}

.account .profile-sidebar .profile-nav .nav-link {
    display: flex;
    align-items: center;
    padding: 0.65rem 1rem;
    border-radius: 12px;
    color: var(--default-color);
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    width: 100%;
}

    .account .profile-sidebar .profile-nav .nav-link i {
        margin-right: 0.75rem;
        font-size: 1.125rem;
        color: color-mix(in srgb, var(--default-color), transparent 20%);
        transition: all 0.3s ease;
    }

    .account .profile-sidebar .profile-nav .nav-link .badge {
        margin-left: auto;
        background-color: #74676f;
        color: var(--contrast-color);
        font-size: 0.75rem;
        padding: 0.25rem 0.5rem;
        border-radius: 1rem;
    }

    .account .profile-sidebar .profile-nav .nav-link:hover {
        background-color: rgba(0, 0, 0, 0.02);
    }

    .account .profile-sidebar .profile-nav .nav-link.active {
        background-color: #74676f;
        color: var(--contrast-color);
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

        .account .profile-sidebar .profile-nav .nav-link.active i {
            color: var(--contrast-color);
        }

    .account .profile-sidebar .profile-nav .nav-link.logout {
        color: #ef4444;
    }

        .account .profile-sidebar .profile-nav .nav-link.logout i {
            color: #ef4444;
        }

.account .profile-content .tab-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

    .account .profile-content .tab-header h2 {
        margin: 0;
        font-size: 1.5rem;
        font-weight: 600;
    }

    .account .profile-content .tab-header .tab-filters {
        margin-top: 1rem;
        width: 100%;
    }

@media (min-width: 768px) {
    .account .profile-content .tab-header .tab-filters {
        margin-top: 0;
        width: auto;
    }
}

.account .profile-content .tab-header .tab-filters .dropdown .btn {
    background-color: var(--surface-color);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    padding: 0.625rem 1rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    text-align: left;
    /* Hide Bootstrap's default dropdown caret */
}

@media (min-width: 768px) {
    .account .profile-content .tab-header .tab-filters .dropdown .btn {
        width: auto;
        min-width: 180px;
    }
}

.account .profile-content .tab-header .tab-filters .dropdown .btn.dropdown-toggle::after {
    display: none;
}

.account .profile-content .tab-header .tab-filters .dropdown .btn i {
    margin-left: 0.5rem;
    transition: transform 0.2s ease;
    display: inline-block;
}

.account .profile-content .tab-header .tab-filters .dropdown .btn[aria-expanded=true] i {
    transform: rotate(180deg);
}

.account .profile-content .tab-header .tab-filters .dropdown .dropdown-menu {
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    padding: 0.5rem;
    min-width: 100%;
}

    .account .profile-content .tab-header .tab-filters .dropdown .dropdown-menu .dropdown-item {
        border-radius: 0.5rem;
        padding: 0.5rem 0.75rem;
        font-size: 0.875rem;
    }

        .account .profile-content .tab-header .tab-filters .dropdown .dropdown-menu .dropdown-item:hover,
        .account .profile-content .tab-header .tab-filters .dropdown .dropdown-menu .dropdown-item:focus {
            background-color: rgba(0, 0, 0, 0.02);
        }

        .account .profile-content .tab-header .tab-filters .dropdown .dropdown-menu .dropdown-item:active {
            background-color: rgba(0, 0, 0, 0.03);
        }

.account .profile-content .orders-table {
    background-color: var(--surface-color);
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

    .account .profile-content .orders-table .table-header {
        padding: 1rem 1.5rem;
        background-color: rgba(0, 0, 0, 0.02);
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

        .account .profile-content .orders-table .table-header .sort-header {
            font-weight: 600;
            font-size: 0.875rem;
            display: flex;
            align-items: center;
        }

            .account .profile-content .orders-table .table-header .sort-header i {
                margin-left: 0.5rem;
                font-size: 0.75rem;
                opacity: 0.5;
                cursor: pointer;
                transition: all 0.3s ease;
            }

                .account .profile-content .orders-table .table-header .sort-header i:hover {
                    opacity: 1;
                }

    .account .profile-content .orders-table .order-items .order-item {
        padding: 1.25rem 1.5rem;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        transition: all 0.3s ease;
    }

        .account .profile-content .orders-table .order-items .order-item:hover {
            background-color: rgba(0, 0, 0, 0.02);
        }

        .account .profile-content .orders-table .order-items .order-item:last-child {
            border-bottom: none;
        }

        .account .profile-content .orders-table .order-items .order-item .order-id {
            font-family: var(--heading-font);
            font-weight: 600;
            font-size: 0.875rem;
        }

        .account .profile-content .orders-table .order-items .order-item .order-date {
            font-size: 0.875rem;
            color: color-mix(in srgb, var(--default-color), transparent 30%);
        }

        .account .profile-content .orders-table .order-items .order-item .order-status {
            display: flex;
            align-items: center;
            font-size: 0.875rem;
            font-weight: 500;
        }

            .account .profile-content .orders-table .order-items .order-item .order-status .status-dot {
                width: 8px;
                height: 8px;
                border-radius: 50%;
                margin-right: 0.5rem;
            }

            .account .profile-content .orders-table .order-items .order-item .order-status.in-progress {
                color: #f59e0b;
            }

                .account .profile-content .orders-table .order-items .order-item .order-status.in-progress .status-dot {
                    background-color: #f59e0b;
                }

            .account .profile-content .orders-table .order-items .order-item .order-status.delivered {
                color: #10b981;
            }

                .account .profile-content .orders-table .order-items .order-item .order-status.delivered .status-dot {
                    background-color: #10b981;
                }

            .account .profile-content .orders-table .order-items .order-item .order-status.canceled {
                color: #ef4444;
            }

                .account .profile-content .orders-table .order-items .order-item .order-status.canceled .status-dot {
                    background-color: #ef4444;
                }

        .account .profile-content .orders-table .order-items .order-item .order-total {
            font-weight: 600;
            font-size: 0.875rem;
        }

        .account .profile-content .orders-table .order-items .order-item .order-products {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-top: 1rem;
            padding-top: 1rem;
            border-top: 1px dashed rgba(0, 0, 0, 0.05);
        }

            .account .profile-content .orders-table .order-items .order-item .order-products .product-thumbnails {
                display: flex;
                align-items: center;
            }

                .account .profile-content .orders-table .order-items .order-item .order-products .product-thumbnails .product-thumb {
                    width: 40px;
                    height: 40px;
                    border-radius: 8px;
                    object-fit: cover;
                    margin-right: 0.5rem;
                    border: 1px solid rgba(0, 0, 0, 0.05);
                }

                .account .profile-content .orders-table .order-items .order-item .order-products .product-thumbnails .more-products {
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    width: 40px;
                    height: 40px;
                    border-radius: 8px;
                    background-color: rgba(0, 0, 0, 0.05);
                    color: var(--default-color);
                    font-size: 0.75rem;
                    font-weight: 600;
                }

            .account .profile-content .orders-table .order-items .order-item .order-products .order-details-link {
                display: flex;
                align-items: center;
                justify-content: center;
                width: 32px;
                height: 32px;
                border-radius: 50%;
                background-color: rgba(0, 0, 0, 0.05);
                color: var(--default-color);
                transition: all 0.3s ease;
                border: none;
                cursor: pointer;
            }

                .account .profile-content .orders-table .order-items .order-item .order-products .order-details-link:hover {
                    background-color: rgba(0, 0, 0, 0.1);
                }

                .account .profile-content .orders-table .order-items .order-item .order-products .order-details-link i {
                    transition: transform 0.3s ease;
                }

                .account .profile-content .orders-table .order-items .order-item .order-products .order-details-link[aria-expanded=true] i {
                    transform: rotate(180deg);
                }

    .account .profile-content .orders-table .order-details {
        background-color: rgba(0, 0, 0, 0.01);
        border-top: 1px dashed rgba(0, 0, 0, 0.05);
    }

        .account .profile-content .orders-table .order-details .order-details-content {
            padding: 1.5rem;
        }

            .account .profile-content .orders-table .order-details .order-details-content .order-details-header {
                margin-bottom: 1.5rem;
            }

                .account .profile-content .orders-table .order-details .order-details-content .order-details-header h5 {
                    margin: 0 0 1rem;
                    font-size: 1.125rem;
                    font-weight: 600;
                    padding-bottom: 0.75rem;
                    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
                }

                .account .profile-content .orders-table .order-details .order-details-content .order-details-header .order-info {
                    display: flex;
                    flex-wrap: wrap;
                    gap: 1.5rem;
                }

                    .account .profile-content .orders-table .order-details .order-details-content .order-details-header .order-info .info-item .info-label {
                        font-weight: 500;
                        margin-right: 0.5rem;
                    }

                    .account .profile-content .orders-table .order-details .order-details-content .order-details-header .order-info .info-item .info-value {
                        color: color-mix(in srgb, var(--default-color), transparent 30%);
                    }

            .account .profile-content .orders-table .order-details .order-details-content .order-items-list {
                margin-bottom: 1.5rem;
            }

                .account .profile-content .orders-table .order-details .order-details-content .order-items-list .order-item-detail {
                    display: flex;
                    align-items: center;
                    padding: 1rem 0;
                    border-bottom: 1px dashed rgba(0, 0, 0, 0.05);
                }

                    .account .profile-content .orders-table .order-details .order-details-content .order-items-list .order-item-detail:last-child {
                        border-bottom: none;
                    }

                    .account .profile-content .orders-table .order-details .order-details-content .order-items-list .order-item-detail .item-image {
                        width: 60px;
                        height: 60px;
                        border-radius: 8px;
                        overflow: hidden;
                        margin-right: 1rem;
                        flex-shrink: 0;
                    }

                        .account .profile-content .orders-table .order-details .order-details-content .order-items-list .order-item-detail .item-image img {
                            width: 100%;
                            height: 100%;
                            object-fit: cover;
                        }

                    .account .profile-content .orders-table .order-details .order-details-content .order-items-list .order-item-detail .item-info {
                        flex-grow: 1;
                    }

                        .account .profile-content .orders-table .order-details .order-details-content .order-items-list .order-item-detail .item-info h6 {
                            margin: 0 0 0.25rem;
                            font-size: 0.875rem;
                            font-weight: 600;
                        }

                        .account .profile-content .orders-table .order-details .order-details-content .order-items-list .order-item-detail .item-info .item-meta {
                            font-size: 0.75rem;
                            color: color-mix(in srgb, var(--default-color), transparent 30%);
                        }

                            .account .profile-content .orders-table .order-details .order-details-content .order-items-list .order-item-detail .item-info .item-meta .item-sku {
                                margin-right: 1rem;
                            }

                    .account .profile-content .orders-table .order-details .order-details-content .order-items-list .order-item-detail .item-price {
                        font-weight: 600;
                        font-size: 0.875rem;
                        margin-left: 1rem;
                    }

            .account .profile-content .orders-table .order-details .order-details-content .order-summary {
                background-color: rgba(0, 0, 0, 0.02);
                border-radius: 8px;
                padding: 1rem;
                margin-bottom: 1.5rem;
            }

                .account .profile-content .orders-table .order-details .order-details-content .order-summary .summary-row {
                    display: flex;
                    justify-content: space-between;
                    padding: 0.5rem 0;
                    font-size: 0.875rem;
                }

                    .account .profile-content .orders-table .order-details .order-details-content .order-summary .summary-row.total {
                        border-top: 1px solid rgba(0, 0, 0, 0.05);
                        margin-top: 0.5rem;
                        padding-top: 0.75rem;
                        font-weight: 600;
                        font-size: 1rem;
                        color: #74676f;
                    }

            .account .profile-content .orders-table .order-details .order-details-content .shipping-info {
                display: flex;
                flex-wrap: wrap;
                gap: 2rem;
            }

                .account .profile-content .orders-table .order-details .order-details-content .shipping-info .shipping-address,
                .account .profile-content .orders-table .order-details .order-details-content .shipping-info .shipping-method {
                    flex: 1;
                    min-width: 200px;
                }

                    .account .profile-content .orders-table .order-details .order-details-content .shipping-info .shipping-address h6,
                    .account .profile-content .orders-table .order-details .order-details-content .shipping-info .shipping-method h6 {
                        margin: 0 0 0.5rem;
                        font-size: 0.875rem;
                        font-weight: 600;
                    }

                    .account .profile-content .orders-table .order-details .order-details-content .shipping-info .shipping-address p,
                    .account .profile-content .orders-table .order-details .order-details-content .shipping-info .shipping-method p {
                        margin: 0;
                        font-size: 0.875rem;
                        line-height: 1.6;
                        color: color-mix(in srgb, var(--default-color), transparent 20%);
                    }

            .account .profile-content .orders-table .order-details .order-details-content .cancellation-info {
                margin-top: 1.5rem;
                padding-top: 1.5rem;
                border-top: 1px dashed rgba(0, 0, 0, 0.05);
            }

                .account .profile-content .orders-table .order-details .order-details-content .cancellation-info h6 {
                    margin: 0 0 0.5rem;
                    font-size: 0.875rem;
                    font-weight: 600;
                    color: #ef4444;
                }

                .account .profile-content .orders-table .order-details .order-details-content .cancellation-info p {
                    margin: 0;
                    font-size: 0.875rem;
                    line-height: 1.6;
                    color: color-mix(in srgb, var(--default-color), transparent 20%);
                }

    .account .profile-content .orders-table .pagination-container {
        padding: 1rem 1.5rem;
        display: flex;
        justify-content: center;
        border-top: 1px solid rgba(0, 0, 0, 0.05);
    }

        .account .profile-content .orders-table .pagination-container .pagination .page-item {
            margin: 0 0.25rem;
        }

            .account .profile-content .orders-table .pagination-container .pagination .page-item .page-link {
                width: 36px;
                height: 36px;
                display: flex;
                align-items: center;
                justify-content: center;
                border-radius: 50%;
                border: none;
                color: var(--default-color);
                font-weight: 500;
                transition: all 0.3s ease;
            }

            .account .profile-content .orders-table .pagination-container .pagination .page-item.active .page-link {
                background-color: #74676f;
                color: var(--contrast-color);
            }

            .account .profile-content .orders-table .pagination-container .pagination .page-item:not(.active) .page-link:hover {
                background-color: rgba(0, 0, 0, 0.02);
            }

.account .profile-content .wishlist-items .wishlist-item {
    background-color: var(--surface-color);
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    height: 100%;
    transition: all 0.3s ease;
}

    .account .profile-content .wishlist-items .wishlist-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    }

    .account .profile-content .wishlist-items .wishlist-item .wishlist-image {
        position: relative;
        height: 200px;
        overflow: hidden;
    }

        .account .profile-content .wishlist-items .wishlist-item .wishlist-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .account .profile-content .wishlist-items .wishlist-item .wishlist-image .remove-wishlist {
            position: absolute;
            top: 0.75rem;
            right: 0.75rem;
            width: 28px;
            height: 28px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.9);
            border: none;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #ef4444;
            font-size: 0.75rem;
            opacity: 0;
            transform: translateY(-10px);
            transition: all 0.3s ease;
        }

        .account .profile-content .wishlist-items .wishlist-item .wishlist-image:hover img {
            transform: scale(1.05);
        }

        .account .profile-content .wishlist-items .wishlist-item .wishlist-image:hover .remove-wishlist {
            opacity: 1;
            transform: translateY(0);
        }

    .account .profile-content .wishlist-items .wishlist-item .wishlist-content {
        padding: 1.25rem;
    }

        .account .profile-content .wishlist-items .wishlist-item .wishlist-content h5 {
            margin: 0 0 0.5rem;
            font-size: 1rem;
            font-weight: 600;
            line-height: 1.4;
            height: 2.8em;
            overflow: hidden;
            display: -webkit-box;
            -webkit-box-orient: vertical;
        }

        .account .profile-content .wishlist-items .wishlist-item .wishlist-content .product-price {
            font-weight: 600;
            font-size: 1.125rem;
            color: #74676f;
            margin-bottom: 1rem;
        }

        .account .profile-content .wishlist-items .wishlist-item .wishlist-content .btn-add-cart {
            width: 100%;
            background-color: #74676f;
            color: var(--contrast-color);
            border: none;
            border-radius: 0.5rem;
            padding: 0.625rem 1rem;
            font-weight: 500;
            transition: all 0.3s ease;
        }

            .account .profile-content .wishlist-items .wishlist-item .wishlist-content .btn-add-cart:hover {
                background-color: color-mix(in srgb, #74676f, transparent 15%);
            }

.account .profile-content .payment-methods .payment-method-item {
    background-color: var(--surface-color);
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    position: relative;
}

    .account .profile-content .payment-methods .payment-method-item .payment-card {
        display: flex;
        align-items: center;
    }

        .account .profile-content .payment-methods .payment-method-item .payment-card .card-type {
            width: 48px;
            height: 48px;
            border-radius: 12px;
            background-color: rgba(0, 0, 0, 0.05);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 1rem;
            flex-shrink: 0;
        }

            .account .profile-content .payment-methods .payment-method-item .payment-card .card-type i {
                font-size: 1.5rem;
                color: #74676f;
            }

        .account .profile-content .payment-methods .payment-method-item .payment-card .card-info {
            flex-grow: 1;
        }

            .account .profile-content .payment-methods .payment-method-item .payment-card .card-info .card-number {
                font-weight: 600;
                font-size: 1rem;
                margin-bottom: 0.25rem;
            }

            .account .profile-content .payment-methods .payment-method-item .payment-card .card-info .card-expiry {
                font-size: 0.875rem;
                color: color-mix(in srgb, var(--default-color), transparent 30%);
            }

        .account .profile-content .payment-methods .payment-method-item .payment-card .card-actions {
            display: flex;
            align-items: center;
        }

            .account .profile-content .payment-methods .payment-method-item .payment-card .card-actions button {
                width: 36px;
                height: 36px;
                border-radius: 50%;
                background-color: rgba(0, 0, 0, 0.05);
                border: none;
                display: flex;
                align-items: center;
                justify-content: center;
                color: var(--default-color);
                margin-left: 0.5rem;
                transition: all 0.3s ease;
            }

                .account .profile-content .payment-methods .payment-method-item .payment-card .card-actions button:hover {
                    background-color: rgba(0, 0, 0, 0.1);
                }

                .account .profile-content .payment-methods .payment-method-item .payment-card .card-actions button.btn-delete-card {
                    color: #ef4444;
                }

    .account .profile-content .payment-methods .payment-method-item .default-badge {
        display: inline-block;
        padding: 0.375rem 0.75rem;
        background-color: #e8f4ff;
        color: #74676f;
        font-size: 0.75rem;
        font-weight: 600;
        border-radius: 1rem;
        margin-top: 1rem;
    }

    .account .profile-content .payment-methods .payment-method-item .btn-make-default {
        background-color: #f5f5f5;
        color: var(--default-color);
        border: none;
        border-radius: 0.5rem;
        padding: 0.375rem 0.75rem;
        font-size: 0.75rem;
        font-weight: 500;
        margin-top: 1rem;
        transition: all 0.3s ease;
    }

        .account .profile-content .payment-methods .payment-method-item .btn-make-default:hover {
            background-color: #e9e9e9;
        }

.account .profile-content .btn-add-payment,
.account .profile-content .btn-add-address {
    background-color: #74676f;
    color: var(--contrast-color);
    border: none;
    border-radius: 0.5rem;
    padding: 0.625rem 1rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

    .account .profile-content .btn-add-payment i,
    .account .profile-content .btn-add-address i {
        margin-right: 0.5rem;
    }

    .account .profile-content .btn-add-payment:hover,
    .account .profile-content .btn-add-address:hover {
        background-color: color-mix(in srgb, #74676f, transparent 15%);
    }

.account .profile-content .reviews-list .review-item {
    background-color: var(--surface-color);
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

    .account .profile-content .reviews-list .review-item .review-header {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        margin-bottom: 1rem;
    }

@media (max-width: 575.98px) {
    .account .profile-content .reviews-list .review-item .review-header {
        flex-direction: column;
    }
}

.account .profile-content .reviews-list .review-item .review-header .review-product {
    display: flex;
    align-items: center;
}

    .account .profile-content .reviews-list .review-item .review-header .review-product .product-image {
        width: 60px;
        height: 60px;
        border-radius: 8px;
        object-fit: cover;
        margin-right: 1rem;
        border: 1px solid rgba(0, 0, 0, 0.05);
    }

    .account .profile-content .reviews-list .review-item .review-header .review-product .product-info h5 {
        margin: 0 0 0.25rem;
        font-size: 1rem;
        font-weight: 600;
    }

    .account .profile-content .reviews-list .review-item .review-header .review-product .product-info .review-date {
        font-size: 0.75rem;
        color: color-mix(in srgb, var(--default-color), transparent 30%);
    }

.account .profile-content .reviews-list .review-item .review-header .review-rating {
    display: flex;
    align-items: center;
    margin-left: 1rem;
}

@media (max-width: 575.98px) {
    .account .profile-content .reviews-list .review-item .review-header .review-rating {
        margin-left: 0;
        margin-top: 1rem;
    }
}

.account .profile-content .reviews-list .review-item .review-header .review-rating i {
    color: #f59e0b;
    margin-right: 0.25rem;
}

    .account .profile-content .reviews-list .review-item .review-header .review-rating i:last-child {
        margin-right: 0;
    }

.account .profile-content .reviews-list .review-item .review-content {
    margin-bottom: 1rem;
}

    .account .profile-content .reviews-list .review-item .review-content p {
        margin: 0;
        font-size: 0.875rem;
        line-height: 1.6;
    }

.account .profile-content .reviews-list .review-item .review-actions {
    display: flex;
    justify-content: flex-end;
}

    .account .profile-content .reviews-list .review-item .review-actions button {
        background-color: #f5f5f5;
        color: var(--default-color);
        border: none;
        border-radius: 0.5rem;
        padding: 0.375rem 0.75rem;
        font-size: 0.75rem;
        font-weight: 500;
        margin-left: 0.5rem;
        transition: all 0.3s ease;
    }

        .account .profile-content .reviews-list .review-item .review-actions button:hover {
            background-color: #e9e9e9;
        }

        .account .profile-content .reviews-list .review-item .review-actions button.btn-delete-review {
            color: #ef4444;
        }

.account .profile-content .personal-info-form {
    background-color: var(--surface-color);
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    padding: 1.5rem;
}

    .account .profile-content .personal-info-form .form-label {
        font-weight: 500;
        font-size: 0.875rem;
        margin-bottom: 0.5rem;
    }

    .account .profile-content .personal-info-form .form-control {
        border-radius: 0.5rem;
        padding: 0.625rem 1rem;
        border: 1px solid rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
    }

        .account .profile-content .personal-info-form .form-control:focus {
            border-color: #74676f;
            box-shadow: 0 0 0 0.25rem rgba(54, 144, 231, 0.1);
        }

    .account .profile-content .personal-info-form .form-check-input:checked {
        background-color: #74676f;
        border-color: #74676f;
    }

    .account .profile-content .personal-info-form .form-check-input:focus {
        border-color: #74676f;
        box-shadow: 0 0 0 0.25rem rgba(54, 144, 231, 0.1);
    }

    .account .profile-content .personal-info-form .btn-save {
        background-color: #74676f;
        color: var(--contrast-color);
        border: none;
        border-radius: 0.5rem;
        padding: 0.625rem 1.5rem;
        font-weight: 500;
        transition: all 0.3s ease;
    }

        .account .profile-content .personal-info-form .btn-save:hover {
            background-color: color-mix(in srgb, #74676f, transparent 15%);
        }

.account .profile-content .addresses-list .address-item {
    background-color: var(--surface-color);
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    padding: 1.5rem;
    height: 100%;
    position: relative;
}

    .account .profile-content .addresses-list .address-item .address-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 1rem;
    }

        .account .profile-content .addresses-list .address-item .address-header h5 {
            margin: 0;
            font-size: 1rem;
            font-weight: 600;
        }

        .account .profile-content .addresses-list .address-item .address-header .address-actions {
            display: flex;
            align-items: center;
        }

            .account .profile-content .addresses-list .address-item .address-header .address-actions button {
                width: 32px;
                height: 32px;
                border-radius: 50%;
                background-color: rgba(0, 0, 0, 0.05);
                border: none;
                display: flex;
                align-items: center;
                justify-content: center;
                color: var(--default-color);
                margin-left: 0.5rem;
                transition: all 0.3s ease;
            }

                .account .profile-content .addresses-list .address-item .address-header .address-actions button:hover {
                    background-color: rgba(0, 0, 0, 0.1);
                }

                .account .profile-content .addresses-list .address-item .address-header .address-actions button.btn-delete-address {
                    color: #ef4444;
                }

    .account .profile-content .addresses-list .address-item .address-content {
        margin-bottom: 1rem;
    }

        .account .profile-content .addresses-list .address-item .address-content p {
            margin: 0;
            font-size: 0.875rem;
            line-height: 1.6;
        }

    .account .profile-content .addresses-list .address-item .default-badge {
        display: inline-block;
        padding: 0.375rem 0.75rem;
        background-color: #e8f4ff;
        color: #74676f;
        font-size: 0.75rem;
        font-weight: 600;
        border-radius: 1rem;
    }

    .account .profile-content .addresses-list .address-item .btn-make-default {
        background-color: #f5f5f5;
        color: var(--default-color);
        border: none;
        border-radius: 0.5rem;
        padding: 0.375rem 0.75rem;
        font-size: 0.75rem;
        font-weight: 500;
        transition: all 0.3s ease;
    }

        .account .profile-content .addresses-list .address-item .btn-make-default:hover {
            background-color: #e9e9e9;
        }

.account .profile-content .notifications-settings {
    background-color: var(--surface-color);
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    padding: 1.5rem;
}

    .account .profile-content .notifications-settings .notification-group {
        margin-bottom: 2rem;
    }

        .account .profile-content .notifications-settings .notification-group:last-of-type {
            margin-bottom: 1.5rem;
        }

        .account .profile-content .notifications-settings .notification-group h5 {
            margin: 0 0 1rem;
            font-size: 1rem;
            font-weight: 600;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        }

        .account .profile-content .notifications-settings .notification-group .notification-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0.75rem 0;
            border-bottom: 1px dashed rgba(0, 0, 0, 0.05);
        }

            .account .profile-content .notifications-settings .notification-group .notification-item:last-child {
                border-bottom: none;
            }

            .account .profile-content .notifications-settings .notification-group .notification-item .notification-info .notification-title {
                font-weight: 500;
                margin-bottom: 0.25rem;
            }

            .account .profile-content .notifications-settings .notification-group .notification-item .notification-info .notification-desc {
                font-size: 0.75rem;
                color: color-mix(in srgb, var(--default-color), transparent 30%);
            }

            .account .profile-content .notifications-settings .notification-group .notification-item .form-check-input {
                width: 2.5rem;
                height: 1.25rem;
                margin-left: 1rem;
            }

                .account .profile-content .notifications-settings .notification-group .notification-item .form-check-input:checked {
                    background-color: #74676f;
                    border-color: #74676f;
                }

    .account .profile-content .notifications-settings .notification-actions {
        display: flex;
        justify-content: flex-end;
    }

        .account .profile-content .notifications-settings .notification-actions .btn-save {
            background-color: #74676f;
            color: var(--contrast-color);
            border: none;
            border-radius: 0.5rem;
            padding: 0.625rem 1.5rem;
            font-weight: 500;
            transition: all 0.3s ease;
        }

            .account .profile-content .notifications-settings .notification-actions .btn-save:hover {
                background-color: color-mix(in srgb, #74676f, transparent 15%);
            }

/*--------------------------------------------------------------
# Login Section
--------------------------------------------------------------*/
.login {
    position: relative;
}

    .login .login-form-wrapper {
        padding: 50px 40px;
        background-color: var(--surface-color);
        border-radius: 20px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        position: relative;
        overflow: hidden;
    }

        .login .login-form-wrapper::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 6px;
            background: linear-gradient(90deg, #74676f, color-mix(in srgb, #74676f, #000 15%));
        }

        .login .login-form-wrapper:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
        }

@media (max-width: 767.98px) {
    .login .login-form-wrapper {
        padding: 40px 25px;
    }
}

.login .login-header {
    margin-bottom: 35px;
}

    .login .login-header h2 {
        font-size: 32px;
        font-weight: 700;
        margin-bottom: 12px;
        background: linear-gradient(90deg, var(--heading-color), #74676f);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .login .login-header p {
        color: color-mix(in srgb, var(--default-color), transparent 30%);
        font-size: 16px;
    }

.login .form-label {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 10px;
    color: var(--heading-color);
    letter-spacing: 0.3px;
}

.login .form-control {
    padding: 14px 18px;
    border-radius: 4px;
    border: 2px solid color-mix(in srgb, var(--default-color), transparent 85%);
    background-color: var(--surface-color);
    font-size: 15px;
    transition: all 0.3s ease;
    color: var(--default-color);
}

    .login .form-control:focus {
        border-color: #74676f;
        box-shadow: none;
    }

    .login .form-control::placeholder {
        color: color-mix(in srgb, var(--default-color), transparent 60%);
    }

.login .forgot-link {
    font-size: 13px;
    color: #74676f;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

    .login .forgot-link:hover {
        color: color-mix(in srgb, #74676f, transparent 25%);
        text-decoration: underline;
    }

.login .form-check .form-check-input {
    width: 20px;
    height: 20px;
    margin-top: 0.2em;
    border: 2px solid color-mix(in srgb, var(--default-color), transparent 70%);
    border-radius: 6px;
}

    .login .form-check .form-check-input:checked {
        background-color: #74676f;
        border-color: #74676f;
    }

    .login .form-check .form-check-input:focus {
        box-shadow: 0 0 0 0.25rem color-mix(in srgb, #74676f, transparent 80%);
        border-color: #74676f;
    }

.login .form-check .form-check-label {
    font-size: 14px;
    padding-left: 6px;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.login .btn {
    padding: 14px 24px;
    font-weight: 600;
    font-size: 15px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

    .login .btn.btn-primary {
        background: linear-gradient(90deg, #74676f, color-mix(in srgb, #74676f, #000 15%));
        border: none;
        color: var(--contrast-color);
    }

        .login .btn.btn-primary:hover {
            background: linear-gradient(90deg, color-mix(in srgb, #74676f, #000 10%), #74676f);
            transform: translateY(-2px);
            box-shadow: 0 8px 20px color-mix(in srgb, #74676f, transparent 70%);
        }

        .login .btn.btn-primary:active {
            transform: translateY(0);
        }

    .login .btn.btn-outline {
        background-color: transparent;
        border: 2px solid color-mix(in srgb, var(--default-color), transparent 85%);
        color: var(--default-color);
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .login .btn.btn-outline:hover {
            background-color: color-mix(in srgb, var(--default-color), transparent 95%);
            border-color: color-mix(in srgb, var(--default-color), transparent 70%);
            transform: translateY(-2px);
        }

        .login .btn.btn-outline i {
            font-size: 18px;
        }

.login .signup-link {
    margin-top: 25px;
}

    .login .signup-link span {
        color: color-mix(in srgb, var(--default-color), transparent 30%);
        font-size: 14px;
    }

    .login .signup-link a {
        color: #74676f;
        font-weight: 600;
        text-decoration: none;
        margin-left: 5px;
        transition: color 0.3s;
    }

        .login .signup-link a:hover {
            color: color-mix(in srgb, #74676f, transparent 25%);
            text-decoration: underline;
        }

/*--------------------------------------------------------------
# Register Section
--------------------------------------------------------------*/
.register .registration-form-wrapper {
    background-color: var(--surface-color);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

    .register .registration-form-wrapper::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 6px;
        background: linear-gradient(90deg, #74676f, color-mix(in srgb, #74676f, #000 15%));
    }

    .register .registration-form-wrapper:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
    }

    .register .registration-form-wrapper .section-header h2 {
        font-size: 2rem;
        font-weight: 700;
        margin-bottom: 0.5rem;
    }

    .register .registration-form-wrapper .section-header p {
        color: color-mix(in srgb, var(--default-color), transparent 40%);
    }

    .register .registration-form-wrapper label {
        color: var(--heading-color);
        font-weight: 500;
        margin-bottom: 0.5rem;
        font-size: 0.9rem;
    }

    .register .registration-form-wrapper .form-control {
        padding: 0.75rem 1rem;
        font-size: 0.95rem;
        border-color: color-mix(in srgb, var(--default-color), transparent 80%);
        transition: all 0.3s ease-in-out;
        background-color: transparent;
        border: 2px solid color-mix(in srgb, var(--default-color), transparent 85%);
        color: var(--default-color);
    }

        .register .registration-form-wrapper .form-control:focus {
            box-shadow: none;
            border-color: #74676f;
        }

        .register .registration-form-wrapper .form-control::placeholder {
            color: color-mix(in srgb, var(--default-color), transparent 70%);
            font-size: 0.9rem;
        }

    .register .registration-form-wrapper .password-input {
        position: relative;
    }

        .register .registration-form-wrapper .password-input .toggle-password {
            position: absolute;
            right: 1rem;
            top: 50%;
            transform: translateY(-50%);
            cursor: pointer;
            color: color-mix(in srgb, var(--default-color), transparent 50%);
            transition: color 0.3s ease;
            font-size: 1.1rem;
        }

            .register .registration-form-wrapper .password-input .toggle-password:hover {
                color: var(--heading-color);
            }

    .register .registration-form-wrapper .password-requirements {
        font-size: 0.8rem;
        margin-top: 0.5rem;
        display: block;
    }

    .register .registration-form-wrapper .form-check .form-check-input {
        float: none;
        margin-left: 0;
        margin-right: 0.5rem;
        cursor: pointer;
    }

        .register .registration-form-wrapper .form-check .form-check-input:checked {
            background-color: #74676f;
            border-color: #74676f;
        }

        .register .registration-form-wrapper .form-check .form-check-input:focus {
            box-shadow: 0 0 0 0.2rem color-mix(in srgb, #74676f, transparent 85%);
        }

    .register .registration-form-wrapper .form-check .form-check-label {
        color: var(--default-color);
        font-weight: normal;
        cursor: pointer;
    }

        .register .registration-form-wrapper .form-check .form-check-label a {
            text-decoration: underline;
        }

            .register .registration-form-wrapper .form-check .form-check-label a:hover {
                text-decoration: none;
            }

    .register .registration-form-wrapper .btn-primary {
        padding: 0.75rem 2rem;
        font-weight: 500;
        background-color: #74676f;
        border-color: #74676f;
        transition: all 0.3s ease;
    }

        .register .registration-form-wrapper .btn-primary:hover {
            background-color: color-mix(in srgb, #74676f, transparent 15%);
            border-color: color-mix(in srgb, #74676f, transparent 15%);
            transform: translateY(-1px);
        }

        .register .registration-form-wrapper .btn-primary:active {
            transform: translateY(0);
        }

    .register .registration-form-wrapper .loading,
    .register .registration-form-wrapper .error-message,
    .register .registration-form-wrapper .sent-message {
        margin: 1rem 0;
    }

@media (max-width: 767.98px) {
    .register .register-form {
        padding: 1.5rem;
    }

        .register .register-form .section-header h2 {
            font-size: 1.75rem;
        }
}

/*--------------------------------------------------------------
# About 2 Section
--------------------------------------------------------------*/
.about-2 .small-title {
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: #74676f;
}

.about-2 .about-title {
    font-size: 2.2rem;
    margin: 0 0 1rem 0;
    font-weight: 700;
    line-height: 1.2;
}

@media (max-width: 992px) {
    .about-2 .about-title {
        font-size: 1.6rem;
    }
}

.about-2 .about-description {
    color: color-mix(in srgb, var(--default-color), transparent 25%);
    font-size: 1.125rem;
    line-height: 1.6;
}

@media (min-width: 992px) {
    .about-2 .description-wrapper {
        border-left: 1px solid #74676f;
        padding-left: 30px;
    }
}

.about-2 .content-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

    .about-2 .content-card .card-image {
        margin-bottom: 1.5rem;
        overflow: hidden;
        border-radius: 12px;
    }

        .about-2 .content-card .card-image img {
            transition: transform 0.5s ease;
        }

    .about-2 .content-card .card-content {
        flex: 1;
        display: flex;
        flex-direction: column;
    }

        .about-2 .content-card .card-content h3 {
            font-size: 1.2rem;
            margin-bottom: 1rem;
            font-weight: 700;
        }

        .about-2 .content-card .card-content p {
            color: color-mix(in srgb, var(--default-color), transparent 25%);
            margin-bottom: 1.5rem;
            flex: 1;
        }

        .about-2 .content-card .card-content .read-more {
            font-weight: 500;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }

            .about-2 .content-card .card-content .read-more:hover {
                gap: 0.75rem;
            }

                .about-2 .content-card .card-content .read-more:hover i {
                    transform: translateX(5px);
                }

            .about-2 .content-card .card-content .read-more i {
                transition: transform 0.3s ease;
            }

    .about-2 .content-card:hover .card-image img {
        transform: scale(1.05);
    }

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats .stats-item {
    padding: 30px;
    width: 100%;
}

    .stats .stats-item i {
        color: #74676f;
        display: block;
        font-size: 44px;
        float: left;
        line-height: 0;
    }

    .stats .stats-item .purecounter {
        color: var(--heading-color);
        font-size: 48px;
        line-height: 40px;
        display: block;
        font-weight: 700;
        margin-left: 60px;
    }

    .stats .stats-item p {
        color: color-mix(in srgb, var(--default-color), transparent 40%);
        padding: 15px 0 0 0;
        margin: 0 0 0 60px;
        font-family: var(--heading-font);
        font-size: 14px;
    }

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonials-slider {
    width: 100%;
    position: relative;
    padding-bottom: 60px;
}

.testimonials .swiper-wrapper {
    height: auto;
}

.testimonials .testimonial-item {
    background-color: var(--surface-color);
    padding: 40px;
    border-radius: 20px;
}

@media (max-width: 575px) {
    .testimonials .testimonial-item {
        padding: 20px;
    }
}

.testimonials .testimonial-item h2 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
}

.testimonials .testimonial-item p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
    font-style: italic;
}

.testimonials .testimonial-item .profile {
    gap: 15px;
}

    .testimonials .testimonial-item .profile .profile-img {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        object-fit: cover;
    }

    .testimonials .testimonial-item .profile .profile-info h3 {
        font-size: 18px;
        margin: 0;
        font-weight: 600;
    }

    .testimonials .testimonial-item .profile .profile-info span {
        font-size: 14px;
        color: color-mix(in srgb, var(--default-color) 70%, transparent);
    }

.testimonials .testimonial-item .featured-img-wrapper {
    min-height: 400px;
    position: relative;
    overflow: hidden;
    border-radius: 16px;
}

.testimonials .testimonial-item .featured-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.testimonials .swiper-navigation {
    position: absolute;
    bottom: 0;
    gap: 10px;
}

.testimonials .swiper-button-prev,
.testimonials .swiper-button-next {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    margin: 0;
    width: 44px;
    height: 44px;
    background-color: var(--surface-color);
    border-radius: 50%;
    border: 1px solid color-mix(in srgb, var(--default-color) 10%, transparent);
    transition: 0.3s;
}

    .testimonials .swiper-button-prev::after,
    .testimonials .swiper-button-next::after {
        font-size: 20px;
        color: var(--default-color);
    }

    .testimonials .swiper-button-prev:hover,
    .testimonials .swiper-button-next:hover {
        background-color: #74676f;
        border-color: #74676f;
    }

        .testimonials .swiper-button-prev:hover::after,
        .testimonials .swiper-button-next:hover::after {
            color: var(--contrast-color);
        }

/*--------------------------------------------------------------
# Contact 2 Section
--------------------------------------------------------------*/
.contact-2 {
    padding-top: 5px;
}

    .contact-2 .info-item + .info-item {
        margin-top: 40px;
    }

    .contact-2 .info-item i {
        color: var(--contrast-color);
        background: #74676f;
        font-size: 20px;
        width: 44px;
        height: 44px;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 4px;
        transition: all 0.3s ease-in-out;
        margin-right: 15px;
    }

    .contact-2 .info-item h3 {
        padding: 0;
        font-size: 18px;
        font-weight: 700;
        margin-bottom: 5px;
    }

    .contact-2 .info-item p {
        padding: 0;
        margin-bottom: 0;
        font-size: 14px;
    }

    .contact-2 .php-email-form {
        height: 100%;
    }

        .contact-2 .php-email-form input[type=text],
        .contact-2 .php-email-form input[type=email],
        .contact-2 .php-email-form textarea {
            font-size: 14px;
            padding: 10px 15px;
            box-shadow: none;
            border-radius: 0;
            color: var(--default-color);
            background-color: color-mix(in srgb, var(--background-color), transparent 50%);
            border-color: color-mix(in srgb, var(--default-color), transparent 80%);
        }

            .contact-2 .php-email-form input[type=text]:focus,
            .contact-2 .php-email-form input[type=email]:focus,
            .contact-2 .php-email-form textarea:focus {
                border-color: #74676f;
            }

            .contact-2 .php-email-form input[type=text]::placeholder,
            .contact-2 .php-email-form input[type=email]::placeholder,
            .contact-2 .php-email-form textarea::placeholder {
                color: color-mix(in srgb, var(--default-color), transparent 70%);
            }

        .contact-2 .php-email-form button[type=submit] {
            color: var(--contrast-color);
            background: #74676f;
            border: 0;
            padding: 10px 30px;
            transition: 0.4s;
            border-radius: 4px;
        }

            .contact-2 .php-email-form button[type=submit]:hover {
                background: color-mix(in srgb, #74676f, transparent 20%);
            }

/*--------------------------------------------------------------
# Support Section
--------------------------------------------------------------*/
.support .section-heading {
    text-align: center;
    margin-bottom: 40px;
}

    .support .section-heading h3 {
        font-size: 2rem;
        margin-bottom: 10px;
    }

    .support .section-heading p {
        color: color-mix(in srgb, var(--default-color), transparent 30%);
    }

.support .help-categories {
    margin-bottom: 60px;
}

    .support .help-categories .category-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

@media (max-width: 576px) {
    .support .help-categories .category-grid {
        grid-template-columns: 1fr;
    }
}

.support .category-card {
    background-color: var(--surface-color);
    border-radius: 15px;
    padding: 30px;
    text-decoration: none;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

    .support .category-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

        .support .category-card:hover .icon {
            background-color: #74676f;
        }

            .support .category-card:hover .icon i {
                color: var(--contrast-color);
            }

    .support .category-card .icon {
        width: 80px;
        height: 80px;
        background-color: color-mix(in srgb, #74676f, transparent 90%);
        border-radius: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 20px;
        transition: all 0.3s;
    }

        .support .category-card .icon i {
            font-size: 2rem;
            color: #74676f;
            transition: color 0.3s;
        }

    .support .category-card h4 {
        color: var(--heading-color);
        margin-bottom: 10px;
        font-size: 1.25rem;
    }

    .support .category-card p {
        color: color-mix(in srgb, var(--default-color), transparent 30%);
        margin: 0;
        font-size: 0.95rem;
    }

.support .help-topics {
    margin-bottom: 60px;
}

    .support .help-topics .topics-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

@media (max-width: 767px) {
    .support .help-topics .topics-grid {
        grid-template-columns: 1fr;
    }
}

.support .help-topics .topic-item {
    background-color: var(--surface-color);
    border-radius: 15px;
    padding: 30px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

    .support .help-topics .topic-item::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 4px;
        height: 0;
        background-color: #74676f;
        transition: height 0.3s;
    }

    .support .help-topics .topic-item:hover {
        transform: translateX(5px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

        .support .help-topics .topic-item:hover::before {
            height: 100%;
        }

        .support .help-topics .topic-item:hover .learn-more i {
            transform: translateX(5px);
        }

    .support .help-topics .topic-item i {
        font-size: 2rem;
        color: #74676f;
        margin-bottom: 20px;
        display: block;
    }

    .support .help-topics .topic-item h5 {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }

    .support .help-topics .topic-item p {
        color: color-mix(in srgb, var(--default-color), transparent 30%);
        margin-bottom: 20px;
        font-size: 0.95rem;
    }

    .support .help-topics .topic-item .learn-more {
        color: #74676f;
        text-decoration: none;
        font-weight: 500;
        display: flex;
        align-items: center;
        gap: 5px;
    }

        .support .help-topics .topic-item .learn-more i {
            font-size: 1.1rem;
            margin: 0;
            transition: transform 0.3s;
        }

.support .faq-section {
    margin-bottom: 60px;
}

    .support .faq-section .faq-list {
        max-width: 800px;
        margin: 0 auto;
    }

        .support .faq-section .faq-list .faq-item {
            background-color: var(--surface-color);
            border-radius: 15px;
            margin-bottom: 15px;
            overflow: hidden;
        }

            .support .faq-section .faq-list .faq-item h3 {
                margin: 0;
                padding: 20px 25px;
                font-size: 1.1rem;
                cursor: pointer;
                display: flex;
                align-items: center;
                justify-content: space-between;
                color: var(--heading-color);
                transition: all 0.3s;
            }

                .support .faq-section .faq-list .faq-item h3 i {
                    transition: transform 0.3s;
                    font-size: 1.2rem;
                }

            .support .faq-section .faq-list .faq-item .faq-answer {
                display: none;
                padding: 25px 20px;
            }

                .support .faq-section .faq-list .faq-item .faq-answer p {
                    margin: 0;
                    color: color-mix(in srgb, var(--default-color), transparent 30%);
                }

            .support .faq-section .faq-list .faq-item.faq-active h3 {
                color: #74676f;
                background-color: color-mix(in srgb, #74676f, transparent 95%);
            }

                .support .faq-section .faq-list .faq-item.faq-active h3 i {
                    transform: rotate(180deg);
                }

            .support .faq-section .faq-list .faq-item.faq-active .faq-answer {
                display: block;
            }

.support .support-sidebar {
    position: sticky;
    top: 100px;
}

    .support .support-sidebar > div {
        background-color: var(--surface-color);
        border-radius: 15px;
        padding: 30px;
        margin-bottom: 30px;
    }

        .support .support-sidebar > div:last-child {
            margin-bottom: 0;
        }

    .support .support-sidebar .contact-support {
        text-align: center;
    }

        .support .support-sidebar .contact-support .icon-box {
            width: 80px;
            height: 80px;
            background-color: color-mix(in srgb, #74676f, transparent 90%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
        }

            .support .support-sidebar .contact-support .icon-box i {
                font-size: 2.5rem;
                color: #74676f;
            }

        .support .support-sidebar .contact-support h4 {
            margin-bottom: 10px;
        }

        .support .support-sidebar .contact-support p {
            color: color-mix(in srgb, var(--default-color), transparent 30%);
            margin-bottom: 25px;
        }

        .support .support-sidebar .contact-support .support-actions {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

            .support .support-sidebar .contact-support .support-actions a {
                display: flex;
                align-items: center;
                justify-content: center;
                gap: 10px;
                padding: 12px 20px;
                border-radius: 30px;
                text-decoration: none;
                font-weight: 500;
                transition: all 0.3s;
            }

                .support .support-sidebar .contact-support .support-actions a i {
                    font-size: 1.2rem;
                }

            .support .support-sidebar .contact-support .support-actions .btn-chat {
                background-color: #74676f;
                color: var(--contrast-color);
            }

                .support .support-sidebar .contact-support .support-actions .btn-chat:hover {
                    background-color: color-mix(in srgb, #74676f, black 20%);
                }

            .support .support-sidebar .contact-support .support-actions .btn-email {
                background-color: color-mix(in srgb, #74676f, transparent 90%);
                color: #74676f;
            }

                .support .support-sidebar .contact-support .support-actions .btn-email:hover {
                    background-color: color-mix(in srgb, #74676f, transparent 80%);
                }

            .support .support-sidebar .contact-support .support-actions .divider {
                text-align: center;
                color: color-mix(in srgb, var(--default-color), transparent 50%);
                font-size: 0.9rem;
                margin: 5px 0;
            }

            .support .support-sidebar .contact-support .support-actions .phone-number {
                color: var(--heading-color);
                font-size: 1.1rem;
            }

                .support .support-sidebar .contact-support .support-actions .phone-number:hover {
                    color: #74676f;
                }

    .support .support-sidebar .support-resources h5 {
        margin-bottom: 20px;
    }

    .support .support-sidebar .support-resources ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

        .support .support-sidebar .support-resources ul li {
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 12px;
        }

            .support .support-sidebar .support-resources ul li:last-child {
                margin-bottom: 0;
            }

            .support .support-sidebar .support-resources ul li i {
                color: #74676f;
                font-size: 1.2rem;
            }

            .support .support-sidebar .support-resources ul li a {
                color: var(--heading-color);
                text-decoration: none;
                transition: color 0.3s;
            }

                .support .support-sidebar .support-resources ul li a:hover {
                    color: #74676f;
                }

    .support .support-sidebar .business-hours h5 {
        margin-bottom: 20px;
    }

    .support .support-sidebar .business-hours ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

        .support .support-sidebar .business-hours ul li {
            display: flex;
            justify-content: space-between;
            margin-bottom: 15px;
            color: color-mix(in srgb, var(--default-color), transparent 30%);
        }

            .support .support-sidebar .business-hours ul li:last-child {
                margin-bottom: 0;
            }

            .support .support-sidebar .business-hours ul li span:last-child {
                font-weight: 500;
                color: var(--heading-color);
            }

@media (max-width: 991px) {
    .support .support-sidebar {
        position: static;
        margin-top: 40px;
    }
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .faq-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--heading-color);
}

.faq .faq-description {
    font-size: 1rem;
    color: var(--default-color);
    margin-bottom: 2rem;
}

.faq .faq-arrow {
    color: #74676f;
}

.faq .faq-container .faq-item {
    background-color: var(--surface-color);
    position: relative;
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
}

    .faq .faq-container .faq-item:last-child {
        margin-bottom: 0;
    }

    .faq .faq-container .faq-item h3 {
        font-weight: 600;
        font-size: 16px;
        line-height: 24px;
        margin: 0 30px 0 0;
        transition: 0.3s;
        cursor: pointer;
        display: flex;
        align-items: center;
    }

        .faq .faq-container .faq-item h3 .num {
            color: #74676f;
            padding-right: 5px;
        }

        .faq .faq-container .faq-item h3:hover {
            color: #74676f;
        }

    .faq .faq-container .faq-item .faq-content {
        display: grid;
        grid-template-rows: 0fr;
        transition: 0.3s ease-in-out;
        visibility: hidden;
        opacity: 0;
    }

        .faq .faq-container .faq-item .faq-content p {
            margin-bottom: 0;
            overflow: hidden;
        }

    .faq .faq-container .faq-item .faq-toggle {
        position: absolute;
        top: 20px;
        right: 20px;
        font-size: 16px;
        line-height: 0;
        transition: 0.3s;
        cursor: pointer;
    }

        .faq .faq-container .faq-item .faq-toggle:hover {
            color: #74676f;
        }

.faq .faq-container .faq-active h3 {
    color: #74676f;
}

.faq .faq-container .faq-active .faq-content {
    grid-template-rows: 1fr;
    visibility: visible;
    opacity: 1;
    padding-top: 10px;
}

.faq .faq-container .faq-active .faq-toggle {
    transform: rotate(90deg);
    color: #74676f;
}

/*--------------------------------------------------------------
# Blog Hero Section
--------------------------------------------------------------*/
.blog-hero .blog-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.blog-hero .blog-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background-color: var(--surface-color);
    box-shadow: 0 5px 15px color-mix(in srgb, bl, transparent 92%);
    transition: all 0.3s ease;
}

    .blog-hero .blog-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px color-mix(in srgb, var(--default-color), transparent 85%);
    }

        .blog-hero .blog-item:hover img {
            transform: scale(1.05);
        }

        .blog-hero .blog-item:hover .blog-content {
            background: linear-gradient(0deg, color-mix(in srgb, black, transparent 15%) 0%, transparent 100%);
        }

    .blog-hero .blog-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
    }

    .blog-hero .blog-item .blog-content {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 2rem;
        background: linear-gradient(0deg, color-mix(in srgb, black, transparent 25%) 0%, transparent 100%);
        transition: background 0.3s ease;
    }

.blog-hero .main-feature {
    aspect-ratio: 21/9;
}

    .blog-hero .main-feature .post-title {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

@media (max-width: 991px) {
    .blog-hero .main-feature .post-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .blog-hero .main-feature .post-title {
        font-size: 1.5rem;
    }
}

.blog-hero .main-feature .post-excerpt {
    color: var(--contrast-color);
    font-size: 1.1rem;
    margin: 0;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

@media (max-width: 768px) {
    .blog-hero .main-feature .post-excerpt {
        display: none;
    }
}

.blog-hero .secondary-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

@media (max-width: 768px) {
    .blog-hero .secondary-features {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

.blog-hero .secondary-features .blog-item {
    aspect-ratio: 3/4;
}

.blog-hero .regular-posts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

@media (max-width: 991px) {
    .blog-hero .regular-posts {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .blog-hero .regular-posts {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

.blog-hero .regular-posts .blog-item {
    aspect-ratio: 16/9;
}

.blog-hero .post-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
    color: var(--contrast-color);
}

    .blog-hero .post-meta .date,
    .blog-hero .post-meta .category {
        display: flex;
        align-items: center;
    }

        .blog-hero .post-meta .date::before,
        .blog-hero .post-meta .category::before {
            font-family: "bootstrap-icons";
            margin-right: 0.5rem;
            font-size: 1rem;
        }

        .blog-hero .post-meta .date::before {
            content: "\f282";
        }

        .blog-hero .post-meta .category::before {
            content: "\f5d3";
        }

.blog-hero .post-title {
    margin: 0;
    font-family: var(--heading-font);
}

    .blog-hero .post-title a {
        color: var(--contrast-color);
        text-decoration: none;
    }

        .blog-hero .post-title a:hover {
            color: color-mix(in srgb, var(--contrast-color), transparent 20%);
        }

    .blog-hero .post-title:not(h2) {
        font-size: 1.25rem;
    }

@media (max-width: 991px) {
    .blog-hero .post-title:not(h2) {
        font-size: 1.1rem;
    }
}

/*--------------------------------------------------------------
# Recent Posts Section
--------------------------------------------------------------*/
.recent-posts article {
    margin-bottom: 30px;
}

.recent-posts .post-img {
    overflow: hidden;
    aspect-ratio: 4/3;
}

    .recent-posts .post-img::after {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 60%);
    }

    .recent-posts .post-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: 0.3s;
    }

    .recent-posts .post-img:hover img {
        transform: scale(1.1);
    }

.recent-posts .post-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    z-index: 2;
    color: var(--contrast-color);
}

.recent-posts .post-category {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    color: var(--contrast-color);
}

.recent-posts .title {
    margin-bottom: 15px;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
}

    .recent-posts .title a {
        color: var(--contrast-color);
        transition: 0.3s;
    }

        .recent-posts .title a:hover {
            color: color-mix(in srgb, var(--contrast-color), transparent 20%);
        }

.recent-posts .post-meta {
    font-size: 14px;
    color: color-mix(in srgb, var(--contrast-color), transparent 20%);
}

    .recent-posts .post-meta span {
        display: inline-block;
    }

@media (max-width: 768px) {
    .recent-posts .post-content {
        padding: 20px;
    }

    .recent-posts .title {
        font-size: 18px;
    }

    .recent-posts .post-meta {
        font-size: 13px;
    }
}

/*--------------------------------------------------------------
# Blog Pagination Section
--------------------------------------------------------------*/
.blog-pagination {
    padding-top: 0;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
}

    .blog-pagination ul {
        display: flex;
        padding: 0;
        margin: 0;
        list-style: none;
    }

    .blog-pagination li {
        margin: 0 5px;
        transition: 0.3s;
    }

        .blog-pagination li a {
            color: #74676f;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            border: 1px solid #74676f;
        }

            .blog-pagination li a.active,
            .blog-pagination li a:hover {
                background: #74676f;
                color: var(--contrast-color);
            }

                .blog-pagination li a.active a,
                .blog-pagination li a:hover a {
                    color: var(--contrast-color);
                }

/*--------------------------------------------------------------
# Blog Details Section
--------------------------------------------------------------*/
.blog-details {
    padding-bottom: 30px;
}

    .blog-details .article {
        background-color: var(--surface-color);
        padding: 30px;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    }

    .blog-details .post-img {
        margin: -30px -30px 20px -30px;
        overflow: hidden;
    }

    .blog-details .title {
        color: var(--heading-color);
        font-size: 28px;
        font-weight: 700;
        padding: 0;
        margin: 30px 0;
    }

    .blog-details .content {
        margin-top: 20px;
    }

        .blog-details .content h3 {
            font-size: 22px;
            margin-top: 30px;
            font-weight: bold;
        }

        .blog-details .content blockquote {
            overflow: hidden;
            background-color: color-mix(in srgb, var(--default-color), transparent 95%);
            padding: 60px;
            position: relative;
            text-align: center;
            margin: 20px 0;
        }

            .blog-details .content blockquote p {
                color: var(--default-color);
                line-height: 1.6;
                margin-bottom: 0;
                font-style: italic;
                font-weight: 500;
                font-size: 22px;
            }

            .blog-details .content blockquote:after {
                content: "";
                position: absolute;
                left: 0;
                top: 0;
                bottom: 0;
                width: 3px;
                background-color: #74676f;
                margin-top: 20px;
                margin-bottom: 20px;
            }

    .blog-details .meta-top {
        margin-top: 20px;
        color: color-mix(in srgb, var(--default-color), transparent 40%);
    }

        .blog-details .meta-top ul {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            align-items: center;
            padding: 0;
            margin: 0;
        }

            .blog-details .meta-top ul li + li {
                padding-left: 20px;
            }

        .blog-details .meta-top i {
            font-size: 16px;
            margin-right: 8px;
            line-height: 0;
            color: color-mix(in srgb, var(--default-color), transparent 40%);
        }

        .blog-details .meta-top a {
            color: color-mix(in srgb, var(--default-color), transparent 40%);
            font-size: 14px;
            display: inline-block;
            line-height: 1;
        }

    .blog-details .meta-bottom {
        padding-top: 10px;
        border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    }

        .blog-details .meta-bottom i {
            color: color-mix(in srgb, var(--default-color), transparent 40%);
            display: inline;
        }

        .blog-details .meta-bottom a {
            color: color-mix(in srgb, var(--default-color), transparent 40%);
            transition: 0.3s;
        }

            .blog-details .meta-bottom a:hover {
                color: #74676f;
            }

        .blog-details .meta-bottom .cats {
            list-style: none;
            display: inline;
            padding: 0 20px 0 0;
            font-size: 14px;
        }

            .blog-details .meta-bottom .cats li {
                display: inline-block;
            }

        .blog-details .meta-bottom .tags {
            list-style: none;
            display: inline;
            padding: 0;
            font-size: 14px;
        }

            .blog-details .meta-bottom .tags li {
                display: inline-block;
            }

                .blog-details .meta-bottom .tags li + li::before {
                    padding-right: 6px;
                    color: var(--default-color);
                    content: ",";
                }

        .blog-details .meta-bottom .share {
            font-size: 16px;
        }

            .blog-details .meta-bottom .share i {
                padding-left: 5px;
            }

/*--------------------------------------------------------------
# Blog Comments Section
--------------------------------------------------------------*/
.blog-comments .section-header {
    margin-bottom: 40px;
}

    .blog-comments .section-header h3 {
        color: var(--heading-color);
        font-size: 32px;
        font-weight: 700;
        font-family: var(--heading-font);
        display: flex;
        align-items: center;
        gap: 12px;
    }

        .blog-comments .section-header h3 .comment-count {
            color: color-mix(in srgb, var(--heading-color), transparent 40%);
            font-size: 24px;
            font-weight: 500;
        }

.blog-comments .comments-wrapper {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.blog-comments .comment-card {
    background-color: var(--surface-color);
    border-radius: 12px;
    padding: 25px;
    border-left: 4px solid transparent;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
}

    .blog-comments .comment-card:hover {
        border-left-color: #74676f;
        transform: translateX(5px);
    }

    .blog-comments .comment-card.reply {
        margin-left: 48px;
        border-left-color: color-mix(in srgb, #74676f, transparent 70%);
        background-color: color-mix(in srgb, var(--surface-color), transparent 3%);
    }

@media (min-width: 768px) {
    .blog-comments .comment-card.reply {
        margin-left: 85px;
    }
}

.blog-comments .reply-thread {
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.blog-comments .comment-header {
    margin-bottom: 20px;
}

    .blog-comments .comment-header .user-info {
        display: flex;
        align-items: center;
        gap: 15px;
    }

        .blog-comments .comment-header .user-info img {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            object-fit: cover;
            border: 2px solid color-mix(in srgb, #74676f, transparent 85%);
        }

        .blog-comments .comment-header .user-info .meta .name {
            color: var(--heading-color);
            font-size: 16px;
            font-weight: 600;
            margin: 0 0 5px;
        }

        .blog-comments .comment-header .user-info .meta .date {
            color: color-mix(in srgb, var(--default-color), transparent 45%);
            font-size: 14px;
            display: flex;
            align-items: center;
            gap: 6px;
        }

            .blog-comments .comment-header .user-info .meta .date i {
                font-size: 13px;
            }

.blog-comments .comment-content p {
    color: var(--default-color);
    font-size: 15px;
    line-height: 1.65;
    margin-bottom: 20px;
}

.blog-comments .comment-actions {
    display: flex;
    gap: 20px;
}

    .blog-comments .comment-actions .action-btn {
        background: none;
        border: none;
        padding: 8px 12px;
        border-radius: 6px;
        color: color-mix(in srgb, var(--default-color), transparent 35%);
        font-size: 14px;
        font-weight: 500;
        display: flex;
        align-items: center;
        gap: 6px;
        cursor: pointer;
        transition: all 0.3s ease;
    }

        .blog-comments .comment-actions .action-btn i {
            font-size: 15px;
            transition: transform 0.3s ease;
        }

        .blog-comments .comment-actions .action-btn:hover {
            color: #74676f;
            background-color: color-mix(in srgb, #74676f, transparent 95%);
        }

            .blog-comments .comment-actions .action-btn:hover.like-btn i {
                transform: scale(1.2);
            }

            .blog-comments .comment-actions .action-btn:hover.reply-btn i {
                transform: translateX(-3px);
            }

        .blog-comments .comment-actions .action-btn.like-btn.active {
            color: #74676f;
        }

@media (max-width: 768px) {
    .blog-comments .section-header {
        margin-bottom: 30px;
    }

        .blog-comments .section-header h3 {
            font-size: 28px;
        }

            .blog-comments .section-header h3 .comment-count {
                font-size: 20px;
            }

    .blog-comments .comment-card {
        padding: 20px;
    }

        .blog-comments .comment-card.reply {
            margin-left: 35px;
        }

    .blog-comments .comment-header .user-info img {
        width: 40px;
        height: 40px;
    }

    .blog-comments .comment-header .user-info .meta .name {
        font-size: 15px;
    }

    .blog-comments .comment-header .user-info .meta .date {
        font-size: 13px;
    }

    .blog-comments .comment-content p {
        font-size: 14px;
        margin-bottom: 15px;
    }

    .blog-comments .comment-actions .action-btn {
        padding: 6px 10px;
        font-size: 13px;
    }
}

/*--------------------------------------------------------------
# Blog Comment Form Section
--------------------------------------------------------------*/
.blog-comment-form {
    max-width: 900px;
    margin: 30px auto 0 auto;
}

    .blog-comment-form form {
        padding: 30px;
        background-color: var(--surface-color);
        border-radius: 15px;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    }

    .blog-comment-form .section-header {
        text-align: center;
        margin-bottom: 30px;
    }

        .blog-comment-form .section-header h3 {
            font-size: 28px;
            margin-bottom: 15px;
            position: relative;
            padding-bottom: 15px;
        }

            .blog-comment-form .section-header h3:after {
                content: "";
                position: absolute;
                display: block;
                width: 50px;
                height: 3px;
                background: #74676f;
                bottom: 0;
                left: 50%;
                transform: translateX(-50%);
            }

        .blog-comment-form .section-header p {
            color: color-mix(in srgb, var(--default-color), transparent 30%);
            font-size: 15px;
            margin: 0;
        }

    .blog-comment-form .form-group {
        margin-bottom: 20px;
    }

        .blog-comment-form .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            color: var(--heading-color);
            font-size: 14px;
        }

        .blog-comment-form .form-group .form-control {
            height: 48px;
            padding: 10px 15px;
            color: var(--default-color);
            background-color: var(--surface-color);
            border-radius: 8px;
            border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
            font-size: 14px;
            transition: all 0.3s ease-in-out;
        }

            .blog-comment-form .form-group .form-control:focus {
                border-color: #74676f;
                box-shadow: 0 0 0 3px color-mix(in srgb, #74676f, transparent 85%);
            }

            .blog-comment-form .form-group .form-control::placeholder {
                color: color-mix(in srgb, var(--default-color), transparent 70%);
            }

            .blog-comment-form .form-group .form-control:hover:not(:focus) {
                border-color: color-mix(in srgb, var(--default-color), transparent 60%);
            }

        .blog-comment-form .form-group textarea.form-control {
            height: auto;
            min-height: 120px;
            resize: vertical;
        }

    .blog-comment-form .btn-submit {
        padding: 12px 32px;
        border-radius: 50px;
        background: #74676f;
        color: var(--contrast-color);
        border: none;
        font-size: 16px;
        font-weight: 500;
        transition: 0.3s;
        position: relative;
        overflow: hidden;
    }

        .blog-comment-form .btn-submit:hover {
            background: color-mix(in srgb, #74676f, transparent 15%);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px color-mix(in srgb, #74676f, transparent 70%);
        }

        .blog-comment-form .btn-submit:active {
            transform: translateY(0);
            box-shadow: none;
        }

@media (max-width: 768px) {
    .blog-comment-form {
        padding: 20px;
    }

        .blog-comment-form .section-header h3 {
            font-size: 24px;
        }

        .blog-comment-form .btn-submit {
            width: 100%;
            padding: 12px 20px;
        }
}

/*--------------------------------------------------------------
# Terms Of Service Section
--------------------------------------------------------------*/
.terms-of-service .tos-header {
    margin-bottom: 60px;
}

    .terms-of-service .tos-header .last-updated {
        display: inline-block;
        padding: 8px 20px;
        background-color: color-mix(in srgb, #74676f, transparent 90%);
        border-radius: 30px;
        color: #74676f;
        font-size: 0.95rem;
        margin-bottom: 20px;
    }

    .terms-of-service .tos-header h2 {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }

    .terms-of-service .tos-header p {
        color: color-mix(in srgb, var(--default-color), transparent 30%);
        font-size: 1.1rem;
        max-width: 700px;
        margin: 0 auto;
    }

.terms-of-service .tos-content .content-section {
    margin-bottom: 50px;
    scroll-margin-top: 100px;
}

    .terms-of-service .tos-content .content-section:last-child {
        margin-bottom: 0;
    }

    .terms-of-service .tos-content .content-section h3 {
        font-size: 1.8rem;
        margin-bottom: 20px;
        color: var(--heading-color);
    }

    .terms-of-service .tos-content .content-section p {
        color: color-mix(in srgb, var(--default-color), transparent 20%);
        line-height: 1.7;
        margin-bottom: 20px;
    }

        .terms-of-service .tos-content .content-section p:last-child {
            margin-bottom: 0;
        }

    .terms-of-service .tos-content .content-section .info-box {
        display: flex;
        align-items: flex-start;
        gap: 15px;
        padding: 20px;
        background-color: color-mix(in srgb, #74676f, transparent 95%);
        border-radius: 15px;
        margin-top: 20px;
    }

        .terms-of-service .tos-content .content-section .info-box i {
            font-size: 1.5rem;
            color: #74676f;
            flex-shrink: 0;
        }

        .terms-of-service .tos-content .content-section .info-box p {
            margin: 0;
            font-size: 0.95rem;
        }

    .terms-of-service .tos-content .content-section .list-items {
        list-style: none;
        padding: 0;
        margin: 20px 0;
    }

        .terms-of-service .tos-content .content-section .list-items li {
            position: relative;
            padding-left: 25px;
            margin-bottom: 12px;
            color: color-mix(in srgb, var(--default-color), transparent 20%);
        }

            .terms-of-service .tos-content .content-section .list-items li:last-child {
                margin-bottom: 0;
            }

            .terms-of-service .tos-content .content-section .list-items li::before {
                content: "";
                position: absolute;
                left: 0;
                top: 10px;
                width: 6px;
                height: 6px;
                border-radius: 50%;
                background-color: #74676f;
            }

    .terms-of-service .tos-content .content-section .alert-box {
        display: flex;
        gap: 20px;
        padding: 25px;
        background-color: var(--surface-color);
        border-radius: 15px;
        border-left: 4px solid #74676f;
        margin-top: 20px;
    }

        .terms-of-service .tos-content .content-section .alert-box i {
            font-size: 2rem;
            color: #74676f;
            flex-shrink: 0;
        }

        .terms-of-service .tos-content .content-section .alert-box .alert-content h5 {
            font-size: 1.1rem;
            margin-bottom: 8px;
        }

        .terms-of-service .tos-content .content-section .alert-box .alert-content p {
            margin: 0;
            font-size: 0.95rem;
        }

    .terms-of-service .tos-content .content-section .prohibited-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-top: 20px;
    }

@media (max-width: 576px) {
    .terms-of-service .tos-content .content-section .prohibited-list {
        grid-template-columns: 1fr;
    }
}

.terms-of-service .tos-content .content-section .prohibited-list .prohibited-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background-color: var(--surface-color);
    border-radius: 12px;
}

    .terms-of-service .tos-content .content-section .prohibited-list .prohibited-item i {
        color: #dc3545;
        font-size: 1.2rem;
    }

    .terms-of-service .tos-content .content-section .prohibited-list .prohibited-item span {
        font-size: 0.95rem;
        color: color-mix(in srgb, var(--default-color), transparent 20%);
    }

.terms-of-service .tos-content .content-section .disclaimer-box {
    background-color: var(--surface-color);
    padding: 25px;
    border-radius: 15px;
    margin-top: 20px;
}

    .terms-of-service .tos-content .content-section .disclaimer-box p {
        margin-bottom: 15px;
        font-weight: 500;
    }

    .terms-of-service .tos-content .content-section .disclaimer-box ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

        .terms-of-service .tos-content .content-section .disclaimer-box ul li {
            position: relative;
            padding-left: 25px;
            margin-bottom: 12px;
            color: color-mix(in srgb, var(--default-color), transparent 20%);
            font-size: 0.95rem;
        }

            .terms-of-service .tos-content .content-section .disclaimer-box ul li:last-child {
                margin-bottom: 0;
            }

            .terms-of-service .tos-content .content-section .disclaimer-box ul li::before {
                content: "•";
                position: absolute;
                left: 8px;
                color: #74676f;
            }

.terms-of-service .tos-content .content-section .notice-box {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background-color: color-mix(in srgb, #74676f, transparent 95%);
    border-radius: 15px;
    margin-top: 20px;
}

    .terms-of-service .tos-content .content-section .notice-box i {
        font-size: 1.5rem;
        color: #74676f;
        flex-shrink: 0;
    }

    .terms-of-service .tos-content .content-section .notice-box p {
        margin: 0;
        font-size: 0.95rem;
    }

.terms-of-service .tos-contact {
    margin-top: 60px;
}

    .terms-of-service .tos-contact .contact-box {
        background: linear-gradient(135deg, color-mix(in srgb, #74676f, transparent 95%) 0%, color-mix(in srgb, #74676f, transparent 98%) 100%);
        border-radius: 20px;
        padding: 40px;
        display: flex;
        align-items: center;
        gap: 30px;
    }

@media (max-width: 576px) {
    .terms-of-service .tos-contact .contact-box {
        flex-direction: column;
        text-align: center;
    }
}

.terms-of-service .tos-contact .contact-box .contact-icon {
    width: 60px;
    height: 60px;
    background-color: #74676f;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .terms-of-service .tos-contact .contact-box .contact-icon i {
        font-size: 1.8rem;
        color: var(--contrast-color);
    }

.terms-of-service .tos-contact .contact-box .contact-content {
    flex: 1;
}

    .terms-of-service .tos-contact .contact-box .contact-content h4 {
        font-size: 1.4rem;
        margin-bottom: 8px;
    }

    .terms-of-service .tos-contact .contact-box .contact-content p {
        color: color-mix(in srgb, var(--default-color), transparent 30%);
        margin-bottom: 15px;
    }

    .terms-of-service .tos-contact .contact-box .contact-content .contact-link {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 12px 25px;
        background-color: #74676f;
        color: var(--contrast-color);
        border-radius: 30px;
        text-decoration: none;
        font-weight: 500;
        transition: all 0.3s;
    }

        .terms-of-service .tos-contact .contact-box .contact-content .contact-link:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

@media print {
    .terms-of-service .tos-contact {
        display: none;
    }

    .terms-of-service .content-section {
        page-break-inside: avoid;
    }
}

/*--------------------------------------------------------------
# Privacy Section
--------------------------------------------------------------*/
.privacy .privacy-header {
    text-align: center;
    margin-bottom: 70px;
    padding: 60px 0;
    background: linear-gradient(135deg, color-mix(in srgb, #74676f, transparent 95%) 0%, color-mix(in srgb, #74676f, transparent 98%) 100%);
    border-radius: 30px;
}

    .privacy .privacy-header .header-content {
        max-width: 800px;
        margin: 0 auto;
    }

        .privacy .privacy-header .header-content .update-badge {
            display: inline-block;
            padding: 8px 20px;
            background-color: var(--surface-color);
            border-radius: 30px;
            color: #74676f;
            font-size: 0.95rem;
            margin-bottom: 25px;
        }

        .privacy .privacy-header .header-content h2 {
            font-size: 3rem;
            margin-bottom: 15px;
            background: linear-gradient(45deg, var(--heading-color), #74676f);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .privacy .privacy-header .header-content p {
            font-size: 1.2rem;
            color: color-mix(in srgb, var(--default-color), transparent 20%);
            margin-bottom: 30px;
        }

        .privacy .privacy-header .header-content .privacy-badges {
            display: flex;
            justify-content: center;
            gap: 20px;
        }

@media (max-width: 576px) {
    .privacy .privacy-header .header-content .privacy-badges {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
}

.privacy .privacy-header .header-content .privacy-badges .badge-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    background-color: var(--surface-color);
    border-radius: 15px;
}

    .privacy .privacy-header .header-content .privacy-badges .badge-item i {
        font-size: 1.2rem;
        color: #74676f;
    }

    .privacy .privacy-header .header-content .privacy-badges .badge-item span {
        font-weight: 500;
    }

.privacy .info-section {
    margin-bottom: 70px;
}

    .privacy .info-section .section-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }

@media (max-width: 991px) {
    .privacy .info-section .section-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .privacy .info-section .section-grid {
        grid-template-columns: 1fr;
    }
}

.privacy .info-section .info-card {
    background-color: var(--surface-color);
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s;
}

    .privacy .info-section .info-card:hover {
        transform: translateY(-10px);
    }

        .privacy .info-section .info-card:hover .card-header i {
            transform: scale(1.1);
        }

    .privacy .info-section .info-card .card-header {
        padding: 30px;
        text-align: center;
        border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    }

        .privacy .info-section .info-card .card-header i {
            font-size: 2rem;
            color: #74676f;
            margin-bottom: 15px;
            display: block;
            transition: transform 0.3s;
        }

        .privacy .info-section .info-card .card-header h3 {
            font-size: 1.4rem;
            margin: 0;
        }

    .privacy .info-section .info-card .card-content {
        padding: 30px;
    }

        .privacy .info-section .info-card .card-content .info-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

            .privacy .info-section .info-card .card-content .info-list li {
                position: relative;
                padding-left: 25px;
                margin-bottom: 15px;
                color: color-mix(in srgb, var(--default-color), transparent 20%);
            }

                .privacy .info-section .info-card .card-content .info-list li:last-child {
                    margin-bottom: 0;
                }

                .privacy .info-section .info-card .card-content .info-list li::before {
                    content: "";
                    position: absolute;
                    left: 0;
                    top: 10px;
                    width: 6px;
                    height: 6px;
                    border-radius: 50%;
                    background-color: #74676f;
                }

.privacy .security-section {
    margin-bottom: 70px;
    text-align: center;
}

    .privacy .security-section .section-header {
        margin-bottom: 40px;
    }

        .privacy .security-section .section-header h3 {
            font-size: 2rem;
            margin-bottom: 15px;
        }

        .privacy .security-section .section-header p {
            color: color-mix(in srgb, var(--default-color), transparent 30%);
            font-size: 1.1rem;
        }

    .privacy .security-section .measures-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 25px;
    }

@media (max-width: 991px) {
    .privacy .security-section .measures-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .privacy .security-section .measures-grid {
        grid-template-columns: 1fr;
    }
}

.privacy .security-section .measure-item {
    background-color: var(--surface-color);
    border-radius: 20px;
    padding: 30px;
    transition: transform 0.3s;
}

    .privacy .security-section .measure-item:hover {
        transform: translateY(-5px);
    }

        .privacy .security-section .measure-item:hover i {
            color: #74676f;
        }

    .privacy .security-section .measure-item i {
        font-size: 2rem;
        color: color-mix(in srgb, #74676f, transparent 30%);
        margin-bottom: 20px;
        transition: color 0.3s;
    }

    .privacy .security-section .measure-item h4 {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }

    .privacy .security-section .measure-item p {
        color: color-mix(in srgb, var(--default-color), transparent 30%);
        font-size: 0.95rem;
        margin: 0;
    }

.privacy .rights-section {
    margin-bottom: 70px;
}

    .privacy .rights-section .rights-content {
        background-color: var(--surface-color);
        border-radius: 30px;
        padding: 50px;
        text-align: center;
    }

        .privacy .rights-section .rights-content h3 {
            font-size: 2rem;
            margin-bottom: 10px;
        }

        .privacy .rights-section .rights-content > p {
            color: color-mix(in srgb, var(--default-color), transparent 30%);
            margin-bottom: 40px;
        }

    .privacy .rights-section .rights-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
    }

@media (max-width: 991px) {
    .privacy .rights-section .rights-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .privacy .rights-section .rights-grid {
        grid-template-columns: 1fr;
    }
}

.privacy .rights-section .right-item i {
    font-size: 2rem;
    color: #74676f;
    margin-bottom: 15px;
}

.privacy .rights-section .right-item h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.privacy .rights-section .right-item p {
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    font-size: 0.95rem;
    margin: 0;
}

.privacy .additional-info {
    margin-bottom: 70px;
}

    .privacy .additional-info .info-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }

@media (max-width: 991px) {
    .privacy .additional-info .info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .privacy .additional-info .info-grid {
        grid-template-columns: 1fr;
    }
}

.privacy .additional-info .info-item {
    background-color: var(--surface-color);
    border-radius: 20px;
    padding: 30px;
}

    .privacy .additional-info .info-item h4 {
        font-size: 1.3rem;
        margin-bottom: 15px;
        color: var(--heading-color);
    }

    .privacy .additional-info .info-item p {
        color: color-mix(in srgb, var(--default-color), transparent 30%);
        margin: 0;
        font-size: 0.95rem;
        line-height: 1.6;
    }

.privacy .privacy-contact .contact-box {
    background: linear-gradient(135deg, color-mix(in srgb, #74676f, transparent 95%) 0%, color-mix(in srgb, #74676f, transparent 98%) 100%);
    border-radius: 30px;
    padding: 50px;
    display: flex;
    align-items: center;
    gap: 30px;
}

@media (max-width: 767px) {
    .privacy .privacy-contact .contact-box {
        flex-direction: column;
        text-align: center;
    }
}

.privacy .privacy-contact .contact-box .contact-icon {
    width: 70px;
    height: 70px;
    background-color: #74676f;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .privacy .privacy-contact .contact-box .contact-icon i {
        font-size: 2rem;
        color: var(--contrast-color);
    }

.privacy .privacy-contact .contact-box .contact-content {
    flex: 1;
}

    .privacy .privacy-contact .contact-box .contact-content h4 {
        font-size: 1.6rem;
        margin-bottom: 10px;
    }

    .privacy .privacy-contact .contact-box .contact-content p {
        color: color-mix(in srgb, var(--default-color), transparent 30%);
        margin-bottom: 20px;
    }

    .privacy .privacy-contact .contact-box .contact-content .contact-button {
        display: inline-block;
        padding: 12px 30px;
        background-color: #74676f;
        color: var(--contrast-color);
        border-radius: 30px;
        text-decoration: none;
        font-weight: 500;
        transition: all 0.3s;
    }

        .privacy .privacy-contact .contact-box .contact-content .contact-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

/*--------------------------------------------------------------
# Retun Policy Section
--------------------------------------------------------------*/
.retun-policy .return-hero {
    margin-bottom: 70px;
    text-align: center;
    position: relative;
}

    .retun-policy .return-hero .hero-content {
        max-width: 700px;
        margin: 0 auto;
        position: relative;
        z-index: 1;
    }

        .retun-policy .return-hero .hero-content h2 {
            font-size: 3rem;
            margin-bottom: 15px;
            background: linear-gradient(45deg, var(--heading-color) 0%, #74676f 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .retun-policy .return-hero .hero-content p {
            font-size: 1.2rem;
            color: color-mix(in srgb, var(--default-color), transparent 30%);
        }

    .retun-policy .return-hero .return-period-box {
        margin-top: 40px;
    }

        .retun-policy .return-hero .return-period-box .box-content {
            background: linear-gradient(45deg, color-mix(in srgb, #74676f, transparent 90%) 0%, color-mix(in srgb, #74676f, transparent 95%) 100%);
            display: inline-flex;
            align-items: baseline;
            padding: 20px 40px;
            border-radius: 50px;
            gap: 10px;
        }

            .retun-policy .return-hero .return-period-box .box-content .days {
                font-size: 3rem;
                font-weight: 700;
                color: #74676f;
                line-height: 1;
            }

            .retun-policy .return-hero .return-period-box .box-content .text {
                font-size: 1.4rem;
                color: var(--heading-color);
                font-weight: 500;
            }

.retun-policy .policy-overview {
    margin-bottom: 70px;
}

    .retun-policy .policy-overview .feature-card {
        background-color: var(--surface-color);
        border-radius: 20px;
        overflow: hidden;
        transition: transform 0.3s;
    }

        .retun-policy .policy-overview .feature-card:hover {
            transform: translateY(-10px);
        }

            .retun-policy .policy-overview .feature-card:hover .card-content::before {
                opacity: 1;
            }

            .retun-policy .policy-overview .feature-card:hover .card-content .learn-more i {
                transform: translateX(5px);
            }

        .retun-policy .policy-overview .feature-card .card-content {
            padding: 40px;
            position: relative;
            z-index: 1;
        }

            .retun-policy .policy-overview .feature-card .card-content::before {
                content: "";
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                background: linear-gradient(135deg, color-mix(in srgb, #74676f, transparent 97%) 0%, color-mix(in srgb, #74676f, transparent 90%) 100%);
                opacity: 0;
                transition: opacity 0.3s;
                z-index: -1;
            }

            .retun-policy .policy-overview .feature-card .card-content i {
                font-size: 2.5rem;
                color: #74676f;
                margin-bottom: 20px;
                display: block;
            }

            .retun-policy .policy-overview .feature-card .card-content h4 {
                font-size: 1.4rem;
                margin-bottom: 15px;
            }

            .retun-policy .policy-overview .feature-card .card-content p {
                color: color-mix(in srgb, var(--default-color), transparent 30%);
                margin-bottom: 25px;
            }

            .retun-policy .policy-overview .feature-card .card-content .learn-more {
                color: #74676f;
                text-decoration: none;
                display: flex;
                align-items: center;
                gap: 8px;
                font-weight: 500;
            }

                .retun-policy .policy-overview .feature-card .card-content .learn-more i {
                    font-size: 1.2rem;
                    margin: 0;
                    transition: transform 0.3s;
                }

.retun-policy .return-requirements {
    margin-bottom: 70px;
}

    .retun-policy .return-requirements .requirements-content h3 {
        font-size: 2rem;
        margin-bottom: 15px;
    }

    .retun-policy .return-requirements .requirements-content .subtitle {
        color: color-mix(in srgb, var(--default-color), transparent 30%);
        font-size: 1.1rem;
        margin-bottom: 30px;
    }

    .retun-policy .return-requirements .checks-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }

        .retun-policy .return-requirements .checks-list li {
            display: flex;
            gap: 20px;
            margin-bottom: 25px;
        }

            .retun-policy .return-requirements .checks-list li:last-child {
                margin-bottom: 0;
            }

            .retun-policy .return-requirements .checks-list li i {
                flex-shrink: 0;
                width: 30px;
                height: 30px;
                background-color: color-mix(in srgb, #74676f, transparent 90%);
                color: #74676f;
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                font-size: 1.1rem;
            }

            .retun-policy .return-requirements .checks-list li .requirement-text h5 {
                font-size: 1.2rem;
                margin-bottom: 5px;
            }

            .retun-policy .return-requirements .checks-list li .requirement-text p {
                color: color-mix(in srgb, var(--default-color), transparent 30%);
                margin: 0;
            }

    .retun-policy .return-requirements .exceptions-box {
        background-color: var(--surface-color);
        border-radius: 20px;
        padding: 40px;
    }

        .retun-policy .return-requirements .exceptions-box .box-header {
            text-align: center;
            margin-bottom: 30px;
        }

            .retun-policy .return-requirements .exceptions-box .box-header i {
                font-size: 2.5rem;
                color: #74676f;
                margin-bottom: 15px;
                display: block;
            }

            .retun-policy .return-requirements .exceptions-box .box-header h4 {
                font-size: 1.5rem;
                margin: 0;
            }

        .retun-policy .return-requirements .exceptions-box .exceptions-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }

            .retun-policy .return-requirements .exceptions-box .exceptions-grid .exception-item {
                text-align: center;
                padding: 20px;
                background-color: var(--background-color);
                border-radius: 15px;
                transition: all 0.3s;
            }

                .retun-policy .return-requirements .exceptions-box .exceptions-grid .exception-item:hover {
                    transform: scale(1.05);
                }

                .retun-policy .return-requirements .exceptions-box .exceptions-grid .exception-item i {
                    font-size: 1.75rem;
                    color: #74676f;
                    margin-bottom: 10px;
                    display: block;
                }

                .retun-policy .return-requirements .exceptions-box .exceptions-grid .exception-item span {
                    font-weight: 500;
                }

.retun-policy .return-steps {
    margin-bottom: 70px;
    text-align: center;
}

    .retun-policy .return-steps h3 {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    .retun-policy .return-steps .steps-timeline {
        display: flex;
        justify-content: space-between;
        position: relative;
        max-width: 900px;
        margin: 0 auto;
    }

        .retun-policy .return-steps .steps-timeline::before {
            content: "";
            position: absolute;
            top: 25px;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, #74676f 0%, color-mix(in srgb, #74676f, transparent 80%) 100%);
        }

@media (max-width: 991px) {
    .retun-policy .return-steps .steps-timeline {
        flex-direction: column;
        gap: 30px;
    }

        .retun-policy .return-steps .steps-timeline::before {
            display: none;
        }
}

.retun-policy .return-steps .step-item {
    flex: 1;
    position: relative;
    padding: 0 15px;
}

    .retun-policy .return-steps .step-item .step-number {
        width: 50px;
        height: 50px;
        background-color: var(--surface-color);
        border: 2px solid #74676f;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 20px;
        font-size: 1.2rem;
        font-weight: 600;
        color: #74676f;
        position: relative;
        z-index: 1;
    }

    .retun-policy .return-steps .step-item .step-content h5 {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }

    .retun-policy .return-steps .step-item .step-content p {
        color: color-mix(in srgb, var(--default-color), transparent 30%);
        font-size: 0.95rem;
        margin: 0;
    }

    .retun-policy .return-steps .step-item.active .step-number {
        background-color: #74676f;
        color: var(--contrast-color);
    }

.retun-policy .return-faqs {
    margin-bottom: 70px;
}

    .retun-policy .return-faqs .faq-header h3 {
        font-size: 2rem;
        margin-bottom: 15px;
    }

    .retun-policy .return-faqs .faq-header p {
        color: color-mix(in srgb, var(--default-color), transparent 30%);
        margin-bottom: 30px;
    }

    .retun-policy .return-faqs .faq-header .contact-support {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        color: #74676f;
        text-decoration: none;
        font-weight: 500;
        transition: all 0.3s;
    }

        .retun-policy .return-faqs .faq-header .contact-support:hover {
            transform: translateX(5px);
        }

        .retun-policy .return-faqs .faq-header .contact-support i {
            font-size: 1.5rem;
        }

    .retun-policy .return-faqs .faq-list .faq-item {
        background-color: var(--surface-color);
        border-radius: 15px;
        margin-bottom: 15px;
    }

        .retun-policy .return-faqs .faq-list .faq-item h3 {
            margin: 0;
            padding: 20px 25px;
            font-size: 1.1rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
            cursor: pointer;
            color: var(--heading-color);
        }

            .retun-policy .return-faqs .faq-list .faq-item h3 i {
                color: #74676f;
                transition: transform 0.3s;
                font-size: 1.2rem;
            }

        .retun-policy .return-faqs .faq-list .faq-item .faq-answer {
            display: none;
            padding: 0 25px 20px;
        }

            .retun-policy .return-faqs .faq-list .faq-item .faq-answer p {
                margin: 0;
                color: color-mix(in srgb, var(--default-color), transparent 30%);
            }

        .retun-policy .return-faqs .faq-list .faq-item.faq-active h3 {
            color: #74676f;
        }

            .retun-policy .return-faqs .faq-list .faq-item.faq-active h3 i {
                transform: rotate(45deg);
            }

        .retun-policy .return-faqs .faq-list .faq-item.faq-active .faq-answer {
            display: block;
        }

.retun-policy .return-cta {
    text-align: center;
    background-color: var(--surface-color);
    border-radius: 30px;
    padding: 60px;
    position: relative;
    overflow: hidden;
}

    .retun-policy .return-cta::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, #74676f 0%, color-mix(in srgb, #74676f, transparent 80%) 100%);
    }

    .retun-policy .return-cta h4 {
        font-size: 2rem;
        margin-bottom: 10px;
    }

    .retun-policy .return-cta p {
        color: color-mix(in srgb, var(--default-color), transparent 30%);
        margin-bottom: 30px;
    }

    .retun-policy .return-cta .cta-buttons {
        display: flex;
        justify-content: center;
        gap: 20px;
    }

        .retun-policy .return-cta .cta-buttons a {
            padding: 12px 30px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s;
        }

        .retun-policy .return-cta .cta-buttons .btn-primary {
            background-color: #74676f;
            color: var(--contrast-color);
        }

            .retun-policy .return-cta .cta-buttons .btn-primary:hover {
                transform: translateY(-3px);
                box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            }

        .retun-policy .return-cta .cta-buttons .btn-secondary {
            background-color: color-mix(in srgb, #74676f, transparent 90%);
            color: #74676f;
        }

            .retun-policy .return-cta .cta-buttons .btn-secondary:hover {
                background-color: color-mix(in srgb, #74676f, transparent 85%);
                transform: translateY(-3px);
            }

@media (max-width: 576px) {
    .retun-policy .return-cta {
        padding: 40px 20px;
    }

        .retun-policy .return-cta .cta-buttons {
            flex-direction: column;
        }
}

@media (max-width: 767px) {
    .retun-policy .return-hero .hero-content h2 {
        font-size: 2.5rem;
    }

    .retun-policy .return-hero .return-period-box .box-content {
        padding: 15px 30px;
    }

        .retun-policy .return-hero .return-period-box .box-content .days {
            font-size: 2.5rem;
        }

        .retun-policy .return-hero .return-period-box .box-content .text {
            font-size: 1.2rem;
        }
}

/*--------------------------------------------------------------
# Paymnt Methods Section
--------------------------------------------------------------*/
.paymnt-methods .payment-header {
    margin-bottom: 60px;
}

    .paymnt-methods .payment-header h2 {
        font-size: 2.5rem;
        margin-bottom: 15px;
        position: relative;
        padding-bottom: 15px;
    }

        .paymnt-methods .payment-header h2::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: linear-gradient(90deg, #74676f 0%, color-mix(in srgb, #74676f, transparent 80%) 100%);
        }

    .paymnt-methods .payment-header p {
        color: color-mix(in srgb, var(--default-color), transparent 30%);
        font-size: 1.1rem;
    }

.paymnt-methods .payment-options {
    margin-bottom: 70px;
}

    .paymnt-methods .payment-options .payment-card {
        background-color: var(--surface-color);
        border-radius: 20px;
        overflow: hidden;
        height: 100%;
        transition: transform 0.3s;
    }

        .paymnt-methods .payment-options .payment-card:hover {
            transform: translateY(-10px);
        }

            .paymnt-methods .payment-options .payment-card:hover .icon-box {
                transform: scale(1.1);
                background-color: #74676f;
            }

                .paymnt-methods .payment-options .payment-card:hover .icon-box i {
                    color: var(--contrast-color);
                }

        .paymnt-methods .payment-options .payment-card .card-content {
            padding: 40px 30px;
            text-align: center;
        }

        .paymnt-methods .payment-options .payment-card .icon-box {
            width: 80px;
            height: 80px;
            background-color: color-mix(in srgb, #74676f, transparent 90%);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            transition: all 0.3s;
        }

            .paymnt-methods .payment-options .payment-card .icon-box i {
                font-size: 2rem;
                color: #74676f;
                transition: color 0.3s;
            }

        .paymnt-methods .payment-options .payment-card h4 {
            font-size: 1.4rem;
            margin-bottom: 10px;
        }

        .paymnt-methods .payment-options .payment-card p {
            color: color-mix(in srgb, var(--default-color), transparent 30%);
            margin-bottom: 25px;
        }

        .paymnt-methods .payment-options .payment-card .accepted-cards {
            display: flex;
            justify-content: center;
            gap: 10px;
        }

            .paymnt-methods .payment-options .payment-card .accepted-cards .card-icon {
                padding: 8px 15px;
                background-color: color-mix(in srgb, var(--default-color), transparent 95%);
                border-radius: 6px;
                font-size: 0.9rem;
                font-weight: 500;
            }

.paymnt-methods .security-features {
    margin-bottom: 70px;
}

    .paymnt-methods .security-features .security-content h3 {
        font-size: 2rem;
        margin-bottom: 15px;
    }

    .paymnt-methods .security-features .security-content .subtitle {
        color: color-mix(in srgb, var(--default-color), transparent 30%);
        font-size: 1.1rem;
        margin-bottom: 30px;
    }

    .paymnt-methods .security-features .security-content .security-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }

        .paymnt-methods .security-features .security-content .security-list li {
            display: flex;
            gap: 20px;
            margin-bottom: 25px;
        }

            .paymnt-methods .security-features .security-content .security-list li:last-child {
                margin-bottom: 0;
            }

            .paymnt-methods .security-features .security-content .security-list li i {
                flex-shrink: 0;
                width: 40px;
                height: 40px;
                background-color: color-mix(in srgb, #74676f, transparent 90%);
                color: #74676f;
                border-radius: 12px;
                display: flex;
                align-items: center;
                justify-content: center;
                font-size: 1.2rem;
            }

            .paymnt-methods .security-features .security-content .security-list li .feature-text h5 {
                font-size: 1.2rem;
                margin-bottom: 5px;
            }

            .paymnt-methods .security-features .security-content .security-list li .feature-text p {
                color: color-mix(in srgb, var(--default-color), transparent 30%);
                margin: 0;
                font-size: 0.95rem;
            }

    .paymnt-methods .security-features .process-steps {
        background-color: var(--surface-color);
        border-radius: 20px;
        padding: 40px;
    }

@media (max-width: 991px) {
    .paymnt-methods .security-features .process-steps {
        margin-top: 40px;
    }
}

.paymnt-methods .security-features .process-steps h4 {
    font-size: 1.5rem;
    margin-bottom: 30px;
}

.paymnt-methods .security-features .process-steps .steps-list {
    display: grid;
    gap: 25px;
}

    .paymnt-methods .security-features .process-steps .steps-list .step {
        display: flex;
        gap: 20px;
        align-items: flex-start;
    }

        .paymnt-methods .security-features .process-steps .steps-list .step .step-number {
            flex-shrink: 0;
            width: 35px;
            height: 35px;
            background-color: #74676f;
            color: var(--contrast-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
        }

        .paymnt-methods .security-features .process-steps .steps-list .step .step-content h5 {
            font-size: 1.2rem;
            margin-bottom: 5px;
        }

        .paymnt-methods .security-features .process-steps .steps-list .step .step-content p {
            color: color-mix(in srgb, var(--default-color), transparent 30%);
            margin: 0;
            font-size: 0.95rem;
        }

.paymnt-methods .payment-faqs {
    margin-bottom: 70px;
}

    .paymnt-methods .payment-faqs h3 {
        text-align: center;
        font-size: 2rem;
        margin-bottom: 40px;
    }

    .paymnt-methods .payment-faqs .faq-grid {
        max-width: 800px;
        margin: 0 auto;
    }

        .paymnt-methods .payment-faqs .faq-grid .faq-item {
            background-color: var(--surface-color);
            border-radius: 15px;
            margin-bottom: 15px;
            overflow: hidden;
        }

            .paymnt-methods .payment-faqs .faq-grid .faq-item h3 {
                margin: 0;
                padding: 20px 25px;
                font-size: 1.1rem;
                display: flex;
                align-items: center;
                justify-content: space-between;
                cursor: pointer;
                text-align: left;
            }

                .paymnt-methods .payment-faqs .faq-grid .faq-item h3 i {
                    transition: transform 0.3s;
                    font-size: 1.2rem;
                    color: #74676f;
                }

            .paymnt-methods .payment-faqs .faq-grid .faq-item .faq-answer {
                display: none;
                padding: 0 25px 20px;
            }

                .paymnt-methods .payment-faqs .faq-grid .faq-item .faq-answer p {
                    margin: 0;
                    color: color-mix(in srgb, var(--default-color), transparent 30%);
                }

            .paymnt-methods .payment-faqs .faq-grid .faq-item.faq-active h3 {
                color: #74676f;
            }

                .paymnt-methods .payment-faqs .faq-grid .faq-item.faq-active h3 i {
                    transform: rotate(180deg);
                }

            .paymnt-methods .payment-faqs .faq-grid .faq-item.faq-active .faq-answer {
                display: block;
            }

.paymnt-methods .payment-support .support-content {
    background-color: var(--surface-color);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
}

    .paymnt-methods .payment-support .support-content i {
        font-size: 2.5rem;
        color: #74676f;
        margin-bottom: 20px;
    }

    .paymnt-methods .payment-support .support-content h4 {
        font-size: 1.5rem;
        margin-bottom: 10px;
    }

    .paymnt-methods .payment-support .support-content p {
        color: color-mix(in srgb, var(--default-color), transparent 30%);
        margin-bottom: 25px;
    }

    .paymnt-methods .payment-support .support-content .support-actions {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 20px;
    }

@media (max-width: 576px) {
    .paymnt-methods .payment-support .support-content .support-actions {
        flex-direction: column;
    }
}

.paymnt-methods .payment-support .support-content .support-actions .btn-primary {
    background-color: #74676f;
    color: var(--contrast-color);
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}

    .paymnt-methods .payment-support .support-content .support-actions .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    .paymnt-methods .payment-support .support-content .support-actions .btn-primary i {
        font-size: 1.2rem;
        margin: 0;
    }

.paymnt-methods .payment-support .support-content .support-actions .divider {
    color: color-mix(in srgb, var(--default-color), transparent 50%);
}

@media (max-width: 576px) {
    .paymnt-methods .payment-support .support-content .support-actions .divider {
        display: none;
    }
}

.paymnt-methods .payment-support .support-content .support-actions .contact-email {
    color: var(--heading-color);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s;
}

    .paymnt-methods .payment-support .support-content .support-actions .contact-email:hover {
        color: #74676f;
    }

    .paymnt-methods .payment-support .support-content .support-actions .contact-email i {
        font-size: 1.2rem;
        margin: 0;
    }

/*--------------------------------------------------------------
# Shipping Info Section
--------------------------------------------------------------*/
.shipping-info .content-block {
    padding: 60px 0;
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 95%);
}

    .shipping-info .content-block:first-child {
        padding-top: 0;
    }

    .shipping-info .content-block:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    .shipping-info .content-block .section-heading {
        margin-bottom: 30px;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

        .shipping-info .content-block .section-heading i {
            font-size: 2.5rem;
            color: #74676f;
            margin-bottom: 15px;
        }

        .shipping-info .content-block .section-heading h3 {
            font-size: 1.75rem;
            margin-bottom: 10px;
        }

        .shipping-info .content-block .section-heading p {
            color: color-mix(in srgb, var(--default-color), transparent 30%);
        }

.shipping-info .delivery-card {
    background-color: var(--surface-color);
    border-radius: 8px;
    padding: 25px;
    height: 100%;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 0 20px 5px rgba(0, 0, 0, 0.03);
}

    .shipping-info .delivery-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    }

    .shipping-info .delivery-card .card-icon {
        width: 60px;
        height: 60px;
        background-color: color-mix(in srgb, #74676f, transparent 90%);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 20px;
    }

        .shipping-info .delivery-card .card-icon i {
            font-size: 1.75rem;
            color: #74676f;
        }

    .shipping-info .delivery-card h4 {
        margin-bottom: 15px;
        font-size: 1.25rem;
    }

    .shipping-info .delivery-card p {
        margin-bottom: 20px;
        color: color-mix(in srgb, var(--default-color), transparent 30%);
    }

    .shipping-info .delivery-card .delivery-time {
        display: flex;
        align-items: center;
        gap: 8px;
        color: #74676f;
        font-weight: 500;
    }

        .shipping-info .delivery-card .delivery-time i {
            font-size: 1.1rem;
        }

.shipping-info .shipping-rates {
    display: grid;
    gap: 20px;
}

    .shipping-info .shipping-rates .rate-item {
        background-color: var(--surface-color);
        padding: 25px;
        border-radius: 8px;
        text-align: center;
        transition: transform 0.3s;
        box-shadow: 0 0 20px 5px rgba(0, 0, 0, 0.03);
    }

        .shipping-info .shipping-rates .rate-item:hover {
            transform: translateY(-5px);
        }

        .shipping-info .shipping-rates .rate-item.highlight {
            border: 2px solid #74676f;
            background-color: color-mix(in srgb, #74676f, transparent 95%);
        }

        .shipping-info .shipping-rates .rate-item .rate-type {
            font-weight: 600;
            margin-bottom: 10px;
            color: var(--heading-color);
        }

        .shipping-info .shipping-rates .rate-item .rate-cost {
            font-size: 2rem;
            font-weight: 700;
            color: #74676f;
            margin-bottom: 10px;
        }

        .shipping-info .shipping-rates .rate-item .rate-info {
            color: color-mix(in srgb, var(--default-color), transparent 30%);
            font-size: 0.9rem;
        }

.shipping-info .international-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

    .shipping-info .international-info .info-item {
        text-align: center;
        padding: 25px;
        background-color: var(--surface-color);
        border-radius: 8px;
        transition: transform 0.3s;
        box-shadow: 0 0 20px 5px rgba(0, 0, 0, 0.03);
    }

        .shipping-info .international-info .info-item:hover {
            transform: translateY(-5px);
        }

        .shipping-info .international-info .info-item i {
            font-size: 2rem;
            color: #74676f;
            margin-bottom: 15px;
        }

        .shipping-info .international-info .info-item h5 {
            margin-bottom: 10px;
        }

        .shipping-info .international-info .info-item p {
            color: color-mix(in srgb, var(--default-color), transparent 30%);
            font-size: 0.95rem;
            margin: 0;
        }

.shipping-info .faq-list .faq-item {
    background-color: var(--surface-color);
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 0 20px 5px rgba(0, 0, 0, 0.03);
}

    .shipping-info .faq-list .faq-item h3 {
        margin: 0;
        padding: 20px;
        font-size: 1.1rem;
        cursor: pointer;
        display: flex;
        align-items: center;
        gap: 12px;
        color: var(--heading-color);
        transition: color 0.3s;
    }

        .shipping-info .faq-list .faq-item h3 i {
            font-size: 1.2rem;
            color: #74676f;
        }

            .shipping-info .faq-list .faq-item h3 i.faq-toggle {
                margin-left: auto;
                transition: transform 0.3s;
            }

    .shipping-info .faq-list .faq-item .faq-answer {
        display: none;
        padding: 0 20px 20px;
    }

        .shipping-info .faq-list .faq-item .faq-answer p {
            color: color-mix(in srgb, var(--default-color), transparent 30%);
            margin: 0;
        }

    .shipping-info .faq-list .faq-item.faq-active h3 {
        color: #74676f;
    }

        .shipping-info .faq-list .faq-item.faq-active h3 .faq-toggle {
            transform: rotate(180deg);
        }

    .shipping-info .faq-list .faq-item.faq-active .faq-answer {
        display: block;
    }

@media (max-width: 767px) {
    .shipping-info .delivery-card {
        padding: 20px;
    }

        .shipping-info .delivery-card .card-icon {
            width: 50px;
            height: 50px;
        }

            .shipping-info .delivery-card .card-icon i {
                font-size: 1.5rem;
            }

    .shipping-info .international-info {
        grid-template-columns: 1fr;
    }
}

/*--------------------------------------------------------------
# Error 404 Section
--------------------------------------------------------------*/
.error-404 {
    min-height: 80vh;
    display: flex;
    align-items: center;
}

    .error-404 .error-content {
        padding: 2rem;
    }

    .error-404 .error-badge {
        background-color: color-mix(in srgb, #74676f, transparent 90%);
        color: #74676f;
        padding: 0.5rem 1rem;
        border-radius: 50px;
        font-size: 0.9rem;
        font-weight: 500;
        display: inline-block;
    }

    .error-404 .error-title {
        font-size: clamp(2.5rem, 5vw, 3.5rem);
        font-weight: 700;
        color: var(--heading-color);
        font-family: var(--heading-font);
        line-height: 1.2;
    }

    .error-404 .error-text {
        font-size: 1.1rem;
        color: color-mix(in srgb, var(--default-color), transparent 20%);
        max-width: 500px;
        margin-bottom: 2rem;
    }

    .error-404 .error-actions .btn {
        padding: 0.8rem 1.5rem;
        border-radius: 50px;
        font-weight: 500;
        transition: all 0.3s ease;
    }

        .error-404 .error-actions .btn.btn-outline {
            border: 2px solid #74676f;
            color: #74676f;
            background: transparent;
        }

            .error-404 .error-actions .btn.btn-outline:hover {
                background: #74676f;
                color: var(--contrast-color);
                transform: translateY(-2px);
            }

        .error-404 .error-actions .btn.btn-solid {
            background: #74676f;
            color: var(--contrast-color);
            border: 2px solid #74676f;
        }

            .error-404 .error-actions .btn.btn-solid:hover {
                background: color-mix(in srgb, #74676f, transparent 15%);
                transform: translateY(-2px);
            }

    .error-404 .error-illustration {
        padding: 2rem;
        position: relative;
    }

        .error-404 .error-illustration .illustration-container {
            position: relative;
            height: 400px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .error-404 .error-illustration .planet {
            position: absolute;
            font-size: 8rem;
            color: color-mix(in srgb, #74676f, transparent 15%);
            animation: float 6s infinite ease-in-out;
            z-index: 1;
        }

        .error-404 .error-illustration .astronaut {
            position: absolute;
            font-size: 4rem;
            color: var(--heading-color);
            animation: float 4s infinite ease-in-out;
            animation-delay: 1s;
            z-index: 2;
            transform: translateX(50px);
        }

        .error-404 .error-illustration .stars {
            position: absolute;
            width: 100%;
            height: 100%;
        }

            .error-404 .error-illustration .stars i {
                position: absolute;
                color: color-mix(in srgb, var(--heading-color), transparent 40%);
                animation: twinkle infinite ease-in-out;
            }

                .error-404 .error-illustration .stars i.star-1 {
                    top: 20%;
                    left: 20%;
                    font-size: 1rem;
                    animation-duration: 3s;
                }

                .error-404 .error-illustration .stars i.star-2 {
                    top: 30%;
                    right: 25%;
                    font-size: 0.8rem;
                    animation-duration: 4s;
                }

                .error-404 .error-illustration .stars i.star-3 {
                    bottom: 40%;
                    left: 30%;
                    font-size: 1.2rem;
                    animation-duration: 5s;
                }

                .error-404 .error-illustration .stars i.star-4 {
                    top: 50%;
                    right: 40%;
                    font-size: 0.9rem;
                    animation-duration: 3.5s;
                }

                .error-404 .error-illustration .stars i.star-5 {
                    bottom: 30%;
                    right: 30%;
                    font-size: 1.1rem;
                    animation-duration: 4.5s;
                }

    .error-404 .support-text p {
        color: color-mix(in srgb, var(--default-color), transparent 30%);
        margin-bottom: 0.5rem;
    }

    .error-404 .support-text .support-link {
        color: #74676f;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.3s ease;
    }

        .error-404 .support-text .support-link:hover {
            color: color-mix(in srgb, #74676f, transparent 20%);
        }

@media (max-width: 991.98px) {
    .error-404 .error-content {
        text-align: center !important;
        padding-bottom: 0;
    }

    .error-404 .error-text {
        margin: 0 auto 2rem;
    }

    .error-404 .error-illustration {
        padding-top: 3rem;
    }

        .error-404 .error-illustration .illustration-container {
            height: 300px;
        }

        .error-404 .error-illustration .planet {
            font-size: 6rem;
        }

        .error-404 .error-illustration .astronaut {
            font-size: 3rem;
        }
}

@media (max-width: 575.98px) {
    .error-404 .error-actions {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

        .error-404 .error-actions .btn {
            width: 100%;
        }

        .error-404 .error-actions .ms-3 {
            margin-left: 0 !important;
        }
}

@keyframes float {

    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes twinkle {

    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(0.7);
    }
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
    /* Add your styles here */
}

/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widgets-container {
    margin: 60px 0 30px 0;
}

.widget-title {
    color: var(--heading-color);
    font-size: 20px;
    font-weight: 600;
    padding: 0 0 0 10px;
    margin: 0 0 20px 0;
    border-left: 4px solid #74676f;
}

.widget-item {
    margin-bottom: 30px;
    background-color: color-mix(in srgb, var(--default-color), transparent 98%);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    padding: 30px;
    border-radius: 5px;
}

    .widget-item:last-child {
        margin-bottom: 0;
    }

.product-categories-widget .category-tree {
    margin-top: 1rem;
}

    .product-categories-widget .category-tree .category-item {
        border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
        padding: 0.75rem 0;
    }

        .product-categories-widget .category-tree .category-item:last-child {
            border-bottom: none;
        }

        .product-categories-widget .category-tree .category-item .category-header {
            cursor: pointer;
            transition: all 0.3s;
        }

            .product-categories-widget .category-tree .category-item .category-header:hover .category-link {
                color: #74676f;
            }

            .product-categories-widget .category-tree .category-item .category-header:hover .category-toggle {
                color: #74676f;
            }

        .product-categories-widget .category-tree .category-item .category-link {
            color: var(--default-color);
            font-weight: 500;
            text-decoration: none;
            transition: color 0.3s;
        }

        .product-categories-widget .category-tree .category-item .category-toggle {
            display: flex;
            align-items: center;
            justify-content: center;
            color: color-mix(in srgb, var(--default-color), transparent 40%);
            transition: color 0.3s;
        }

            .product-categories-widget .category-tree .category-item .category-toggle .bi-chevron-up {
                display: none;
            }

        .product-categories-widget .category-tree .category-item .category-header:not(.collapsed) .category-toggle .bi-chevron-down {
            display: none;
        }

        .product-categories-widget .category-tree .category-item .category-header:not(.collapsed) .category-toggle .bi-chevron-up {
            display: inline;
        }

        .product-categories-widget .category-tree .category-item .subcategory-list li {
            padding: 0.5rem 0;
        }

            .product-categories-widget .category-tree .category-item .subcategory-list li:first-child {
                padding-top: 0.75rem;
            }

            .product-categories-widget .category-tree .category-item .subcategory-list li:last-child {
                padding-bottom: 0;
            }

        .product-categories-widget .category-tree .category-item .subcategory-list .subcategory-link {
            color: color-mix(in srgb, var(--default-color), transparent 20%);
            text-decoration: none;
            font-size: 0.95rem;
            transition: color 0.3s;
        }

            .product-categories-widget .category-tree .category-item .subcategory-list .subcategory-link:hover {
                color: #74676f;
            }

@media (max-width: 767.98px) {
    .product-categories-widget .category-tree .category-item {
        padding: 0.625rem 0;
    }

        .product-categories-widget .category-tree .category-item .subcategory-list li {
            padding: 0.4rem 0;
        }
}

.pricing-range-widget .price-range-container .current-range {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--heading-color);
}

.pricing-range-widget .price-range-container .range-slider {
    position: relative;
    height: 1.5rem;
    margin: 1.5rem 0;
}

    .pricing-range-widget .price-range-container .range-slider .slider-track {
        position: absolute;
        width: 100%;
        height: 0.5rem;
        top: 50%;
        transform: translateY(-50%);
        background-color: color-mix(in srgb, var(--default-color), transparent 85%);
        border-radius: 0.25rem;
    }

    .pricing-range-widget .price-range-container .range-slider .slider-progress {
        position: absolute;
        height: 0.5rem;
        top: 50%;
        transform: translateY(-50%);
        background-color: #74676f;
        border-radius: 0.25rem;
    }

    .pricing-range-widget .price-range-container .range-slider input[type=range] {
        position: absolute;
        width: 100%;
        height: 0.5rem;
        top: 50%;
        transform: translateY(-50%);
        background: none;
        pointer-events: none;
        -webkit-appearance: none;
        appearance: none;
    }

        .pricing-range-widget .price-range-container .range-slider input[type=range]::-webkit-slider-thumb {
            height: 1.25rem;
            width: 1.25rem;
            border-radius: 50%;
            background-color: #74676f;
            cursor: pointer;
            pointer-events: auto;
            -webkit-appearance: none;
            appearance: none;
            box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
            transition: box-shadow 0.2s ease;
        }

            .pricing-range-widget .price-range-container .range-slider input[type=range]::-webkit-slider-thumb:hover {
                box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
            }

        .pricing-range-widget .price-range-container .range-slider input[type=range]::-moz-range-thumb {
            height: 1.25rem;
            width: 1.25rem;
            border: none;
            border-radius: 50%;
            background-color: #74676f;
            cursor: pointer;
            pointer-events: auto;
            box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
            transition: box-shadow 0.2s ease;
        }

            .pricing-range-widget .price-range-container .range-slider input[type=range]::-moz-range-thumb:hover {
                box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
            }

        .pricing-range-widget .price-range-container .range-slider input[type=range]:focus {
            outline: none;
        }

            .pricing-range-widget .price-range-container .range-slider input[type=range]:focus::-webkit-slider-thumb {
                box-shadow: 0 0 0 3px color-mix(in srgb, #74676f, transparent 75%);
            }

            .pricing-range-widget .price-range-container .range-slider input[type=range]:focus::-moz-range-thumb {
                box-shadow: 0 0 0 3px color-mix(in srgb, #74676f, transparent 75%);
            }

    .pricing-range-widget .price-range-container .range-slider .min-range {
        z-index: 1;
    }

    .pricing-range-widget .price-range-container .range-slider .max-range {
        z-index: 2;
    }

.pricing-range-widget .price-range-container .price-inputs .input-group-text {
    background-color: color-mix(in srgb, #74676f, transparent 85%);
    color: var(--heading-color);
    border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.pricing-range-widget .price-range-container .price-inputs .form-control {
    color: var(--default-color);
    background-color: var(--surface-color);
    border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

    .pricing-range-widget .price-range-container .price-inputs .form-control:focus {
        border-color: #74676f;
        box-shadow: none;
    }

    .pricing-range-widget .price-range-container .price-inputs .form-control::placeholder {
        color: color-mix(in srgb, var(--default-color), transparent 70%);
    }

.pricing-range-widget .price-range-container .filter-actions .btn-primary {
    background-color: #74676f;
    border-color: #74676f;
    color: var(--contrast-color);
    transition: all 0.3s ease;
    font-size: 16px;
    padding: 10px 20px;
}

    .pricing-range-widget .price-range-container .filter-actions .btn-primary:hover {
        background-color: color-mix(in srgb, #74676f, #000 10%);
        border-color: color-mix(in srgb, #74676f, #000 10%);
    }

    .pricing-range-widget .price-range-container .filter-actions .btn-primary:focus {
        box-shadow: 0 0 0 0.25rem color-mix(in srgb, #74676f, transparent 75%);
    }

.brand-filter-widget .brand-filter-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.brand-filter-widget .brand-search {
    position: relative;
    margin-bottom: 5px;
}

    .brand-filter-widget .brand-search input {
        color: var(--default-color);
        background-color: var(--surface-color);
        font-size: 14px;
        border-color: color-mix(in srgb, var(--default-color), transparent 80%);
        padding: 10px 35px 10px 15px;
    }

        .brand-filter-widget .brand-search input:focus {
            border-color: #74676f;
            box-shadow: none;
        }

        .brand-filter-widget .brand-search input::placeholder {
            color: color-mix(in srgb, var(--default-color), transparent 70%);
        }

    .brand-filter-widget .brand-search .bi-search {
        position: absolute;
        right: 12px;
        top: 50%;
        transform: translateY(-50%);
        color: color-mix(in srgb, var(--default-color), transparent 50%);
        font-size: 14px;
    }

.brand-filter-widget .brand-list {
    max-height: 280px;
    overflow-y: auto;
    padding-right: 5px;
    /* Custom scrollbar */
}

    .brand-filter-widget .brand-list::-webkit-scrollbar {
        width: 5px;
    }

    .brand-filter-widget .brand-list::-webkit-scrollbar-track {
        background: color-mix(in srgb, var(--default-color), transparent 95%);
        border-radius: 10px;
    }

    .brand-filter-widget .brand-list::-webkit-scrollbar-thumb {
        background: color-mix(in srgb, var(--default-color), transparent 70%);
        border-radius: 10px;
    }

        .brand-filter-widget .brand-list::-webkit-scrollbar-thumb:hover {
            background: color-mix(in srgb, var(--default-color), transparent 60%);
        }

.brand-filter-widget .brand-item {
    margin-bottom: 10px;
}

    .brand-filter-widget .brand-item:last-child {
        margin-bottom: 0;
    }

    .brand-filter-widget .brand-item .form-check {
        display: flex;
        align-items: center;
        margin: 0;
    }

    .brand-filter-widget .brand-item .form-check-input {
        margin-top: 0;
        margin-right: 10px;
        cursor: pointer;
    }

        .brand-filter-widget .brand-item .form-check-input:checked {
            background-color: #74676f;
            border-color: #74676f;
            box-shadow: none;
        }

        .brand-filter-widget .brand-item .form-check-input:focus {
            border-color: #74676f;
            box-shadow: none;
        }

    .brand-filter-widget .brand-item .form-check-label {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        cursor: pointer;
        font-size: 14px;
        color: var(--default-color);
    }

    .brand-filter-widget .brand-item .brand-count {
        font-size: 12px;
        color: color-mix(in srgb, var(--default-color), transparent 40%);
        margin-left: auto;
    }

.brand-filter-widget .brand-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 5px;
    padding-top: 15px;
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

    .brand-filter-widget .brand-actions .btn-outline-primary {
        color: #74676f;
        border-color: #74676f;
    }

        .brand-filter-widget .brand-actions .btn-outline-primary:hover {
            background-color: #74676f;
            color: var(--contrast-color);
        }

    .brand-filter-widget .brand-actions .btn-link {
        color: color-mix(in srgb, var(--default-color), transparent 30%);
        text-decoration: none;
        padding: 0.25rem 0.5rem;
        font-size: 0.875rem;
    }

        .brand-filter-widget .brand-actions .btn-link:hover {
            color: var(--default-color);
            text-decoration: underline;
        }

@media (max-width: 767.98px) {
    .brand-filter-widget .brand-list {
        max-height: 200px;
    }
}

.color-filter-widget .color-filter-content .color-options {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

    .color-filter-widget .color-filter-content .color-options .color-option {
        margin: 0;
        padding: 0;
        position: relative;
        flex: 0 0 auto;
    }

        .color-filter-widget .color-filter-content .color-options .color-option .form-check-input {
            position: absolute;
            opacity: 0;
            cursor: pointer;
            height: 0;
            width: 0;
        }

            .color-filter-widget .color-filter-content .color-options .color-option .form-check-input:checked ~ .form-check-label .color-swatch {
                transform: scale(1.15);
                border: 2px solid #74676f;
            }

                .color-filter-widget .color-filter-content .color-options .color-option .form-check-input:checked ~ .form-check-label .color-swatch::after {
                    content: "";
                    position: absolute;
                    top: 50%;
                    left: 50%;
                    transform: translate(-50%, -50%);
                    width: 0.6rem;
                    height: 0.6rem;
                    border-radius: 50%;
                    background-color: #fff;
                    opacity: 0.9;
                    box-shadow: 0 0 2px rgba(0, 0, 0, 0.3);
                }

                .color-filter-widget .color-filter-content .color-options .color-option .form-check-input:checked ~ .form-check-label .color-swatch[style*="background-color: #ffffff"]::after {
                    background-color: #74676f;
                }

                .color-filter-widget .color-filter-content .color-options .color-option .form-check-input:checked ~ .form-check-label .color-swatch[style*="background-color: #f1c40f"]::after,
                .color-filter-widget .color-filter-content .color-options .color-option .form-check-input:checked ~ .form-check-label .color-swatch[style*="background-color: #2ecc71"]::after {
                    background-color: rgba(0, 0, 0, 0.5);
                }

        .color-filter-widget .color-filter-content .color-options .color-option .form-check-label {
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            padding: 0;
            margin: 0;
        }

        .color-filter-widget .color-filter-content .color-options .color-option .color-swatch {
            display: inline-block;
            width: 2rem;
            height: 2rem;
            border-radius: 50%;
            border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
            position: relative;
            transition: all 0.2s ease;
        }

            .color-filter-widget .color-filter-content .color-options .color-option .color-swatch:hover {
                transform: scale(1.1);
                border-color: #74676f;
            }

            .color-filter-widget .color-filter-content .color-options .color-option .color-swatch[style*="background-color: #ffffff"] {
                border: 1px solid #e0e0e0;
            }

.color-filter-widget .color-filter-content .filter-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 1rem;
}

    .color-filter-widget .color-filter-content .filter-actions .btn {
        padding: 0.375rem 0.75rem;
        font-size: 0.875rem;
        transition: all 0.3s ease;
    }

        .color-filter-widget .color-filter-content .filter-actions .btn.btn-primary {
            background-color: #74676f;
            border-color: #74676f;
        }

            .color-filter-widget .color-filter-content .filter-actions .btn.btn-primary:hover {
                background-color: color-mix(in srgb, #74676f, #000 10%);
                border-color: color-mix(in srgb, #74676f, #000 10%);
            }

            .color-filter-widget .color-filter-content .filter-actions .btn.btn-primary:focus {
                box-shadow: 0 0 0 0.25rem color-mix(in srgb, #74676f, transparent 70%);
            }

        .color-filter-widget .color-filter-content .filter-actions .btn.btn-outline-secondary {
            color: var(--default-color);
            border-color: color-mix(in srgb, var(--default-color), transparent 70%);
        }

            .color-filter-widget .color-filter-content .filter-actions .btn.btn-outline-secondary:hover {
                background-color: color-mix(in srgb, var(--default-color), transparent 90%);
                color: var(--default-color);
            }

@media (max-width: 575.98px) {
    .color-filter-widget .color-filter-content .color-options {
        justify-content: center;
    }
}

.search-widget form {
    background: var(--background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
    padding: 3px 10px;
    position: relative;
    transition: 0.3s;
}

    .search-widget form input[type=text] {
        border: 0;
        padding: 4px;
        border-radius: 4px;
        width: calc(100% - 40px);
        background-color: var(--background-color);
        color: var(--default-color);
    }

        .search-widget form input[type=text]:focus {
            outline: none;
        }

    .search-widget form button {
        background: #74676f;
        color: var(--contrast-color);
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        border: 0;
        font-size: 16px;
        padding: 0 15px;
        margin: -1px;
        transition: 0.3s;
        border-radius: 0 4px 4px 0;
        line-height: 0;
    }

        .search-widget form button i {
            line-height: 0;
        }

        .search-widget form button:hover {
            background: color-mix(in srgb, #74676f, transparent 20%);
        }

    .search-widget form:is(:focus-within) {
        border-color: #74676f;
    }

.categories-widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .categories-widget ul li {
        padding-bottom: 10px;
    }

        .categories-widget ul li:last-child {
            padding-bottom: 0;
        }

    .categories-widget ul a {
        color: color-mix(in srgb, var(--default-color), transparent 20%);
        transition: 0.3s;
    }

        .categories-widget ul a:hover {
            color: #74676f;
        }

        .categories-widget ul a span {
            padding-left: 5px;
            color: color-mix(in srgb, var(--default-color), transparent 50%);
            font-size: 14px;
        }

.recent-posts-widget .post-item {
    display: flex;
    margin-bottom: 15px;
}

    .recent-posts-widget .post-item:last-child {
        margin-bottom: 0;
    }

    .recent-posts-widget .post-item img {
        width: 80px;
        margin-right: 15px;
    }

    .recent-posts-widget .post-item h4 {
        font-size: 15px;
        font-weight: bold;
        margin-bottom: 5px;
    }

        .recent-posts-widget .post-item h4 a {
            color: var(--default-color);
            transition: 0.3s;
        }

            .recent-posts-widget .post-item h4 a:hover {
                color: #74676f;
            }

    .recent-posts-widget .post-item time {
        display: block;
        font-style: italic;
        font-size: 14px;
        color: color-mix(in srgb, var(--default-color), transparent 50%);
    }

.tags-widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .tags-widget ul li {
        display: inline-block;
    }

    .tags-widget ul a {
        background-color: color-mix(in srgb, var(--default-color), transparent 94%);
        color: color-mix(in srgb, var(--default-color), transparent 30%);
        border-radius: 50px;
        font-size: 14px;
        padding: 5px 15px;
        margin: 0 6px 8px 0;
        display: inline-block;
        transition: 0.3s;
    }

        .tags-widget ul a:hover {
            background: #74676f;
            color: var(--contrast-color);
        }

        .tags-widget ul a span {
            padding-left: 5px;
            color: color-mix(in srgb, var(--default-color), transparent 60%);
            font-size: 14px;
        }
