@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');

/* Custom styles for E-Shop */
:root {
    /* Main Colors */
    --main-color: #DE0000;
    --main-color-light: #ff1a1a;
    --main-color-dark: #b30000;

    /* Secondary Colors */
    --secondary-color: #2C3E50;
    --secondary-color-light: #34495E;
    --secondary-color-dark: #1a252f;

    /* Neutral Colors */
    --neutral-100: #ffffff;
    --neutral-200: #f8f9fa;
    --neutral-300: #e9ecef;
    --neutral-400: #dee2e6;
    --neutral-500: #adb5bd;
    --neutral-600: #6c757d;
    --neutral-700: #495057;
    --neutral-800: #343a40;
    --neutral-900: #212529;

    /* Status Colors */
    --success-color: #28a745;
    --warning-color: #ffc107;
    --danger-color: #dc3545;
    --info-color: #17a2b8;

    /* Text Colors */
    --text-primary: var(--neutral-900);
    --text-secondary: var(--neutral-700);
    --text-muted: var(--neutral-600);
    --text-light: var(--neutral-100);

    /* Background Colors */
    --bg-primary: var(--neutral-100);
    --bg-secondary: var(--neutral-200);
    --bg-tertiary: var(--neutral-300);

    /* Border Colors */
    --border-color: var(--neutral-400);
    --border-color-light: var(--neutral-300);
    --border-color-dark: var(--neutral-500);

    /* Shadow Colors */
    --shadow-color: rgba(0, 0, 0, 0.1);
    --shadow-color-dark: rgba(0, 0, 0, 0.2);

    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;

    /* Border Radius */
    --radius-sm: 0.25rem;
    --radius-md: 0.5rem;
    --radius-lg: 1rem;
    --radius-full: 9999px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Z-index */
    --z-header: 1000;
    --z-dropdown: 1001;
    --z-modal: 1002;
    --z-tooltip: 1003;
}

* {
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    /* font-weight: <weight>; */
    font-style: normal;
}

/* Custom Scrollbar */
* {
    scrollbar-color: var(--main-color) #f1f1f1;
    scrollbar-width: thin;
}

*::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

*::-webkit-scrollbar-track {
    background: #f1f1f1;
}

*::-webkit-scrollbar-thumb {
    background: var(--main-color);
    border-radius: 4px;
}

*::-webkit-scrollbar-thumb:hover {
    background: var(--main-color-dark);
}


a,
a:focus,
button,
nav input,
nav input:focus,
button:focus {
    outline: none;
    box-shadow: none;
}

a {
    text-decoration: none;
}

/* General Styles */
body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-primary);
    /* background-color: var(--bg-primary); */
}

/* Header Styles */
.main-header {
    position: fixed;
    transition: all 0.5s;
    background-color: #99999952;
    /* box-shadow: 0 2px 4px var(--shadow-color); */
    top: 0;
    z-index: var(--z-header);
    width: 100%;
    /* margin-bottom: 5px; */
    /* backdrop-filter: blur(10px); */
}

.scrolled {
    background-color: #eee !important;
}

.navbar {
    /* padding: var(--spacing-md) 0; */
    padding: 10px 0;
}

nav .search-box input::placeholder {
    color: #000;
}

nav .search-box input {
    font-family: Montserrat;
    font-weight: 400;
    font-style: Regular;
    font-size: 15px;
    leading-trim: NONE;
    line-height: 100%;
    letter-spacing: 0.37px;
    text-transform: capitalize;
    padding-left: 12px;
}

nav>.container {
    /* padding-left: 0;
    padding-right: 0; */
}

.navbar-brand img {
    height: 50px;
    min-width: 150px;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: var(--spacing-xl);
    /* margin-right: 35px; */
}

.search-box {
    /* - البحث يجب أن يتم تكبيره قليلا ليتناسب مع تصميم فيجما */
    flex: 0 0 350px;
}

.header-content {
    margin-left: 35px;
}

.search-box .input-group {
    direction: rtl;
    background: var(--bg-primary);
    border-radius: var(--radius-full);
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.search-box .input-group input {
    text-align: left;
}

.search-box .form-control {
    border: none;
    padding: var(--spacing-sm) var(--spacing-md);
    background: transparent;
}

.search-box .btn {
    padding: var(--spacing-sm) var(--spacing-md);
    background-color: #ffffff00;
    color: #000;
    border: none;
}

.search-box .btn:hover {
    background-color: none;
    border-color: none;
}

.main-menu {
    display: flex;
    gap: 10px;
    margin: 0;
    padding: 0;
}

.main-menu .nav-link {
    color: var(--text-primary);
    font-weight: 500;
    padding: var(--spacing-sm) var(--spacing-md);
    transition: color var(--transition-normal);
    font-weight: 600;
}

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

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

.header-actions .btn-link {
    font-size: 1.25rem;
    padding: var(--spacing-sm);
    transition: color var(--transition-normal);
    color: var(--text-primary) !important;
}

.header-actions .btn-link:hover {
    color: var(--main-color) !important;
}

.header-actions .badge {
    background-color: var(--main-color);
}

/* Responsive Styles */
@media (max-width: 991px) {
    .header-content {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }

    .search-box {
        flex: 1;
        width: 100%;
    }

    .main-menu {
        justify-content: center;
        flex-wrap: wrap;
    }

    .header-actions {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .navbar-brand img {
        height: 30px;
    }

    .main-menu {
        gap: 0.5rem;
    }

    .main-menu .nav-link {
        padding: 0.5rem;
        font-size: 0.9rem;
    }
}

/* Hero Section */
.hero {
    background-color: #c5cecd;
}

.hero .hero-content {
    background-size: 49%;
    background-position: 71% 100%;
    position: relative;
    background-repeat: no-repeat;
}

/* Product Card Styles */
.card {
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.card-img-top {
    height: 200px;
    object-fit: cover;
}

/* Product Detail Page */


.product-carousel .carousel-item img {
    object-fit: cover;
}

.new-trind-swiper .card-img-top {
    height: 250px !important;
}

.product-thumbnails img {
    cursor: pointer;
    transition: opacity 0.2s ease-in-out;
}

.product-thumbnails img:hover {
    opacity: 0.8;
}

/* Cart Page */
.cart-item img {
    height: 100px;
    object-fit: cover;
}

/* Footer Styles */
.footer {
    background-color: #f8f9fa;
    padding: 3rem 0;
    margin-top: 3rem;
}

/* Custom Button Styles */
.btn-primary {
    background-color: var(--main-color);
    border-color: var(--main-color);
}

.btn-primary:hover {
    background-color: var(--main-color);
    border-color: #0a58ca;
}

.btn-outline-primary {
    color: var(--main-color);
    border-color: var(--main-color);
}

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

/* Form Styles */
.form-control:focus {
    border-color: var(--main-color);
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

/* Rating Stars */
.text-warning {
    color: #ffc107 !important;
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

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

/* Custom Utility Classes */
.text-primary {
    color: #0d6efd !important;
}

.bg-light {
    background-color: #f8f9fa !important;
}

/* Custom Component Styles */
.quantity-input {
    width: 60px;
    text-align: center;
}

/* Custom Badge Styles */
.badge {
    font-weight: 500;
    padding: 0.35em 0.65em;
}

.flash-sale {
    padding-bottom: 3rem !important;
}

.trends-categories {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
}

.trends-categories .card {
    border-radius: 10px;
}

.section-title {
    font-family: Montserrat;
    font-weight: 600;
    font-style: SemiBold;
    font-size: 24px;
    leading-trim: NONE;
    line-height: 100%;
    letter-spacing: 0.37px;
    font-variant: small-caps;
}

.trends-categories .card h5 {
    font-family: Montserrat;
    font-weight: 400;
    font-style: Regular;
    font-size: 18px;
    leading-trim: NONE;
    line-height: 100%;
    letter-spacing: 0.37px;
    text-align: center;
    text-transform: capitalize;
}


/* Custom Card Styles */
.card-title {
    font-weight: normal;
    margin-bottom: 0.5rem;
}

.card-text {
    color: #6c757d;
}

/* Custom Navigation Styles */
.nav-link {
    color: #333;
    font-weight: 500;
}

.nav-link.active {
    color: var(--main-color);
    font-weight: bold;
}

.nav-link:hover {
    color: var(--main-color);
}

/* Custom Tab Styles */
.nav-tabs .nav-link {
    color: #6c757d;
    border: none;
    padding: 0.5rem 1rem;
}

.nav-tabs .nav-link.active {
    color: var(--main-color);
    border-bottom: 2px solid var(--main-color);
    background: none;
}

/* Custom Table Styles */
.table th {
    font-weight: 600;
    color: #495057;
}

/* Custom Alert Styles */
.alert {
    border: none;
    border-radius: 0.5rem;
}

/* Custom Modal Styles */
.modal-content {
    border: none;
    border-radius: 0.5rem;
}

.modal-header {
    border-bottom: 1px solid #dee2e6;
}

.modal-footer {
    border-top: 1px solid #dee2e6;
}

/* Custom Pagination Styles */
.pagination .page-link {
    color: #0d6efd;
    border: 1px solid #dee2e6;
}

.pagination .page-item.active .page-link {
    background-color: #0d6efd;
    border-color: #0d6efd;
}

/* Custom Form Check Styles */
.form-check-input:checked {
    background-color: #0d6efd;
    border-color: #0d6efd;
}

/* Custom Range Input Styles */
.form-range::-webkit-slider-thumb {
    background: #0d6efd;
}

.form-range::-moz-range-thumb {
    background: #0d6efd;
}

/* Custom Select Styles */
.form-select:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

/* Custom Breadcrumb Styles */
.breadcrumb-item+.breadcrumb-item::before {
    content: "›";
}

/* Custom Tooltip Styles */
.tooltip {
    font-size: 0.875rem;
}

/* Custom Popover Styles */
.popover {
    border: none;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Custom Progress Bar Styles */
.progress {
    height: 0.5rem;
    border-radius: 1rem;
}

/* Custom Spinner Styles */
.spinner-border,
.spinner-border-sm,
[class*="spinner-border"] {
    border-color: var(--main-color) !important;
    border-right-color: transparent !important;
}

.spinner-border.text-primary,
.spinner-border-sm.text-primary,
[class*="spinner-border"].text-primary {
    color: var(--main-color) !important;
    border-color: var(--main-color) !important;
    border-right-color: transparent !important;
}

/* Custom Toast Styles */
.toast {
    border: none;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Custom Accordion Styles */
.accordion-button:not(.collapsed) {
    background-color: #e7f1ff;
    color: #0d6efd;
}

/* Custom List Group Styles */
.list-group-item {
    border: 1px solid #dee2e6;
}

.list-group-item.active {
    background-color: #0d6efd;
    border-color: #0d6efd;
}

/* Custom Card Group Styles */
.card-group>.card {
    border: 1px solid #dee2e6;
}

/* Custom Input Group Styles */
.input-group-text {
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
}

/* Custom Dropdown Styles */
.dropdown-menu {
    border: none;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.dropdown-item:active {
    background-color: #0d6efd;
}

/* Custom Navbar Styles */
.navbar-light .navbar-nav .nav-link {
    font-family: Montserrat;
    font-weight: 500;
    font-style: Medium;
    font-size: 18px;
    leading-trim: NONE;
    line-height: 150%;
    letter-spacing: -1%;
    text-align: right;
    color: #000;
    width: max-content;
}

.navbar-light .navbar-nav .nav-link:hover {
    color: #0d6efd;
}

/* Custom Footer Link Styles */
.footer a {
    color: #6c757d;
    text-decoration: none;
}

.footer a:hover {
    color: #0d6efd;
}

/* Custom Social Media Icons */
.social-icons i {
    font-size: 1.5rem;
    color: #6c757d;
    transition: color 0.2s ease-in-out;
}

.social-icons i:hover {
    color: #0d6efd;
}

/* Custom Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: none;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background-color: #0d6efd;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: background-color 0.2s ease-in-out;
}

.back-to-top:hover {
    background-color: var(--main-color);
    color: white;
}

/* Custom Loading Spinner */
.loading-spinner {
    width: 3rem;
    height: 3rem;
    border: 0.25rem solid #f3f3f3;
    border-top: 0.25rem solid var(--main-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

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

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

::-webkit-scrollbar-thumb {
    background: #0d6efd;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--main-color);
}

/* Custom Selection */
::selection {
    background-color: #0d6efd;
    color: white;
}

/* Custom Focus Styles */
:focus {
    outline: none;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

/* Custom Placeholder Styles */
::placeholder {
    color: #6c757d;
    opacity: 0.7;
}

/* Custom Disabled Styles */
:disabled {
    opacity: 0.65;
    cursor: not-allowed;
}

/* Custom Print Styles */
@media print {
    .no-print {
        display: none !important;
    }
}

/* Custom Dark Mode Support */
/* @media (prefers-color-scheme: dark) {
    body {
        background-color: #212529;
        color: #f8f9fa;
    }

    .card {
        background-color: #2c3034;
        border-color: #373b3e;
    }

    .text-muted {
        color: #adb5bd !important;
    }
} */

.bg-primary {
    --bs-bg-opacity: 1;
    background-color: var(--main-color) !important;
}

/* .flash-sale {} */

.flash-sale .section-header {
    background: linear-gradient(0deg, #DE0000, #DE0000);
    color: #fff;
}

.flash-sale .footer-section {
    background-color: #000;
}

.section-title {
    font-weight: 700;
}

.text-bold {
    font-weight: bold;
}

.text-bold-600 {
    font-weight: 600 !important;
}

.text-bold-500 {
    font-weight: 500 !important;
}

.text-bold-700 {
    font-weight: 700 !important;
}

/* Styles for Trends Products section (renamed to For You) */
.product-card {
    border-radius: 0.5rem;
    overflow: hidden;
    margin-bottom: 3.5rem !important;
    margin-top: 10px;
    /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05); */
    /* background-color: #fff; */
    /* Ensure card background is white */
}

.showFeatured {
    padding-top: 3rem;
}

.header-actions #cartLink:active {
    background: #000 !important;
    color: #fff !important;
    border-color: #000 !important;
}

.some-categories {
    padding-top: 3.5rem !important;
}

/* .some-categories, */
/* .trends-products, */
/* .from-our-fans { */
/* padding: 3rem 0; */
/* } */

.product-image-container {
    position: relative;
    border-radius: 10px 10px 0;
    overflow: hidden;
}

.product-image {
    width: 100%;
    height: auto;
    display: block;
    /* Remove extra space below image */
}

.discount-badge {
    position: absolute;
    top: 0;
    left: 0;
    background: #6CB778;
    /* Green color */
    color: white;
    padding: 0.5rem 0.5rem;
    border-radius: 10px 0;
    font-size: 0.8rem;
    /* font-weight: bold; */
    z-index: 1;
    /* Ensure badge is above image */
}

.like-button {
    position: absolute;
    bottom: 0.5rem;
    right: 0.5rem;
    background-color: rgba(255, 255, 255, 0.8);
    /* Semi-transparent white background */
    border: none;
    border-radius: 50%;
    width: 2rem;
    height: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    padding: 0;
    z-index: 1;
}

.like-button i {
    color: #000;
    font-size: 23px;
    transition: all 0.3s ease;
    color: #666;
    display: flex;
    align-items: center;
    margin-top: 4px;
}

.color-options {
    padding: 10px 0 0 0;
    display: flex;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.color-options .color-circle {
    display: inline-block;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    margin-right: 4px;
    border: 1px solid #000 !important;
}

.product-title {
    /* font-size: 1rem; */
    margin-bottom: 0.5rem;
    color: #000;
    font-weight: normal;
}

.product-price {
    /* font-size: 1.5rem; */
    font-weight: 600;
    color: #000;
    margin-bottom: 0;

    font-family: Montserrat;
    font-weight: 600;
    font-style: SemiBold;
    font-size: 24px;
    leading-trim: NONE;
    line-height: 100%;
    letter-spacing: 0.37px;
    text-transform: capitalize;

}

.original-price {
    font-size: 1.2rem;
    /* Adjust font size */
    margin-right: 0.5rem;
    color: #888;
    /* Lighter grey color */
    text-decoration: line-through;
    /* Ensure strikethrough */
    font-weight: normal;
    /* Ensure normal font weight */
}

/* Style for the "For You" heading */
.trends-products h2 {
    /* Targeting the h2 inside the section */
    /* text-align: left !important; */
    /* Align heading to the left */
    margin-bottom: 1.5rem !important;
    /* Add more space below the heading */
    font-weight: bold;
    /* Make the heading bold */
    color: #000;
    /* Ensure black color */
}

.tabs-filters {}

.carousel-indicators [data-bs-target] {
    width: 20px;
    height: 0px;
    background: #000;
}

.carousel-indicators button {
    background: none !important;
    border: 2px solid #000 !important;
    border-radius: 50% !important;
    width: 12px !important;
    height: 12px !important;
}


.from-our-fans {}

.carousel-indicators button.active {
    background: #000 !important;
}


.sections-list ul {
    display: flex;
    text-align: center;
    margin: auto;
    justify-content: center;
}

.sections-list ul li {
    margin: 5px 15px;
    cursor: pointer;
    color: #808080;
    font-family: Montserrat;
    font-weight: 400;
    font-style: Regular;
    font-size: 18px;
    leading-trim: NONE;
    line-height: 100%;
    letter-spacing: 0.37px;
    /* font-variant: small-caps; */
}

.sections-list ul.collections-list li {
    font-size: 24px !important;
}

.sections-list ul li.active {
    color: #000;
    border-bottom: 1px solid #000;
}

/* Size Guide Modal Styles */
.size-guide-modal {
    display: none;
    /* Hidden by default */
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    overflow: auto;
    background: rgba(0, 0, 0, 0.4);
    transition: opacity 0.3s;
}

.size-guide-modal-content {
    background: #fff;
    margin: 5% auto;
    padding: 2rem;
    border-radius: 0.5rem;
    width: 90%;
    max-width: 650px;
    position: relative;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    animation: fadeIn 0.3s;
}

.size-guide-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    color: #aaa;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.2s;
}

.size-guide-close:hover {
    color: var(--main-color);
}

.size-guide-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1.5rem;
}

.size-guide-table th,
.size-guide-table td {
    border: 1px solid #dee2e6;
    padding: 0.75rem;
    text-align: center;
}

.size-guide-table th {
    background: #fafafa;
    color: #000;
    font-weight: 600;
}

.size-guide-table tr:nth-child(even) {
    background: #f8f9fa;
}

.size-guide-table-content ul {
    margin: 0;
}

.size-guide-table-content ul li {
    line-height: 30px;
}

.size-guide-modal {
    display: none;
    position: fixed;
    z-index: 1050;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.3);
    justify-content: center;
    align-items: center;
}

.size-guide-modal-content {
    background: #fff;
    margin: 40px auto;
    padding: 30px 30px 20px 30px;
    border-radius: 10px;
    position: relative;
    max-width: 650px;
    width: 100%;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.size-guide-close {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 2rem;
    color: #888;
    cursor: pointer;
}

.size-guide-modal label img {
    display: block;
    margin: 0 auto 5px auto;
}

.size-guide-modal label input[type="radio"] {
    margin-top: 5px;
}

.size-guide-modal {
    display: none;
    /* Hidden by default */
    position: fixed;
    z-index: 1050;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background: rgba(0, 0, 0, 0.4);
}

.size-guide-modal-content {
    background: #fff;
    margin: 5% auto;
    padding: 30px;
    border-radius: 10px;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.size-guide-close {
    cursor: pointer;
    font-size: 2rem;
    position: absolute;
    right: 20px;
    top: 10px;
}


.cart-item-card {
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.cart-product-img {
    width: 110px;
    height: 110px;
    object-fit: cover;
    border-radius: 12px;
}

.size-btn {
    margin-right: 4px;
    border-radius: 6px;
}

.size-btn.active,
.size-btn:focus {
    background: #222;
    color: #fff;
    border-color: #222;
}

.cart-delete-btn {
    margin-left: 12px;
}

.orders-wrapper {
    max-width: 900px;
    margin: 40px auto;
    font-family: 'Montserrat', 'Manrope', 'Rubik', sans-serif;
}

.orders-tabs {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 32px;
}

.orders-tab {
    padding: 8px 24px;
    border-radius: 6px;
    background: #fff;
    color: #222;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}

.orders-tab.active,
.orders-tab:hover {
    background: #111;
    color: #fff;
}

.orders-date {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 18px;
    margin-left: 8px;
}

.order-group {
    /* background: #f1f1f1; */
    border-radius: 10px;
    /* margin-bottom: 32px; */
    padding: 18px 24px 24px 24px;
}

.order-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #e5e5e5;
    border-radius: 8px;
    padding: 14px 18px;
    /* margin-bottom: 18px; */
}

.order-label {
    font-weight: 700;
    margin-right: 6px;
}

.order-id {
    font-weight: 600;
}

.order-meta {
    font-size: 0.98rem;
    color: #444;
    /* display: flex; */
    gap: 18px;
}

.order-toggle {
    background: none;
    border: none;
    font-size: 1.2rem;
    color: #222;
    cursor: pointer;
}

.order-items {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.order-item {
    display: flex;
    align-items: flex-start;
    background: #fff;
    border-radius: 8px;
    padding: 18px;
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.order-item-img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
    margin-right: 24px;
}

.order-item-info {
    flex: 1;
}

.order-item-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 6px;
}

.order-item-prices {
    margin-bottom: 6px;
}

.order-item-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: #222;
    margin-right: 10px;
}

.order-item-old-price {
    font-size: 1rem;
    color: #aaa;
    text-decoration: line-through;
}

.order-item-status {
    font-size: 0.98rem;
    color: #4caf50;
    font-weight: 500;
    margin-bottom: 2px;
}

.order-item-status.delivered {
    color: #4caf50;
}

.order-item-arrived {
    font-size: 0.95rem;
    color: #888;
    margin-bottom: 8px;
}

.order-item-actions {
    display: flex;
    gap: 18px;
}

.order-action {
    color: #222;
    text-decoration: none;
    font-size: 0.98rem;
    font-weight: 500;
    transition: color 0.2s;
}

.order-action:hover {
    color: #e53935;
}

.order-item-warning {
    color: #e53935;
    font-size: 1.3rem;
    position: absolute;
    right: 18px;
    top: 18px;
}

.orders-empty {
    text-align: center;
    color: #888;
    font-size: 1.1rem;
    margin-top: 48px;
}

@media (max-width: 700px) {
    .orders-wrapper {
        padding: 0 8px;
    }

    .order-items {
        gap: 12px;
    }

    .order-item {
        flex-direction: column;
        align-items: stretch;
    }

    .order-item-img {
        width: 100%;
        height: 180px;
        margin-bottom: 12px;
    }
}

.profile-container {
    display: flex;
    gap: 32px;
}

.profile-sidebar {
    min-width: 250px;
    background: #f7f7f7;
    border-radius: 8px;
    padding: 24px 0;
    min-height: 400px;
}

.profile-sidebar ul {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
}

.profile-sidebar li {
    margin-bottom: 16px;
}

.profile-sidebar a,
.profile-sidebar span {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #222;
    text-decoration: none;
    padding: 10px 24px;
    border-radius: 6px;
    transition: background 0.2s;
}

.profile-sidebar .active a {
    background: #eaeaea;
    font-weight: bold;
}

.ask-bot-btn {
    width: 90%;
    margin: 16px auto;
    display: block;
    background: #e60000;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 12px 0;
    font-size: 1rem;
    cursor: pointer;
}

.logout-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #222;
    text-decoration: none;
    padding: 10px 24px;
    border-radius: 6px;
    margin-top: 16px;
}

.profile-content {
    flex: 1;
    background: #fff;
    border-radius: 8px;
    padding: 32px;
    min-height: 400px;
}

@media (max-width: 1400px) {

    .search-box,
    .header-actions {
        display: none;
    }

    .header-content {
        justify-content: center;
    }

    .mobile-nav-item span {
        font-size: 10px !important;
    }

}

@media (min-width: 1400px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        /* the previous max-width was 1475px */
        /* comment : - ال margin  علي اليمين وعلي اليسار بشكل عام صغير جدا بالمقارنة ب figma */
        /* so we will make the max-width to 1375px */
        max-width: 1375px;
    }
}

.discount-price-tag {
    margin-right: 10px;
}

@media (min-width: 1250px) {
    .navbar-expand-lg .navbar-nav {
        display: flex !important;
        width: max-content;
    }
}

@media (max-width: 1200px) {
    nav .main-menu {
        gap: 10px;
    }
}

.shop-now-box-border-slider-2 {
    color: #fff;
    background: #f7f7f7;
    background-size: 100%;
    background-position: 0;
    min-height: 100px;
    padding: 10px;
    background-repeat: no-repeat;
}


@media (min-width: 955px) {}

@media (max-width: 954px) {

    .search-box,
    .header-actions {
        display: flex;
    }
}

@media (max-width: 500px) {

    .hero-right-box h6 {
        font-size: 1rem !important;
    }


    .carousel-item-0 .image-section {
        transform: translate(10px, -35%) !important;
    }

    .carousel-item-0 .text-section a {
        font-size: 15px;
    }

    .carousel-item-0 .text-section {
        top: 34% !important;
    }

    .hero-red-bar {
        font-size: 1.2rem !important;
    }

    .home-carousel-item-0-hero-content-p {
        font-size: 18px !important;
    }
}

@media (max-width: 400px) {
    .hero-content .container {
        padding: 0 5px !important;
    }

    .carousel-item-0 .hero-content p {
        font-size: 19px !important;
    }

    .hero-content h1 {
        font-size: 28px;
    }

    .hero-right-box h6 {
        font-size: 0.9rem !important;
    }

    .hero-right-box {
        padding: 1rem 0.5rem;
    }

    .hero-red-bar {
        font-size: 0.9rem !important;
    }
}

.main-tabs-filter .list-icon,
.sub-tabs-filter .list-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    margin: auto;
    margin-bottom: 5px;
    object-fit: cover;
}

.image-wrapper {
    aspect-ratio: 9 / 10;
    overflow: hidden;
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.colors-grid-container {
    width: 16px;
    height: 16px;
    display: flex;
    overflow: hidden;
    border-radius: 50%;
    margin-right: 4px;
    border: 1px solid #000 !important;
    transform: rotate(45deg);
    margin: 5px 1px !important;
}

.colors-grid-container span {
    width: 50%;
}

#collapseExampleSizes .form-check-label {
    transition: all 0.5s;
    border-radius: 5px;
    border: 1px solid #cbcbcb;
    color: #8e8e8e;
    font-family: Montserrat;
    font-weight: 400;
    font-style: Regular;
    font-size: 18px;
    leading-trim: NONE;
    line-height: 100%;
    letter-spacing: 0.37px;
    text-transform: capitalize;
}

#collapseExampleSizes .form-check-label:hover {
    color: #000;
    border-color: #000;
}

#collapseExampleSizes .form-check-input:checked+.form-check-label {
    color: #000;
    border-color: #000;

}

/* Variants section styling to match size section */
[id^="collapseExample"] .form-check-label {
    transition: all 0.5s;
    border-radius: 5px;
    border: 1px solid #cbcbcb;
    color: #8e8e8e;
    font-family: Montserrat;
    font-weight: 400;
    font-style: Regular;
    font-size: 18px;
    leading-trim: NONE;
    line-height: 100%;
    letter-spacing: 0.37px;
    text-transform: capitalize;
}

[id^="collapseExample"] .form-check-label:hover {
    color: #000;
    border-color: #000;
}

[id^="collapseExample"] .form-check-input:checked+.form-check-label {
    color: #000;
    border-color: #000;
}

/* Default look */
#collapseExampleColors .color-label {
    transition: all 0.5s;
    border-radius: 5px;
    border: 1px solid #cbcbcb;
    color: #8e8e8e;
    display: flex;
    font-family: Montserrat;
    font-weight: 400;
    font-style: Regular;
    font-size: 18px;
    leading-trim: NONE;
    line-height: 100%;
    letter-spacing: 0.37px;
    text-transform: capitalize;
}

/* Checked look using :has (only if browser supports it) */
#collapseExampleColors .color-label:has(input:checked) {
    color: #000;
    border-color: #000;
}

#collapseExampleColors-mobile .color-label:has(input:checked) {
    color: #000;
    border-color: #000;
}

.bg-gray {
    background: linear-gradient(0deg, #EEEEEE, #EEEEEE),
        linear-gradient(0deg, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.15));
}


.btn-danger {
    background: #DE0000;
}

.divider {
    height: 3px;
    width: 60px;
    background-color: #000;
    margin: 15px auto;
    border-radius: 3px;
}

.text-no-wrap {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

header .header-actions .bi-cart {
    margin-right: 5px;
}

#products-filter-form .card-title {
    font-family: Montserrat;
    font-weight: 600;
    font-style: SemiBold;
    font-size: 24px;
    leading-trim: NONE;
    line-height: 100%;
    letter-spacing: 0.37px;
}

#products-filter-form .filter-collapses h6 {
    font-size: 24px;
    font-weight: 400;
}

#products-filter-form .form-check .form-check-label {
    font-size: 20px;
}

#products-filter-form .card-title img {
    align-items: center;
}

#products-filter-form .card-title img {
    margin-right: 5px;
    width: 30px;
}

#products-filter-form .form-check-input:checked {
    background-color: rgb(2, 8, 17);
    border-color: rgb(2, 8, 17);
}

/* Dual Handle Price Range Slider - Custom Design */
.price-range-container {
    padding: 20px 0;
    position: relative;
}

.price-display {
    font-size: 13px;
    font-weight: 400;
    color: #555;
    margin-bottom: 20px;
    letter-spacing: 0.3px;
}

.range-slider-container {
    position: relative;
    height: 24px;
    display: flex;
    align-items: center;
    padding: 0 9px;
}

.range-slider {
    position: relative;
    width: 100%;
    height: 6px;
}

.range-track {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 6px;
    background-color: #e8e8e8;
    border-radius: 3px;
    transform: translateY(-50%);
}

.range-progress {
    position: absolute;
    top: 0;
    left: 0%;
    right: 0%;
    height: 100%;
    background-color: #2c2c2c;
    border-radius: 3px;
    transition: all 0.15s ease;
}

.range-input {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 24px;
    margin: 0;
    padding: 0;
    background: transparent;
    outline: none;
    transform: translateY(-50%);
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
    z-index: 2;
    pointer-events: auto;
    position: absolute !important;
}

.range-input::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    background-color: #2c2c2c;
    border: 3px solid #f5f5f5;
    border-radius: 3px;
    cursor: pointer;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    transition: all 0.1s ease;
    position: absolute;
}

.range-input::-webkit-slider-thumb:hover {
    transform: scale(1.08);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
}

.range-input::-webkit-slider-thumb:active {
    transform: scale(1.15);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
}

.range-input::-moz-range-thumb {
    width: 20px;
    height: 20px;
    background-color: #2c2c2c;
    border: 3px solid #f5f5f5;
    border-radius: 3px;
    cursor: pointer;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    transition: all 0.1s ease;
    position: absolute;
}

.range-input::-moz-range-thumb:hover {
    transform: scale(1.08);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
}

.range-input::-moz-range-thumb:active {
    transform: scale(1.15);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
}

.range-input::-moz-range-track {
    background: transparent;
    border: none;
    height: 6px;
}

.range-input::-ms-thumb {
    width: 20px;
    height: 20px;
    background-color: #2c2c2c;
    border: 3px solid #f5f5f5;
    border-radius: 3px;
    cursor: pointer;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.range-input::-ms-track {
    background: transparent;
    border: none;
    color: transparent;
    height: 6px;
}

.range-input::-ms-fill-lower,
.range-input::-ms-fill-upper {
    background: transparent;
}

/* Ensure proper z-index for both sliders */
.range-min {
    z-index: 2;
}

.range-max {
    z-index: 3;
}

/* Make sure both sliders are clickable */
.range-min,
.range-max {
    pointer-events: auto;
}

/* Ensure minimum slider is clickable even when max slider is above it */
.range-min {
    z-index: 2;
    position: relative;
}

.range-max {
    z-index: 3;
    position: relative;
}

/* Make the track area clickable for both sliders */
.range-slider {
    position: relative;
    z-index: 1;
}

/* Ensure slider thumbs are always clickable */
.range-input::-webkit-slider-thumb {
    z-index: 10;
    position: relative;
}

.range-input::-moz-range-thumb {
    z-index: 10;
    position: relative;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .price-range-container {
        padding: 16px 0;
    }

    .range-slider-container {
        padding: 0 11px;
        height: 28px;
    }

    .range-slider {
        height: 8px;
    }

    .range-track {
        height: 8px;
        border-radius: 4px;
    }

    .range-progress {
        border-radius: 4px;
    }

    .range-input {
        height: 28px;
    }

    .range-input::-webkit-slider-thumb {
        width: 24px;
        height: 24px;
        border: 4px solid #f5f5f5;
        border-radius: 4px;
    }

    .range-input::-moz-range-thumb {
        width: 24px;
        height: 24px;
        border: 4px solid #f5f5f5;
        border-radius: 4px;
    }

    .range-input::-ms-thumb {
        width: 24px;
        height: 24px;
        border: 4px solid #f5f5f5;
        border-radius: 4px;
    }

    .range-input::-moz-range-track {
        height: 8px;
    }

    .range-input::-ms-track {
        height: 8px;
    }

    .price-display {
        font-size: 12px;
        margin-bottom: 16px;
    }
}

/* Profile Address Form - Unique Classes */
.profile-address-create-form {
    background: #f2f2f2;
    padding: 32px;
    border-radius: 8px;
    margin: 0 auto;
}

.profile-address-form-field-group {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.profile-address-form-field {
    display: flex;
    flex-direction: column;
}

.profile-address-form-label {
    font-size: 15px;
    color: #888;
    margin-bottom: 2px;
}

.profile-address-form-input {
    width: 100%;
    padding: 10px;
    border-radius: 6px;
    border: none;
    background: #fff;
    font-size: 17px;
}

.profile-address-form-select {
    width: 100%;
    padding: 10px;
    border-radius: 6px;
    border: none;
    background: #fff;
    font-size: 17px;
}

.profile-address-country-code-select {
    padding: 10px;
    border-radius: 6px;
    border: none;
    background: #fff;
    width: 80px;
    font-size: 17px;
}

.profile-address-phone-input-group {
    display: flex;
    gap: 8px;
    align-items: center;
}

.profile-address-phone-input {
    flex: 1;
    padding: 10px;
    border-radius: 6px;
    border: none;
    background: #fff;
    font-size: 17px;
}

.profile-address-error-message {
    display: none;
    color: #c33;
    font-size: 14px;
    margin-top: 4px;
}

.profile-address-default-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #f2f2f2;
    padding: 10px 0 0 0;
}

.profile-address-default-text {
    font-size: 20px;
    font-weight: 400;
}

.profile-address-default-checkbox {
    width: 22px;
    height: 22px;
}

.profile-address-form-actions {
    display: flex;
    gap: 16px;
    margin-top: 18px;
}

.profile-address-btn-cancel {
    flex: 1;
    background: #6c757d;
    color: #fff;
    padding: 14px 0;
    border-radius: 6px;
    border: none;
    font-size: 20px;
    font-weight: 400;
    text-decoration: none;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.profile-address-btn-submit {
    flex: 2;
    background: #000;
    color: #fff;
    padding: 14px 0;
    border-radius: 6px;
    border: none;
    font-size: 20px;
    font-weight: 400;
    cursor: pointer;
}

/* Responsive adjustments for profile address form */
@media (max-width: 767px) {
    .profile-address-create-form {
        padding: 20px;
    }

    .profile-address-form-field-group {
        gap: 15px;
    }

    .profile-address-phone-input-group {
        flex-direction: column;
        gap: 10px;
    }

    .profile-address-country-code-select {
        width: 100%;
    }

    .profile-address-form-actions {
        flex-direction: column;
        gap: 10px;
    }

    .profile-address-btn-cancel,
    .profile-address-btn-submit {
        flex: 1;
    }
}

/* Home Page Font Size Classes */
.home-hero-content-h1 {
    font-size: 45px;
}

.home-carousel-item-0-hero-content-p {
    font-size: 24px;
    margin-top: 18px;
    margin-bottom: 32px !important;
}

.home-hero-right-box-h2 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
}

.home-hero-right-box-h6 {
    font-size: 1.7rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.home-hero-right-box-subtext {
    font-size: 1.2rem;
    text-align: left;
    margin-top: 1.5rem;
    font-weight: 700;
    line-height: 1.3;
}

.home-hero-red-bar {
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
    border-radius: 5px;
    letter-spacing: 2px;
}

.home-sale-banner-h2 {
    font-family: Montserrat;
    font-weight: 500;
    font-style: Medium;
    font-size: 45px;
    line-height: 100%;
    letter-spacing: 1.37px;
    text-align: center;
    text-transform: capitalize;
}

.home-sale-banner-h4 {
    font-family: Montserrat;
    font-weight: 400;
    font-style: Regular;
    font-size: 40px;
    line-height: 100%;
    letter-spacing: 1.37px;
    text-align: center;
    text-transform: capitalize;
}

.home-countdown-hours {
    font-family: Montserrat;
    font-weight: 400;
    font-style: Regular;
    font-size: 40px;
    line-height: 100%;
    letter-spacing: 1.4px;
    font-variant: small-caps;
}

.home-carousel-item-0-text-section-h1 {
    font-family: Montserrat;
    font-weight: bold !important;
    font-style: SemiBold;
    font-size: 45px;
    line-height: 100%;
    letter-spacing: 0.37px;
    font-variant: small-caps;
}

.home-trends-categories-card-h5 {
    font-family: Montserrat;
    font-weight: 400;
    font-style: Regular;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 0.37px;
    text-align: center;
    text-transform: capitalize;
}

.home-card-title-product-title {
    font-size: 18px;
}

.home-sections-list-li {
    font-family: Montserrat;
    font-weight: 400;
    font-style: Regular;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0.37px;
}

/* .home-section-title {
    font-size: 24px;
} */

.flash-sale .home-section-title {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
}


/* Products Index Page Font Size Classes */
.products-display-6-fw-bold-mb-2 {
    font-family: Montserrat;
    font-weight: 500;
    font-style: Medium;
    font-size: 45px;
    line-height: 100%;
    letter-spacing: 0.37px;
    text-align: center;
    text-transform: capitalize;
}

.products-lead-mb-1-text-bold-600 {
    font-family: Montserrat;
    font-weight: 400;
    font-style: Regular;
    font-size: 24px;
    line-height: 100%;
    letter-spacing: 0.37px;
    text-align: center;
    text-transform: capitalize;
}

.sale-banner .home-sale-banner-h4 {
    margin-top: 3rem !important;
}

/* Products Show Page Font Size Classes */
.products-show-h3-mb-2 {
    font-family: Montserrat;
    font-weight: 600;
    margin-top: 10px;
    font-style: SemiBold;
    font-size: 24px;
    line-height: 100%;
    letter-spacing: 0.37px;
    font-variant: small-caps;
}

.carousel-item-1 .content-section {
    position: absolute;
    right: 0;
    top: 0;
    height: inherit;
}

.products-show-text-decoration-underline {
    font-size: 1.1em;
}

.products-show-text-danger-fw-bold {
    font-size: 1em;
}

.products-show-btn-dark-fw-bold {
    font-size: 1em;
}

.products-show-tag-list-name {
    font-size: 18px;
}

.carousel-item-1 .hero-content {
    height: 90vh;
}

.single-product-container {
    margin-top: 10px;
}


/* Responsive Font Sizes */
@media (max-width: 768px) {
    .home-hero-right-box-h2 {
        font-size: 2rem;
    }

    .home-hero-red-bar {
        font-size: 2.5rem;
    }

    .home-display-4 {
        font-size: 2rem;
    }
}

.sale-banner .home-sale-banner-h2 {
    padding: 1.5rem !important;
    margin-bottom: 1.5rem !important;
}

.product-colors-container .btn-group {
    margin-top: .5rem;
}

.mobile-only-product-gallery-by-color-main-container {
    display: none;
}


.floating-action-buttons {
    display: none;
}


.collection-page-container {
    padding-top: 1rem !important;
    padding-bottom: 3rem !important;
}

.sub-categories-list {
    margin-top: 1.5rem !important;
    display: flex;
}

.search-filter-bar {
    display: none;
}


/* Show mobile filter button only on small screens */
@media (max-width: 767px) {
    .mobile-filter-toggle {
        display: inline-block !important;
    }

    .search-filter-bar {
        padding: 8px 12px;
    }

    .filter-controls {
        gap: 12px;
        display: flex !important;
        justify-content: end;
        width: 100%;
    }

    .filter-controls span {
        font-size: 13px;
    }

    .filter-controls i {
        font-size: 14px;
    }

    .sort-dropdown {
        min-width: 120px;
        right: -10px;
    }
}

/* Debug styles for testing */
@media (min-width: 1200px) {
    .shop-now-box-border-slider-2 {
        width: 50% !important;
        min-height: 120px !important;
    }
}

@media (max-width: 1200px) {
    .shop-now-box-border-slider-2 {
        width: 70% !important;
        min-height: 120px !important;
    }
}

/* Debug styles for testing */
@media (max-width: 1000px) {
    .shop-now-box-border-slider-2 {
        width: 80% !important;
    }
}

/* Debug styles for testing */
@media (max-width: 1200px) {
    /* .shop-now-box-border-slider-2 {
        width: 50% !important;
    } */

    .mobile-filter-toggle {
        display: inline-block !important;
    }
}

.carousel-item-2 .hero-content .cool-offers-box,
.only-image-carousel-item .hero-content .cool-offers-box {
    /* border: 3px solid #fff; */
    border-radius: 10px;
    color: #fff;
    padding: 50px;
    margin-bottom: 20px;
    /* background: rgba(255, 255, 255, 0.05); */
    min-height: 220px;
    display: flex;
    align-items: center;
}

.only-image-carousel-item .hero-border-image {
    padding: 0 !important;
    border-radius: 0 !important;
}

.carousel-item-2 .hero-content .cool-offers-box h3,
.only-image-carousel-item .hero-content .cool-offers-box h3 {
    border-radius: 29px;
    border: 2px solid #fff;
    width: fit-content;
    padding: 5px 20px;
}

.cool-offers-box {
    position: relative;
}

.shop-now-content {
    z-index: 1;
}

.cool-offers-box img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: fill;
    z-index: 0;
}

.shop-now-arrow {
    transform: scaleX(-1);
}

.display-current-color-name {
    display: none;
}

.mobile-nav-item img {
    margin-bottom: 5px;
}

.collection-name {
    font-size: 16px;
    font-weight: 500;
}

.shop-now-box-border-slider-2 img {
    min-height: 150px;
}

.header-carousel {
    height: 100vh !important;
    overflow: hidden !important;
}

@media (min-width: 600px) {
    .some-categories .card-title {
        margin-top: 1.2rem !important;
        margin-bottom: 3.5rem !important;
    }
}


@media (max-width: 600px) {
    .home-hero-right-box-h2-span {
        display: block;
        font-size: 40px;
    }

    .display-current-color-name {
        display: block !important;
        margin-top: 5px;
    }

    .product-colors-gallery-image-container {
        margin: 3px !important;
    }

    .product-colors-gallery-image-container .color-thumbnail {
        height: 70px;
    }

    .carousel-item-2 .hero-content .cool-offers-box h4,
    .only-image-carousel-item .hero-content .cool-offers-box h4 {
        font-size: 16px;
    }

    .carousel-item-2 .hero-content .cool-offers-box h3,
    .only-image-carousel-item .hero-content .cool-offers-box h3 {
        font-size: 15px;
        padding: 5px 14px;
    }

    .carousel-item-2 .hero-content .cool-offers-box,
    .only-image-carousel-item .hero-content .cool-offers-box {
        padding: 30px !important;
    }

    .shop-now-box-border-slider-2 {
        min-height: 160px !important;
        /* margin-bottom: 20px; */
        background-size: 100% 100% !important;
        display: flex;
        align-items: inherit;
        width: 100% !important;
    }

    .shop-now-content {
        /* height: 60%; */
    }

    .carousel-indicators [data-bs-target] {
        background-color: #fff !important;
    }

    .carousel-indicators button {
        width: 5px !important;
        height: 5px !important;
    }

    .carousel-item-0 .hero-model-img {
        height: 590px !important;
        object-fit: cover !important;
    }

    .carousel-item-0 .image-section {
        top: 43% !important;
    }

    .carousel-item-0 .hero-border {
        top: 2px !important;
        height: 84% !important;
    }

    .bishyaka-footer .footer-download a img {
        /* height: 70px; */
    }

    .bishyaka-footer .footer-social {
        margin-top: 0 !important;
    }

    .collection-page-container {
        padding-top: 0.5rem !important;
    }

    .filter-bar-container {
        display: none;
    }

    .page-content-container,
    .page-content-container>div,
    .page-content-container>div .products-container-data {
        padding: 0 !important;
    }

    .filter-bar-box {
        margin: 0 !important;
    }

    /* Search and Filter Bar Styles */
    .search-filter-bar {
        display: flex !important;
        background: white;
        padding: 12px 16px;
        border-bottom: 1px solid #eee;
        width: 95%;
        margin: auto;
        margin-top: 10px;
        padding-top: 10px !important;
        margin-bottom: 0 !important;
        position: relative;
        z-index: 999;
    }

    .search-section {
        font-size: 14px;
        color: #666;
        flex: 1;
        max-width: 200px;
    }

    .search-section i {
        font-size: 16px;
        color: #333;
    }

    .search-input {
        border: none;
        outline: none;
        background: transparent;
        font-size: 14px;
        color: #666;
        width: 100%;
        padding: 4px 8px;
        transition: color 0.2s ease;
    }

    .search-input:focus {
        color: #333;
    }

    .search-input::placeholder {
        color: #999;
        transition: color 0.2s ease;
    }

    .search-input:focus::placeholder {
        color: #ccc;
    }

    .filter-controls {
        font-size: 14px;
        gap: 16px;
    }

    .filter-controls i {
        font-size: 16px;
        color: #333;
    }

    .filter-controls span {
        color: #666;
        font-size: 14px;
        font-weight: 400;
    }

    .search-section span {
        color: #666;
        font-size: 14px;
        font-weight: 400;
    }

    .filter-section {
        position: relative;
        display: flex;
        align-items: center;
        gap: 8px;
        cursor: pointer;
        transition: opacity 0.2s ease;
    }

    .filter-section:hover {
        opacity: 0.7;
    }

    .sort-section {
        display: flex;
        align-items: center;
        gap: 4px;
        cursor: pointer;
        transition: opacity 0.2s ease;
        user-select: none;
        position: relative;
        z-index: 9999;
    }

    .sort-section:hover {
        opacity: 0.7;
    }

    .sort-section:active {
        opacity: 0.5;
    }

    .sort-dropdown {
        position: absolute;
        top: 100%;
        right: 0;
        background: white;
        border: 1px solid #e0e0e0;
        border-radius: 8px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        min-width: 150px;
        z-index: 9999;
        display: none;
        margin-top: 8px;
        /* opacity: 0; */
        transform: translateY(-10px);
        transition: all 0.3s ease;
    }

    .sort-dropdown.show {
        display: block;
        /* opacity: 1; */
        transform: translateY(0);
    }

    .sort-option {
        padding: 12px 16px;
        font-size: 14px;
        color: #333;
        cursor: pointer;
        border-bottom: 1px solid #f0f0f0;
        transition: all 0.2s ease;
    }

    .sort-option:last-child {
        border-bottom: none;
    }

    .sort-option:hover {
        background-color: #f8f9fa;
    }

    .sort-option.active {
        background-color: #000;
        color: white;
    }

    /* Mobile Filter Toggle Button Styles */
    .mobile-filter-toggle {
        display: none;
        /* Hidden by default */
        background: none;
        border: none;
        padding: 0;
        margin: 0;
    }

    .mobile-filter-toggle i {
        font-size: 16px;
        color: #333;
    }

    .mobile-filter-toggle:hover i {
        color: #666;
    }

    /* Mobile Filter Modal Styles */
    #mobileFilterModal .modal-header {
        border-bottom: 1px solid #eee;
        padding: 16px 20px;
    }

    #mobileFilterModal .modal-title {
        font-weight: 600;
        font-size: 18px;
        margin: 0;
    }

    #mobileFilterModal .btn-close {
        margin: 0;
        padding: 0;
    }

    #mobileFilterModal #clear-all-mobile {
        color: #666;
        text-decoration: none;
        font-size: 14px;
        padding: 0;
        margin: 0;
    }

    #mobileFilterModal .modal-body {
        padding: 20px;
    }

    #mobileFilterModal .filter-collapses-mobile {
        color: #000;
        display: flex;
        justify-content: space-between;
        align-items: center;
        text-decoration: none;
        cursor: pointer;
        padding: 12px 0;
        border: none;
        background: none;
        width: 100%;
        text-align: left;
        border-bottom: 1px solid #eee;
    }

    #mobileFilterModal .filter-collapses-mobile:hover {
        text-decoration: none;
        color: #000;
    }

    #mobileFilterModal .filter-collapses-mobile h6 {
        font-size: 16px;
        font-weight: 500;
        margin: 0;
    }

    #mobileFilterModal .filter-collapses-mobile i {
        transition: all 0.3s ease;
        transform: rotate(0deg);
        display: inline-block;
        font-size: 14px;
    }

    #mobileFilterModal .filter-collapses-mobile[aria-expanded="true"] i {
        transform: rotate(90deg);
    }

    #mobileFilterModal .collapse {
        transition: all 0.3s ease;
        overflow: hidden;
        display: none;
        max-height: 0;
    }

    #mobileFilterModal .collapse.show {
        display: block;
        max-height: max-content;
    }

    #mobileFilterModal .modal-footer {
        border-top: 1px solid #eee;
        padding: 16px 20px;
    }

    #mobileFilterModal #apply-filters-mobile {
        background: #000;
        border: none;
        border-radius: 8px;
        padding: 12px;
        font-weight: 600;
        font-size: 16px;
    }

    #mobileFilterModal #apply-filters-mobile:hover {
        background: #333;
    }

    /* Hide desktop filter on mobile */
    @media (max-width: 767px) {
        .filter-bar-container {
            display: none !important;
        }
    }

    /* Mobile Filter Modal - Clean Design */
    @media (max-width: 600px) {
        #mobileFilterModal .modal-dialog {
            margin: 0;
            max-width: 100%;
            height: 100vh;
        }

        #mobileFilterModal .modal-content {
            height: 100vh;
            border-radius: 0;
            border: none;
            background: white;
        }

        #mobileFilterModal .modal-header {
            background: white;
            border-bottom: none;
            padding: 20px 20px 10px 20px;
            position: sticky;
            top: 0;
            z-index: 10;
        }

        #mobileFilterModal .modal-header .d-flex {
            width: 100%;
            justify-content: flex-end;
            align-items: center;
        }

        #mobileFilterModal .modal-title {
            font-size: 18px;
            font-weight: 700;
            color: #333;
            margin: 0;
        }

        #mobileFilterModal .btn-close {
            background: none;
            border: none;
            font-size: 20px;
            padding: 0;
            margin: 0;
            width: 20px;
            height: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #666;
            margin-left: 16px;
        }

        #mobileFilterModal #clear-all-mobile {
            color: #666;
            font-size: 14px;
            font-weight: 400;
            text-decoration: none;
            padding: 0;
            margin: 0;
        }

        #mobileFilterModal .modal-body {
            padding: 0 20px;
            overflow-y: auto;
            flex: 1;
        }

        #mobileFilterModal .filter-sidebar-mobile {
            padding: 0;
        }

        #mobileFilterModal .card-body {
            padding: 0;
        }

        /* Sort By Section */
        #mobileFilterModal .mb-4 {
            margin-bottom: 0 !important;
            padding: 20px 0;
            border-bottom: none;
        }

        #mobileFilterModal .mb-4 h6 {
            font-size: 16px;
            font-weight: 500;
            margin-bottom: 16px;
            color: #333;
        }

        #mobileFilterModal .form-check {
            margin-bottom: 12px;
        }

        #mobileFilterModal .form-check-input {
            margin-top: 0.2em;
        }

        #mobileFilterModal .form-check-label {
            font-size: 15px;
            color: #333;
            padding-left: 8px;
            font-weight: 400;
        }

        /* Filter Sections */
        #mobileFilterModal .py-2 {
            padding: 0 !important;
            border-bottom: 1px solid #f0f0f0;
        }

        #mobileFilterModal .filter-collapses-mobile {
            padding: 20px 0;
            border-bottom: none;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
        }

        #mobileFilterModal .filter-collapses-mobile h6 {
            font-size: 16px;
            font-weight: 500;
            color: #333;
            margin: 0;
        }

        #mobileFilterModal .filter-collapses-mobile i {
            font-size: 14px;
            color: #666;
            transition: transform 0.3s ease;
        }

        #mobileFilterModal .filter-collapses-mobile[aria-expanded="true"] i {
            transform: rotate(90deg);
        }

        #mobileFilterModal .collapse {
            padding: 0 0 20px 0;
        }

        /* Size Buttons */
        #mobileFilterModal .form-check-inline {
            margin-right: 8px;
            margin-bottom: 8px;
        }

        #mobileFilterModal .btn-sm {
            padding: 8px 16px;
            font-size: 14px;
            border: 1px solid #e0e0e0;
            background: white;
            color: #333;
            border-radius: 5px;
            font-weight: 400;
        }

        #mobileFilterModal .btn-sm:hover,
        #mobileFilterModal .btn-sm.active {
            border-color: rgb(2, 8, 17);
        }

        /* Color Labels */
        #mobileFilterModal .color-label {
            padding: 8px 12px;
            font-size: 13px;
            border: 1px solid #e0e0e0;
            background: white;
            color: #333;
            border-radius: 5px;
            margin-right: 8px;
            margin-bottom: 8px;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            cursor: pointer;
        }

        #mobileFilterModal .color-label span {
            width: 16px;
            height: 16px;
            border-radius: 50%;
            border: 1px solid #e0e0e0;
            flex-shrink: 0;
        }

        #mobileFilterModal .color-label:hover {
            border-color: #ccc;
        }

        #mobileFilterModal .color-label.active {
            background: #000;
            color: white;
            border-color: #000;
        }

        #mobileFilterModal .color-label.active span {
            border-color: white;
        }

        /* Price Range */
        #mobileFilterModal .price-range-container {
            padding: 16px 0;
        }

        #mobileFilterModal .price-display {
            margin-bottom: 16px;
        }

        #mobileFilterModal .price-display span {
            font-size: 14px;
            color: #666;
        }

        #mobileFilterModal .range-slider-container {
            margin: 16px 0;
        }

        /* Modal Footer */
        #mobileFilterModal .modal-footer {
            background: white;
            border-top: 1px solid #f0f0f0;
            padding: 20px;
            position: sticky;
            bottom: 0;
            z-index: 10;
        }

        #mobileFilterModal #apply-filters-mobile {
            width: 100%;
            background: #000;
            color: white;
            border: none;
            border-radius: 8px;
            padding: 16px;
            font-size: 16px;
            font-weight: 600;
        }

        #mobileFilterModal #apply-filters-mobile:hover {
            background: #333;
        }

        #mobileFilterModal #results-count {
            font-size: 16px;
            font-weight: 600;
        }
    }

    .sections-list ul {
        width: 100vh;
        overflow-y: hidden;
        /* overflow-x: scroll; */
    }

    .sections-list ul li {
        font-size: 13px !important;
        margin: 2px 9px !important;
    }

    .sections-list ul.collections-list li {
        font-size: 12px !important;
    }

    .sub-categories-list {
        margin-top: 0 !important;
        display: flex !important;
        width: 90vh;
        overflow-y: scroll;
    }

    #collapseProductDetails.collapse.show,
    #collapseReturnsAndRefunds.collapse.show {
        position: fixed;
        top: 0;
        width: 100vh;
        left: 0;
        height: 100vh;
        background: #4d4d4d99;
        z-index: 9999;
    }

    #collapseProductDetails.collapse.show>div {
        position: fixed;
        bottom: 0;
        width: 100%;
        z-index: 9999;
        background: #fff;
        left: 0;
        padding: 10px;
        max-height: 70vh;
        overflow-y: auto;
    }

    #collapseReturnsAndRefunds.collapse.show>div {
        position: fixed;
        bottom: 0;
        width: 100%;
        z-index: 9999;
        background: #fff;
        left: 0;
        padding: 10px;
        max-height: 70vh;
        overflow-y: auto;
    }

    .collapse-close-btn {
        z-index: 10000;
        width: 100%;
        display: flex;
        justify-content: right;
    }

    .collapse-close-btn .btn-close {
        background: none;
        border: none;
        font-size: 1.5rem;
        color: #000;
        opacity: 0.5;
        cursor: pointer;
        padding: 0;
        width: 24px;
        height: 24px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .collapse-close-btn .btn-close:hover {
        opacity: 1;
    }

    .collapse-close-btn .btn-close::before {
        content: "×";
        font-size: 24px;
        line-height: 1;
    }

    /* Floating Action Buttons */
    .floating-action-buttons {
        position: fixed;
        top: 80px;
        right: 32px;
        z-index: 1000;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .floating-btn {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        border: none;
        background: #fff;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s ease;
        position: relative;
    }

    .floating-btn:hover {
        transform: scale(1.1);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }

    .floating-btn i {
        font-size: 18px;
        color: #333;
    }

    .floating-btn-cart i {
        color: #000;
    }

    .floating-btn-heart i {
        margin-top: 5px;
    }

    .floating-btn-heart {
        background: #fff;
    }

    .floating-btn-heart.active,
    .floating-btn-heart[data-is-favourite="true"] {
        background: #dc3545;
    }

    .floating-btn-heart.active i,
    .floating-btn-heart[data-is-favourite="true"] i {
        color: #fff;
    }

    .cart-badge {
        position: absolute;
        top: -5px;
        right: -5px;
        background: #dc3545;
        color: #fff;
        border-radius: 50%;
        width: 20px;
        height: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 12px;
        font-weight: bold;
    }

    .single-product-container {
        margin-top: 0 !important;
    }

    .product-gallery-container {
        display: flex !important;
        flex-direction: column-reverse !important;
    }

    .product-gallery-container .product-colors-gallery-images {
        /* justify-content: space-between; */
        display: flex !important;
        margin-top: 5px;
        padding: 0 25px;
        overflow-x: scroll;
    }

    .product-gallery-by-color-main-container {
        display: none !important;
    }

    .mobile-only-product-gallery-by-color-main-container {
        display: block !important;
    }


    .product-gallery-by-color-container {
        display: block !important;
    }

    .product-gallery-container .product-gallery-image-container {
        padding: 0 !important;
    }

    .product-colors-container .btn-group {
        margin-top: 0rem !important;
    }

    .product-colors-container {
        align-items: center;
        display: none;
    }

    .product-colors-container .color-label {
        margin-right: 11px;
    }

    .product-colors-container .color-name {
        display: none;
    }

    .sale-banner .home-sale-banner-h2 {
        padding: 0rem !important;
        padding-top: 1rem !important;
        margin-top: 0rem !important;
    }

    .sale-banner .home-sale-banner-h4 {
        margin-top: 0rem !important;
    }

    .sale-banner {
        min-height: 160px !important;
    }

    .flash-sale {
        padding-bottom: 0rem !important;
    }

    .flash-sale .home-section-title {
        padding-top: 0.5rem !important;
        padding-bottom: 0.5rem !important;
    }

    .triangle-bg {
        border-right: 426px solid transparent !important;
        border-left: 0 solid transparent !important;
        border-bottom: 161px solid #dc3545 !important;
    }

    .container,
    .container-sm {
        max-width: 690px;
    }

    .some-categories .card-title {
        font-size: 12px !important;
        padding-top: 1rem !important;
    }

    .some-categories {
        padding: 2.5rem 0 1.2rem 0;
    }

    .trends-products,
    .from-our-fans {
        padding: 0.8rem 0;
    }

    .showFeatured {
        padding-top: 10px !important;
    }

    .home-trends-categories-card-h5 {
        font-size: 12px !important;
    }

    .home-countdown-hours {
        font-size: 20px !important;
    }

    .sale-banner {
        padding-bottom: 1rem !important;
    }

    .trends-categories {
        padding-top: 1rem !important;
        padding-bottom: 1rem !important;
    }

    .flash-sale {
        padding-top: 0rem !important;
        padding-bottom: 1rem !important;
    }

    .carousel-inner {
        min-height: auto !important;
        height: 100% !important;
    }

    .carousel-inner,
    .header-carousel {
        height: 84vh !important;
        overflow: hidden !important;
    }

    .carousel-item-2 .hero-content {
        background-position: top !important;
    }

    .carousel-item-2 .hero-content {
        height: 100% !important;
    }

    .carousel-item-2 .hero-border-image {
        height: 100%;
        overflow: hidden;
    }

    .carousel-item {
        height: 100% !important;
        overflow: hidden;
    }

    .carousel-item {
        min-height: auto !important;
    }

    .carousel-item-0 .hero-content {
        margin: auto !important;
    }

    .carousel-item-1 .hero-border-image .text-section {
        padding-top: 0 !important;
    }

    .carousel-item-1 .content-section {
        display: flex !important;
        justify-content: space-between !important;
        padding-top: 20px;
    }

    .carousel-item-1 .content-section,
    .carousel-item-1 .hero-content {
        height: 100% !important;
    }

    .home-sale-banner-h2 {
        font-size: 15px !important;
    }

    .home-sale-banner-h4 {
        font-size: 13px;
    }

    .home-card-title-product-title {
        font-size: 13px !important;
    }

    .product-price {
        font-size: 13px !important;
    }

    .original-price {
        font-size: 12px !important;
    }

    .color-options {
        margin-bottom: 0 !important;
    }

    .new-trind-swiper .card-img-top {
        height: 200px !important;
    }
}


@media (max-width: 500px) {
    .new-trind-swiper .card-img-top {
        height: 170px !important;
    }

    .box-dev-discover-a-new-look {
        z-index: 1;
        position: absolute;
        bottom: 24px;
        color: #fff;
        font-weight: bold !important;
        padding: 0 20px 0 30px;
    }

    .home-hero-right-box-subtext {
        font-size: 1.2rem;
        margin-top: .5rem;
    }

    .shop-now-box-border-slider-2 .shop-now-content>div {
        margin-right: 40px;
        font-size: .9em;
    }

    .shop-now-box-border-slider-2 .shop-now-content .shop-now-action {
        font-size: .7em;
    }

    /* .some-categories .card-title */
    .flash-sale .original-price {
        display: none !important;
    }

    .flash-sale .footer-section .card-title .current-price {
        font-size: 14px !important;
    }

    /* .home-hero-right-box-h2 {
        font-size: 3.2rem !important;
        } */

    .home-hero-right-box-h6 {
        font-size: 1rem !important;
    }

    .home-hero-red-bar {
        font-size: 1.2rem !important;
    }

}

@media (max-width: 400px) {
    #productTabs {
        width: max-content;
        font-size: small;
    }

    .home-carousel-item-0-text-section-a {
        font-size: 15px;
    }

    .home-hero-content-h1 {
        font-size: 28px;
    }

    .home-hero-right-box-h2 {
        font-size: 0.8rem !important;
    }

    .home-hero-right-box-h6 {
        font-size: 0.9rem !important;
    }

    .home-hero-red-bar {
        font-size: 0.9rem !important;
    }

    .section-title {
        font-size: 20px !important;
    }
}


button#notificationsDropdown {
    font-size: 1.5em;
    padding: 0 !important;
}


.navbar-brand {
    margin: 0;
}

.flash-sale .footer-section .card-title {
    margin-top: 13px;
}

.flash-sale .footer-section .card-title .original-price {
    font-family: Montserrat;
    font-weight: 400;
    font-style: Regular;
    font-size: 14px;
    leading-trim: NONE;
    line-height: 100%;
    letter-spacing: 0.37px;
    text-align: center;
    text-transform: capitalize;
    text-decoration: line-through;
}

.flash-sale .footer-section .card-title .current-price {
    font-family: Montserrat;
    font-weight: 400;
    font-style: Regular;
    font-size: 18px;
    leading-trim: NONE;
    line-height: 100%;
    letter-spacing: 0.37px;
    text-align: center;
    text-transform: capitalize;
    text-decoration: none;
}

.flash-sale .swiper-pagination-bullet {
    width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 12px));
    height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 12px));
}

.flash-sale .swiper-horizontal>.swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
    bottom: var(--swiper-pagination-bottom, -5px);
}

.flash-sale .image-wrapper {
    border-radius: 8px;
}

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

#products-filter-form #reset-filters-btn {
    font-family: Montserrat;
    font-weight: 600;
    font-style: SemiBold;
    font-size: 18px;
    leading-trim: NONE;
    line-height: 100%;
    letter-spacing: 0.37px;
    text-align: right;
    font-variant: small-caps;
}

@media (max-width: 768px) {
    .hero-right-box h2 {
        font-size: 1.2rem;
    }
}

.more-colors-hidden {
    color: #000;
    font-size: 12px !important;
    padding: 0 5px;
}

.toastify {
    max-width: calc(70% + 20px) !important;
}


.sub-categories-list {
    overflow-x: scroll !important;
    margin-top: 10px !important;
}

/* .heroCarousel .carousel-indicators {
    bottom: 40px !important;
} */

.footer-newsletter-content .custom-checkbox .checkmark {
    left: 0;
}

.footer-newsletter-content .custom-checkbox {
    padding-left: 30px;
}
