@font-face {
    font-family: 'Kumbh Sans';
    src: url('fonts/kumbhsans-regular.eot');
    src: url('fonts/kumbhsans-regular.eot?#iefix') format('embedded-opentype'),
        url('fonts/kumbhsans-regular.woff2') format('woff2'),
        url('fonts/kumbhsans-regular.woff') format('woff'),
        url('fonts/kumbhsans-regular.ttf') format('truetype'),
        url('fonts/kumbhsans-regular.svg#KumbhSans-Regular') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

body {
    background: var(--body-bg);
    -ms-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    font-family: 'Kumbh Sans', system-ui, sans-serif;
    color: var(--main-color);
}

/* Reset */
a {
    color: var(--main-color);
}

a:hover {
    text-decoration: none;
    color: var(--main-color2);
}

.hide-scrollbar {
    scrollbar-width: none;
    -ms-overflow-style: none;
    overflow-y: hidden;
}

/* Overlay */
.overlay {
    display: flex;
    position: fixed;
    z-index: 9998;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    background: rgba(255, 255, 255, .4);
    justify-content: center;
    align-items: center;
}

.overlay .spin {
    color: var(--main-color);
    width: 3rem;
    height: 3rem;
    font-size: 20px;
}

/* Background Blur Overlay */
.overlay-blur {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(var(--bg-overlay, 0, 0, 0), var(--bg-overlay-opacity, 0.4));
    -webkit-backdrop-filter: blur(var(--bg-overlay-blur, 5px));
    backdrop-filter: blur(var(--bg-overlay-blur, 5px));
    z-index: 99;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
}

.overlay-blur.active {
    opacity: 1;
    pointer-events: auto;
}

/* custom */
.header-top-left {
    display: flex;
}

.footer-info-area {
    margin: 40px 0 20px 0;
}

.footer-info-area .row {
    gap: 20px;
}

.footer-info-area .item {
    display: flex;
    flex-direction: column;
    gap: 5px;
    align-items: center;
    text-align: center;
    border-radius: 10px;
    flex: 1;
}

.footer-info-area .item .icon i {
    font-size: 32px;
}

.footer-info-area .item .info {
    display: grid;
    gap: 8px;
}

.footer-info-area .item .info .title {
    color: #181818;
    font-weight: 600;
    font-size: 16px;
    line-height: 20px;
}

.footer-info-area .item .info .desc {
    color: #4d4e4f;
    font-size: 14px;
}


/* Special Fields Modern Design */
.special-field-box {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 12px;
    margin: 20px 0;
}

.special-field-box>ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 20px;
}

.special-field-box .field {
    background: #ffffff;
    border-radius: 10px;
    padding: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid #e8e8e8;
}

.special-field-box .field:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.special-field-box .field .info {
    margin-bottom: 16px;
}

.special-field-box .field .info .name {
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.special-field-box .field .info .name .text-danger {
    color: #e74c3c;
    font-size: 18px;
}

.special-field-box .field .info .price {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 8px;
    box-shadow: 0 2px 6px rgba(102, 126, 234, 0.3);
}

.special-field-box .field .info .description {
    font-size: 13px;
    color: #7f8c8d;
    line-height: 1.5;
    font-style: italic;
}

.special-field-box .field .value {
    margin-top: 12px;
}

/* Modern Input Styles */
.special-field-box .field-input,
.special-field-box .form-control {
    border: 2px solid #e8e8e8;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 14px;
    transition: all 0.3s ease;
    background: #ffffff;
}

.special-field-box .field-input:focus,
.special-field-box .form-control:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
    outline: none;
}

.special-field-box textarea.field-input {
    min-height: 100px;
    resize: vertical;
}

/* Select Dropdown */
.special-field-box select.field-input {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23667eea' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 40px;
    appearance: none;
}

/* Checkbox & Radio Styles */
.special-field-box .value label {
    display: flex;
    align-items: center;
    padding: 10px 14px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 8px;
    border: 2px solid transparent;
}

.special-field-box .value label:hover {
    background: #f8f9fa;
    border-color: #e8e8e8;
}

.special-field-box .value label input[type="checkbox"],
.special-field-box .value label input[type="radio"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: #667eea;
}

.special-field-box .value label span {
    margin-left: 10px;
    font-size: 14px;
    color: #2c3e50;
    font-weight: 500;
}

/* File Upload Modern Design */
.special-field-box .multiple-file-wrapper {
    border: 2px dashed #cbd5e0;
    border-radius: 12px;
    padding: 24px;
    background: #f8f9fb;
    transition: all 0.3s ease;
}

.special-field-box .multiple-file-wrapper:hover {
    border-color: #667eea;
    background: #f0f4ff;
}

.special-field-box .multiple-file-wrapper .control {
    text-align: center;
    margin-bottom: 16px;
}

.special-field-box .btn-upload {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    border: none;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.special-field-box .btn-upload:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(102, 126, 234, 0.4);
}

.special-field-box .btn-upload i {
    margin-right: 8px;
}

.special-field-box .multiple-file-wrapper .counts {
    display: inline-block;
    margin-left: 12px;
    background: #ffffff;
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    color: #667eea;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.special-field-box .multiple-file-wrapper .counts i {
    margin-right: 6px;
}

/* File Items */
.special-field-box .multiple-file-wrapper .items {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 12px;
    margin-top: 16px;
}

.special-field-box .multiple-file-wrapper .item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.special-field-box .multiple-file-wrapper .item:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.special-field-box .multiple-file-wrapper .item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.special-field-box .multiple-file-wrapper .item .name {
    padding: 8px;
    font-size: 12px;
    color: #2c3e50;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.special-field-box .multiple-file-wrapper .item .trash {
    position: absolute;
    top: 8px;
    right: 8px;
}

.special-field-box .btn-trash {
    background: #e74c3c;
    color: #ffffff;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(231, 76, 60, 0.4);
}

.special-field-box .btn-trash:hover {
    background: #c0392b;
    transform: scale(1.1);
}

/* Quantity Controls */
.special-field-box .multiple-file-wrapper .inc {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px;
    background: #f8f9fa;
    border-radius: 6px;
}

.special-field-box .multiple-file-wrapper .inc input {
    width: 50px;
    text-align: center;
    border: 1px solid #e8e8e8;
    border-radius: 4px;
    padding: 4px;
}

.special-field-box .btn-updown {
    background: #667eea;
    color: #ffffff;
    border: none;
    width: 24px;
    height: 24px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.2s ease;
}

.special-field-box .btn-updown:hover {
    background: #5568d3;
    transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .special-field-box {
        padding: 15px;
    }

    .special-field-box .field {
        padding: 18px;
    }

    .special-field-box .multiple-file-wrapper .items {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    }
}

.p-g-mod-t-45 .carousel-type-1 .carousel-item a img {
    border-radius: 30px;
}

/* Header*/

.p-g-mod.p-g-mod-t-45.p-g-mod-headline.p-g-mod-trans {
    padding: 0 20px 20px;
}

.header {
    padding: 0 20px;
}

.header-bottom {
    background: #fff;
    margin-bottom: 30px;
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
}

header .header-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
    height: 100px;
}

header .header-logo {
    width: 250px;
    min-width: 250px;
}

/* Main Menu */

header {
    position: relative;
}

body:not(.home-body) header {
    margin-bottom: 20px;
}

/* Mega Menü – 600px panel */
.header-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mega-menu {
    flex: 1;
    display: flex;
    justify-content: center;
}

.mega-menu .navbar-nav {
    display: flex;
    gap: 5px;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-direction: row;
}

.mega-menu .nav-link {
    font-weight: 700;
    color: #000;
    padding: 18px 6px;
    transition: color .2s ease;
}

.mega-menu .nav-link:hover {
    color: #000;
}

/* Dropdown */
.mega-menu .dropdown-menu {
    width: 600px;
    border: none;
    background: transparent;
    padding-top: 16px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    visibility: hidden;
    transition: all .25s ease;
    z-index: 90;
}

.mega-menu .nav-item:hover>.dropdown-menu {
    opacity: 1;
    visibility: visible;
}

.mega-menu .nav-item {
    position: inherit;
}

.mega-menu .dropdown-menu {
    position: absolute;
    top: 120px;
    left: 0;
    right: 0;
    transform: none;
    width: 600px;
    margin: 0 auto;
}

.mega-menu .dropdown-menu .slm-panel {
    background: #fff;
    border-radius: 28px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, .15);
    padding: 28px;
    display: flex;
    gap: 20px;
}

.mega-menu .dropdown-menu .slm-list {
    flex: 1;
    max-height: 380px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mega-menu .dropdown-menu .slm-item {
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 10px;
}

.mega-menu .dropdown-menu .slm-item:last-child {
    border-bottom: none;
}

.mega-menu .dropdown-menu .slm-title {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: #111;
    margin-bottom: 6px;
}

.mega-menu .dropdown-menu .slm-item ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mega-menu .dropdown-menu .slm-item ul li a {
    display: block;
    padding: 4px 0;
    color: #666;
    font-size: 14px;
}

.mega-menu .dropdown-menu .slm-item:hover .slm-title,
.mega-menu .dropdown-menu .slm-item ul li a:hover {
    color: #000;
}

/* Görsel panel */
.mega-menu .dropdown-menu .slm-preview {
    width: 50%;
    flex-shrink: 0;
    border-left: 1px solid #f2f2f2;
    padding-left: 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-height: 350px;
}

.mega-menu .dropdown-menu .slm-card {
    background: #fafafa;
    border-radius: 20px;
    padding: 18px;
    text-align: center;
    transition: opacity .2s ease;
}

.mega-menu .dropdown-menu .slm-card.is-hidden {
    opacity: 0;
    visibility: hidden;
}

.mega-menu .dropdown-menu .slm-image img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.mega-menu .dropdown-menu .slm-meta {
    margin-top: 12px;
    font-weight: 600;
    color: #111;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.mega-menu .dropdown-menu .slm-default img {
    width: 100%;
    border-radius: 16px;
    object-fit: cover;
}

@media (max-width: 991px) {
    .mega-menu {
        justify-content: flex-start;
    }

    .mega-menu .dropdown-menu {
        width: 100%;
        left: 0;
        transform: none;
    }

    .mega-menu .dropdown-menu .slm-panel {
        flex-direction: column;
    }

    .mega-menu .dropdown-menu .slm-preview {
        width: 100%;
        border-left: none;
        border-top: 1px solid #f2f2f2;
        padding-left: 0;
        padding-top: 16px;
    }
}

.header-top-bar {
    background: #414141;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    color: #fff;
    height: 40px;
    font-size: 13px;
}

.header-top-bar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 0;
    gap: 16px;
    height: 40px;
}

.header-top-left a,
.header-top-right a {
    color: #9d9d9d;
    margin-right: 12px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s ease;
    border-right: 1px solid #9d9d9d;
    padding-right: 12px;
}

.header-top-left a:last-child,
.header-top-right a:last-child {
    margin-right: 0;
    border-right: none;
    padding-right: 0;
}

.header-top-left a:hover,
.header-top-right a:hover {
    color: #ddd;
}

@media (max-width: 768px) {
    .header-top-bar .container {
        flex-direction: column;
        align-items: flex-start;
    }

    .header-top-left,
    .header-top-right {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }
}


/* Header Actions */

header .header-actions {
    display: flex;
}

header .header-actions .action-wrapper {
    display: flex;
    gap: 15px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.pattern-group .p-g-mod-t-28 {
    margin-bottom: 0;
}

/* Search */
.special-product-search {
    position: fixed;
    top: -100%;
    width: 80%;
    margin: 0 auto;
    height: auto;
    background: #fff;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
    transition: top 0.4s ease;
    z-index: 99;
    overflow-y: auto;
    border-radius: 5px;
    left: 0;
    right: 0;
}

.search-header {
    display: flex;
    flex-direction: column;
    position: sticky;
    top: 0;
    background: #ffffff;
    z-index: 9;
    padding-top: 20px;
}

.search-header form {
    position: relative;
}

.search-header form .btn-send {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #000000;
    font-size: 17px;
    width: 35px;
}

.special-product-search.active {
    top: 5%;
    max-height: calc(100% - 80px);
}

.search-box {
    max-width: 90%;
    margin: 10px auto 30px auto;
    padding: 20px;
}

.search-header .search-top {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 15px;
    position: relative;
}

.search-header h5 {
    font-size: 20px;
    font-weight: 600;
    margin: 0;
}

.search-header #closeSpecialSearch {
    font-size: 16px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f7f7f7;
    border-radius: 50%;
    cursor: pointer;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.search-header #closeSpecialSearch::before {
    content: "\eb98";
    font-family: "coreicon";
    font-size: 28px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
}

.search-header #closeSpecialSearch:hover {
    transform: rotate(90deg);
    color: var(--main-color2);
}

.search-header form {
    width: 100%;
    margin-bottom: 30px;
}

.search-header form input {
    height: 50px;
    color: #535353;
    border: 2px solid #e9e9e9;
    background-color: #fff;
    width: 100%;
    outline: 0;
    box-shadow: none;
    font-size: 16px;
    line-height: 26px;
    border-radius: 8px;
    padding: 9px 16px;
    transition: all 0.3s ease;
}

.search-header form input::placeholder {
    color: #a0a0a0;
    font-size: 15px;
    font-family: var(--font-name), system-ui, sans-serif;
}

.search-header form input:hover,
.search-header form input:focus {
    border-color: #000000;
}

.search-box h4 {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
}

.search-box .popular-categories ul {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.search-box .popular-categories ul li a {
    display: flex;
    padding: 4px 15px;
    border-radius: 60px;
    border: 1px solid #e9e9e9;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    font-size: 13px;
    font-weight: 600;
    color: #383838;
}

.search-box .popular-categories ul li a:hover {
    color: var(--main-color2);
}

.search-box .search-results .item img {
    display: block;
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
    transition: all 0.3s ease;
}

.search-box .search-results .item .name {
    font-size: 13px;
    line-height: 18px;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
    font-weight: 500;
    text-align: start;
    font-family: var(--font-name), system-ui, sans-serif;
    margin-top: 10px;
    margin-bottom: 5px;
    height: 38px;
}

.search-box .search-results .item:hover a {
    color: var(--main-color);
}

.search-box .search-results .item .price {
    font-size: 14px;
    line-height: 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
    font-family: var(--font-name), system-ui, sans-serif;
    transition: color 0.3s ease;
}

.search-box .search-results .item {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    border-radius: 8px;
    overflow: hidden;
    flex-direction: column;
}

.search-box .search-results .item .image-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    overflow: hidden;
}

.search-box .search-results .item .image-wrapper .btn-group {
    position: absolute;
    color: #ffffff;
    opacity: 0;
    transition: all 0.3s ease;
    cursor: pointer;
}

.search-box .search-results .item:hover img {
    filter: brightness(80%);
}

.search-box .search-results .item:hover .image-wrapper .btn-group {
    opacity: 1;
}

.search-box .search-results .item .image-wrapper .btn-group a {
    background-color: #ffffff;
    color: #000000;
    width: 35px;
    height: 35px;
    font-size: 16px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.search-box .search-results .item .image-wrapper .btn-group a:hover {
    opacity: 1;
    background-color: var(--main-color2);
    color: #fff;
}

/* Sidebar Cart */

.sidebar-cart {
    max-width: 400px;
    width: 100%;
    background-color: #fff;
    position: fixed;
    right: -100%;
    top: 0;
    bottom: 0;
    box-shadow: -20px 0px 15px 0 rgba(0, 0, 0, .05);
    transition: all .4s;
    display: flex;
    flex-direction: column;
    z-index: 9999;
}

.sidebar-cart.active {
    opacity: 1;
    right: 0;
    transition: all .4s;
}

.sidebar-cart .sc-header {
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    border-bottom: 1px solid #e8e8e8;
}

.sidebar-cart .sc-header .title {
    font-size: 16px;
    font-weight: 600;
    color: #000;
    padding: 10px;
}

.sidebar-cart .sc-header .close-icon {
    cursor: pointer;
    padding: 5px;
    border-radius: 5px;
    transition: all 0.3s ease;
    color: #555;
}

.sidebar-cart .sc-header .close-icon:hover {
    background: rgba(0, 0, 0, .1);
    color: #000;
}

.sidebar-cart .cart-empty {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    height: 100%;
    gap: 10px
}

.sidebar-cart .cart-empty .title {
    font-size: 18px;
    font-weight: 600;
    color: #000;
}

.sidebar-cart .cart-empty .description {
    font-size: 14px;
    color: #555;
}

.sidebar-cart .cart-empty .btn {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 15px;
    padding: 10px 20px;
    gap: 5px;
    background: #f4f4f5;
    color: #000;
}

.sidebar-cart .cart-empty .btn:hover {
    color: #fff;
}

.sidebar-cart .shipping-info {
    background: #f0f0f0;
    padding: 15px;
    border-radius: 3px;
    margin: 10px;
    font-size: 14px;
    gap: 15px;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.sidebar-cart .shipping-info.active {
    background: var(--success);
    color: #fff;
}

.sidebar-cart .shipping-info .cart-progress {
    border-radius: 10px;
    width: 100%;
    height: 10px;
}

.sidebar-cart .shipping-info .cart-progress::-webkit-progress-bar {
    background-color: #000;
    border-radius: 7px;
}

.sidebar-cart .shipping-info .cart-progress::-webkit-progress-value {
    background-color: var(--success);
    border-radius: 7px;
}

.sidebar-cart .products {
    flex: 1;
    overflow-y: auto;
}

.sidebar-cart .products .items {
    padding: 10px;
    gap: 15px;
    display: flex;
    flex-direction: column;
}

.sidebar-cart .products .items .item {
    display: flex;
    gap: 10px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(0, 0, 0, .05);
}

.sidebar-cart .products .items .item:last-child {
    border-bottom: none;
}

.sidebar-cart .products .items .item .image {
    padding: 5px;
    max-width: 100px;
}

.sidebar-cart .products .items .item .info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.sidebar-cart .products .items .item .info .name {
    font-size: 14px;
    font-weight: 500;
    color: #000;
}

.sidebar-cart .products .items .item .info .name:hover {
    text-decoration: underline;
}

.sidebar-cart .products .items .item .info .variants .variant span {
    color: #777;
}

.sidebar-cart .products .items .item .info .prices {
    display: flex;
    align-items: center;
    gap: 5px;
}

.sidebar-cart .products .items .item .info .prices .old-value {
    font-size: 13px;
    color: #777;
    text-decoration: line-through;
}

.sidebar-cart .products .items .item .info .prices .value {
    font-size: 15px;
    color: #000;
}

.sidebar-cart .products .items .item .btn-remove {
    font-size: 14px;
    color: #777;
}

.sidebar-cart .products .items .item .btn-remove:hover {
    color: #000;
}

.sidebar-cart .summary .btn-payment,
.sidebar-cart .summary .btn-cart {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #f4f4f5;
    color: #000;
    border-radius: 0;
    height: 60px;
    gap: 10px;
    font-size: 16px;
    font-weight: 500;
    border: 0;
    padding: 25px;
    transition: all 0.3s ease;
}

.sidebar-cart .summary .btn-payment:hover {
    background: #dbdbdb;
    color: #000;
}

.sidebar-cart .summary .btn-cart {
    background: #000;
    color: #fff;
    display: flex;
    justify-content: flex-start;
    height: 80px
}

.sidebar-cart .summary .btn-cart::before {
    background: var(--success);
}

.sidebar-cart .summary .btn-cart:hover {
    background: var(--success);
    color: #fff;
}

.sidebar-cart .summary .btn-cart .cart-total {
    display: flex;
    flex-direction: column;
    flex: 1;
    align-items: flex-start;
    font-size: 14px;
}

.sidebar-cart .summary .btn-cart .cart-total span {
    font-size: 16px;
}

/* Slider */

.p-g-mod-t-45 {
    position: relative;
}

.p-g-mod-t-45 .carousel-caption {
    position: absolute;
    left: 100px;
    bottom: 50%;
    transform: translateY(55%);
    padding: 0;
    z-index: 2;
    text-align: left;
}

.p-g-mod-t-45 .carousel-caption h5 {
    font-size: 4rem;
    margin-bottom: 20px;
    opacity: 0;
    transform: translate3d(0, 40px, 0);
    color: #fff;
    font-weight: 600;
}

.p-g-mod-t-45 .carousel-caption p {
    font-size: 1rem;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 20px;
    opacity: 0;
    transform: translate3d(0, 40px, 0);
    color: #fff;
    max-width: 600px;
}

.p-g-mod-t-45 .carousel-caption .headline-button {
    display: inline-block;
    background-color: #fff;
    color: #000;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: color 0.3s ease;
    opacity: 0;
    transform: translate3d(0, 40px, 0);
}

.p-g-mod-t-45 .carousel-caption .headline-button::before {
    content: "";
    position: absolute;
    bottom: -50%;
    width: 110%;
    height: 100%;
    transform-origin: center bottom;
    transform: skewY(9.3deg) scaleY(0);
    transition: transform 600ms cubic-bezier(0.48, 0, 0.12, 1);
    background-color: var(--main-color);
    z-index: -1;
    left: -10px;
}

.p-g-mod-t-45 .carousel-caption .headline-button::after {
    content: "\ea70";
    font-family: "coreicon";
}

.p-g-mod-t-45 .carousel-caption .headline-button:hover::before {
    transform-origin: center bottom;
    transform: skewY(9.3deg) scaleY(2);
}

.p-g-mod-t-45 .carousel-caption .headline-button:hover {
    color: #fff;
}

.p-g-mod-t-45 .carousel-item.active .carousel-caption h5 {
    animation: fadeInUp 1s forwards;
    animation-delay: 0.5s;
}

.p-g-mod-t-45 .carousel-item.active .carousel-caption p {
    animation: fadeInUp 1s forwards;
    animation-delay: 1s;
}

.p-g-mod-t-45 .carousel-item.active .carousel-caption .headline-button {
    animation: fadeInUp 1s forwards;
    animation-delay: 1.5s;
}

.p-g-mod-t-45 .carousel-type-1 .carousel-indicators li {
    border-radius: 50%;
    border: 4px solid transparent;
    background-color: #ffffff;
    box-shadow: 0 0 0 1px #ffffff;
    height: 8px;
    width: 8px;
}

.p-g-mod-t-45 .carousel-type-1 .carousel-indicators li.active {
    background-color: #ffffff;
}

.p-g-mod-t-45 .carousel-control-prev i,
.p-g-mod-t-45 .carousel-control-next i {
    background: #fff;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    padding: 5px;
    font-size: 15px;
    color: #000;
}

.p-g-mod-t-45 .carousel-control-prev {
    left: 20px;
}

.p-g-mod-t-45 .carousel-control-next {
    right: 20px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 40px, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.pattern-group .p-g-mod-t-52 .p-g-mod-header .p-g-m-h-info {
    align-items: center;
}

.pattern-group .p-g-mod .p-g-mod-header .p-g-m-h-info .p-g-m-h-i-title {
    font-size: 24px;
    font-weight: 600;
    margin: 0;
}

.pattern-group .p-g-mod .p-g-mod-header .p-g-m-h-info .p-g-m-h-i-description {
    font-size: 15px;
    color: #898989;
}

.pattern-group .p-g-mod .p-g-mod-header {
    border: none;
}

.pattern-group .p-g-mod .p-g-mod-header .p-g-m-h-button .btn-mod {
    font-size: 14px;
    font-weight: 600;
    border: 0;
    padding: 0 0 2px 0;
    background: linear-gradient(to right, var(--main-color2) 50%, var(--main-color) 50%);
    background-size: 200% 100%;
    background-position: right;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.3s ease;
    position: relative;
}

.pattern-group .p-g-mod .p-g-mod-header .p-g-m-h-button .btn-mod:hover {
    background-position: left;
}

.pattern-group .p-g-mod .p-g-mod-header .p-g-m-h-button .btn-mod::before,
.pattern-group .p-g-mod .p-g-mod-header .p-g-m-h-button .btn-mod::after {
    position: absolute;
    content: "";
    left: 0;
    bottom: 0;
    right: 0;
    height: 2px;
    transition: width 0.3s linear;
}


.pattern-group .p-g-mod .p-g-mod-header .p-g-m-h-button .btn-mod::before {
    background-color: var(--main-color2);
    z-index: 1;
    width: 0;
}

.pattern-group .p-g-mod .p-g-mod-header .p-g-m-h-button .btn-mod::after {
    background-color: var(--main-color);
    width: 100%;
}

.pattern-group .p-g-mod .p-g-mod-header .p-g-m-h-button .btn-mod:hover::before {
    width: 100%;
}

/* Product Card */

[data-custom-tooltip] {
    position: relative;
}

[data-custom-tooltip]:before {
    content: attr(data-custom-tooltip);
    position: absolute;
    right: 100%;
    top: 50%;
    transform: translateY(-50%);
    background: #000000;
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    margin-right: 10px;
    pointer-events: none;
    z-index: 1000;
}

[data-custom-tooltip]:after {
    content: "";
    position: absolute;
    right: 100%;
    top: 50%;
    transform: translateY(-50%);
    border: 5px solid transparent;
    border-left-color: #000000;
    margin-right: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    pointer-events: none;
    z-index: 1000;
}

[data-custom-tooltip]:hover:before,
[data-custom-tooltip]:hover:after {
    opacity: 1;
    visibility: visible;
    right: 110%;
}

.card-product {
    border-radius: 30px;
}

.card-product .image-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    overflow: hidden;
}

.card-product .card-product-inner {
    padding: 0;
}

.card-product .buttons-wrapper.right-to-left {
    opacity: 0;
    position: absolute;
    top: 15px;
    right: 0px;
    z-index: 9;
    transition: opacity .4s;
}

.card-product .buttons-wrapper.right-to-left a {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    place-content: center;
    text-align: center;
    transition: opacity .4s;
    margin-bottom: 7px;
    font-size: 20px;
    background-color: #ffffff;
    color: #000000;
    box-shadow: 0px 0px 3px #ebebeb;
}

.card-product .buttons-wrapper.right-to-left a:hover {
    background-color: #000000;
    color: #ffffff;
    transition: opacity .4s;
    box-shadow: none;
}

.card-product .buttons-wrapper.right-to-left .cart-group {
    display: flex;
    flex-direction: column;
}

.card-product:hover .buttons-wrapper.right-to-left {
    opacity: 1;
    right: 10px;
}

.card-product .buttons-wrapper.down-to-top {
    position: absolute;
    overflow: hidden;
    width: 80%;
    left: 50%;
    transform: translate3d(-50%, 0%, 0);
    z-index: -1;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 3px;
}

.card-product .buttons-wrapper.down-to-top .button-group {
    background: transparent;
    padding: 7px;
}

.card-product .buttons-wrapper.down-to-top .button-group a {
    color: #000000;
    padding: 7px 10px;
    font-size: 14px;
    font-weight: 600;
}

.card-product:hover .buttons-wrapper.down-to-top {
    position: absolute;
    overflow: hidden;
    left: 50%;
    transform: translate3d(-50%, -140%, 0);
    transition: all .2s;
    z-index: 2;
    background-color: #ffffff;
    box-shadow: -3px 0 10px -2px rgba(0, 0, 0, .1);
}

.card-product .buttons-wrapper.down-to-top:hover {
    color: #ffffff;
    background-color: #000000;
    box-shadow: 0 0 0 3px #000000;
    transition: all .2s;
}

.card-product .buttons-wrapper.down-to-top:hover a {
    color: #ffffff;
}

.card-product:hover .buttons-wrapper.down-to-top .button-group {
    opacity: 1;
    visibility: visible;
    transform: translate3d(0, 0, 0);
    transition: all .4s;
    margin: 0;
    padding: 3px 0;
}

.card-product .all-labels {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 9;
    display: flex;
    gap: 5px;
    flex-direction: column;
}

.card-product .all-labels .discount {
    background-color: #da3f3f;
    min-width: 55px;
    border-radius: 11px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    padding: 3px 7px;
}

.card-product .all-labels .new-label {
    background-color: #000000;
    min-width: 55px;
    border-radius: 11px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    padding: 3px 7px;
}

.card-product .prices {
    display: flex;
    align-items: center;
}

.card-product .product-reviews {
    justify-content: center;
    margin-top: 15px;
}

.card-product .product-reviews .stars .star.fill {
    color: #ff9538;
}

.product-reviews .count {
    color: #000000;
    font-size: 12px;
    font-weight: 600;
    line-height: 13px;
}

.card-product .card-product-inner .title {
    text-align: center;
    font-weight: 600;
    color: var(--main-color);
    font-size: 15px;
    line-height: 20px;
    margin: 10px 0;
    height: auto;
    max-height: 40px;
}

.card-product .card-product-inner .image-wrapper .image img {
    border-radius: 30px 30px 0 0;
}

.card-product .card-product-inner .price-group {
    justify-content: center;
    align-items: center;
    padding-bottom: 10px;
    height: auto;
}

.card-product .card-product-inner .price-group .prices .sale-price {
    color: var(--main-color);
    font-size: 16px;
    line-height: 26px;
    font-weight: 600;
}

.card-product .card-product-inner .price-group .prices .list-price {
    margin-right: 8px;
    font-weight: 600;
    color: #b6b6b6;
    font-size: 15px;
    line-height: 22px;
    text-decoration: line-through;
}

.card-product .product-reviews .stars .star {
    color: #000000;
    font-size: 12px;
}

.card-product .sale-price-basket {
    display: flex;
    color: #da413f;
    font-weight: 600;
    font-size: 14px;
    align-items: center;
}

.card-product .sale-price-basket .sale-price {
    font-size: 16px;
}

.card-product .it-over {
    position: absolute;
    bottom: 0;
    background: #000;
    width: 100%;
    padding: 10px;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 600;
}

.owl-wrapper .owl-single-button button {
    color: #ffffff;
    font-size: 18px;
}

.owl-wrapper .owl-single-button {
    box-shadow: none;
    background: #000000;
    transition: all .4s;
}

.owl-wrapper .owl-single-button:hover {
    background-color: var(--main-color2);
}

/* Instagram Shop */

.pattern-group .p-g-mod.instagram-shop {
    margin-bottom: 0;
}

.pattern-group .p-g-mod.instagram-shop .p-g-mod-header .p-g-m-h-info {
    align-items: center;
}

.pattern-group .p-g-mod.instagram-shop .p-g-mod-header {
    height: 80px;
}

.instagram-shop .col-list-p-v-1 {
    padding: 0;
    padding-right: 5px;
}

.instagram-shop .col-list-p-v-1:last-child {
    padding-right: 0;
}

.instagram-shop .banner-item {
    position: relative;
    display: block;
    overflow: hidden;
}

.instagram-shop .banner-item .image {
    overflow: hidden;
    border-radius: 10px;
}

.instagram-shop .banner-item .image img {
    display: block;
    width: 100%;
    transition: transform .6s ease, filter .6s ease;
    will-change: transform, filter;
}

.instagram-shop .banner-item:hover .image img {
    transform: scale(1.20);
    filter: brightness(0.50);
}

.instagram-shop .banner-item::after {
    content: "\ee66";
    font-family: "coreicon";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scale(.85);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #ffffff;
    color: #000000;
    font-size: 24px;
    line-height: 45px;
    text-align: center;
    opacity: 0;
    transition: opacity .25s ease, transform .25s ease;
    pointer-events: none;
}

.instagram-shop .banner-item:hover::after {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.instagram-shop .banner-item::after:hover {
    background: #000000;
    color: #ffffff;
}

/* Custom Component */

.p-g-mod-base-content {
    border: 1px solid #ebebeb;
}

.product-body .p-g-mod-base-content {
    border: 0;
}

.item-sidebar-cart {
    position: relative;
}

.item-sidebar-cart .count {
    position: absolute;
    right: -10px;
    top: -10px;
    min-width: 18px;
    height: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #db2534;
    color: #fff;
    font-size: 11px;
    border-radius: 50%;
}

.related-products {
    align-items: flex-start;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin-bottom: 35px;
    margin-top: 10px;
}

.related-products a.active img {
    border-color: #000000;
}

.related-products a img {
    margin-bottom: 5px;
}

.related-products a,
.product-profile-info li a {
    color: #181818;
}


.product-body .breadcrumb-wrapper .breadcrumb {
    background: none;
    color: #a1a1a1;
    font-size: 13px;
    font-weight: 600;
    padding: 0;
    border-radius: 0;
}

.breadcrumb-wrapper .breadcrumb a {
    cursor: pointer;
    transition: all .4s;
}

.breadcrumb-wrapper .breadcrumb a:hover {
    color: var(--main-color2);
}

.jssocials-share-twitter .jssocials-share-link {
    background-color: #000000 !important;
}

.fa-twitter.jssocials-share-logo {
    content: '\F3E7';
    font-family: 'coreicon';
}

.fa-twitter:before {
    content: '\F3E7' !important;
    font-family: 'coreicon';
}

.product-reviews .stars .star {
    color: #000000;
    font-size: 11px;
}

.product-body .product-profile-1 .alert-danger {
    color: #fff;
    background-color: #dc3545;
    border-color: #dc3545;
    font-weight: 600 !important;
}

.product-customer-actions {
    background: #fbfbfb;
    border: 1px solid #F4F4F4;
    padding: 10px 0;
}

.product-customer-actions .action .button {
    color: #383838;
    font-weight: 600;
    padding: 5px 10px;
    font-size: 13px;
    margin-right: 20px;
    line-height: normal;
    transition: all .4s;
}

.product-customer-actions .action .button:hover {
    color: var(--main-color2);
}

.product-customer-actions .action .button i {
    font-size: 18px;
    margin-right: 5px;
}

.product-customer-actions .action {
    align-items: center;
    border-right: 0;
}

.product-customer-actions .action:first-child {
    border-left: 0;
}

.product-body .product-transfer-discount,
.product-body .product-size-box,
.product-body .product-cargo-time,
.product-body .product-rate {
    display: flex;
    align-items: center;
}

.product-body .product-cargo-time span {
    font-weight: 500;
    color: #181818;
}

.product-size-box a {
    color: #000;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.product-profile-info .product-short-desc {
    font-weight: 500;
    line-height: normal;
    color: #393939;
    font-size: 15px;
    margin-top: 20px;
}

.product-body .p-icon-special {
    height: 20px;
    margin-right: 5px;
}

.product-body .p-icon-special-animation {
    animation: ani-flash 4s infinite;
    filter: brightness(0) saturate(100%) invert(6%) sepia(100%) saturate(9000%) hue-rotate(-10deg);
}

@keyframes ani-flash {

    50%,
    0%,
    100% {
        opacity: 1;
    }

    25%,
    75% {
        opacity: 0;
    }
}

.product-profile-info .product-reviews {
    align-items: center;
}

.product-profile-info .product-price-group {
    border-top: 1px solid #ebebeb;
    border-bottom: 1px solid #ebebeb;
    padding: 20px 0;
    margin: 20px 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.product-profile-info .product-price-group .sale-price-basket {
    display: flex;
    color: #da413f;
    font-weight: 600;
    font-size: 14px;
    align-items: center;
}

.product-profile-info .product-price-group .sale-price {
    font-size: 16px;
}

.product-profile-info .product-price-group .prices {
    display: flex;
    align-items: center;
}

.product-profile-info .product-price-group .prices .sale-price {
    font-size: 20px;
}

.product-profile-info .product-price-group .prices .list-price {
    color: #a0a0a0;
    font-size: 18px;
    margin-right: 10px;
}

.product-price-group .discount {
    background: #f03e3e;
    color: #fff;
    display: flex;
    flex-direction: column;
    font-size: 12px;
    font-weight: 600;
    height: auto;
    margin-left: 10px;
    width: auto;
    padding: 3px 14px;
    border-radius: 15px;
}

.product-buttons .btn-all-combines,
.product-buttons .btn-cart {
    background: #000000;
    border-color: #000000;
    color: #fff;
    display: flex;
    font-size: 14px;
    font-weight: 600;
    flex: 1;
    margin-left: 0;
    transition: all .4s ease;
}

.product-buttons .btn-all-combines:hover,
.product-buttons .btn-cart:hover {
    background-color: #74b06f;
    border-color: #74b06f;
}

.product-buttons .btn-fast-buy {
    align-items: center;
    color: #fff;
    display: flex;
    font-size: 14px;
    height: 45px;
    justify-content: center;
    margin: 0;
    width: 100%;
    background: var(--main-color2);
    font-weight: 600;
    border: 0;
    transition: all .4s ease;
}

.product-buttons .btn-fast-buy:hover {
    background-color: var(--main-color);
}

.product-buttons .product-favourite a i {
    margin-right: 0;
    border: 1px solid #ebebeb;
    margin: 10px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    border-radius: 3px;
    margin-left: 0;
    margin-right: 0;
    font-size: 19px;
}

.product-quantity .btn {
    align-items: center;
    color: var(--main-color);
    display: flex;
    font-size: 11px;
    font-weight: 500;
    height: 45px;
    justify-content: center;
    padding: 0;
    width: 40px;
    background: #f2f2f2;
    border: 0;
}

.product-quantity .btn:hover {
    background-color: #f6f6f6;
}

.product-body .product-quantity input {
    height: 45px;
    width: 40px;
    border: 0;
    border-top: 1px solid;
    border-bottom: 1px solid;
    border-color: #f2f2f2 !important;
}

.pattern-group .p-g-tab-wrapper {
    display: flex;
    flex-direction: column;
    border: 1px solid #ebebeb;
}

.pattern-group .p-g-tab-wrapper .p-g-t-nav .nav {
    border-bottom: 1px solid #ededed;
    display: flex;
    align-items: center;
    overflow: auto;
    justify-content: flex-start;
    flex: auto;
}

.product-body .product-details-tab-product-details-tab-colorful .p-g-tab-wrapper .p-g-t-nav .nav,
.product-body .pattern-group .p-g-tab-wrapper .p-g-t-nav {
    background: #fff;
    margin-bottom: 0 !important;
}

.pattern-group .p-g-tab-wrapper .raw-content {
    font-size: 13px;
    color: #181818;
    font-family: var(--font-name), system-ui, -apple-system, sans-serif;
    line-height: 24px;
    padding: 10px 20px;
}

.pattern-group .p-g-tab-wrapper .p-g-t-nav .nav .nav-item {
    margin: 0;
    text-align: left;
    display: flex;
}

.pattern-group .p-g-tab-wrapper .p-g-t-nav .nav .nav-item .nav-link {
    font-weight: 600;
    font-size: 16px;
    line-height: 100%;
    color: #5F615E;
    display: block;
    position: relative;
    text-align: center;
    white-space: nowrap;
    padding: 20px 30px;
}

.pattern-group .p-g-tab-wrapper .p-g-t-nav .nav .nav-item .nav-link.active {
    color: #000000;
}

.pattern-group .p-g-tab-wrapper .p-g-t-nav .nav .nav-item .nav-link::after {
    position: absolute;
    content: "";
    bottom: 0px;
    height: 3px;
    width: 0;
    left: 50%;
    transform: translateX(-50%);
    background-color: #000000;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.pattern-group .p-g-tab-wrapper .p-g-t-nav .nav .nav-item .nav-link.active::after {
    width: 100%;
}

.tab-products .p-g-tab-wrapper .p-g-t-nav .nav {
    justify-content: center;
}

.tab-products .p-g-tab-wrapper,
.tab-products .p-g-tab-wrapper .p-g-t-nav .nav {
    border: none;
}

.product-carousel-mobile {
    display: none;
}

.product-profile-1 .slide .col-md-6,
.product-profile-1 .slide .col-md-3 {
    padding: 3px;
}

.variant-box {
    background: transparent;
    border: 0;
    border-radius: 0;
    padding: 0;
}



.variant-box ul li .options a {
    min-width: 45px;
    height: auto;
    width: max-content;
    border: 1px solid rgba(134, 134, 134, 0.12);
    border-radius: 3px;
    padding: 7px 15px;
    text-align: center;
    transition: all .4s ease;
    font-weight: 600;
    color: #000000;
    font-size: 14px;
}

.variant-box ul li .options a:hover {
    border-color: #000000;
}

.variant-box ul li .options a.active {
    border-color: #000000;
    background-color: #000000;
    box-shadow: 0 6px 6px rgba(0, 0, 0, 0.10);
    color: #ffffff;
}

.variant-box ul li .name {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 7px;
}

.variant-box ul li {
    margin-bottom: 15px;
}

.product-badges .p-badge {
    align-items: center;
    border-radius: 0;
    display: flex;
    flex-direction: row;
    height: auto;
    justify-content: flex-start;
    margin: 0 5px 5px 0;
    padding: 20px 30px;
    width: 100%;
    border: 1px solid #F4F4F4;
    background: #FBFBFB;
    align-items: center;
}

.product-badges .p-badge i {
    color: #181818;
    font-size: 25px;
    margin-right: 20px;
}

.product-badges .p-badge .content {
    display: flex;
    flex-direction: column;
}

.product-badges .p-badge .content .title {
    font-weight: 600;
    color: var(--main-color);
    font-size: 15px;
}

.product-badges .p-badge .content .description {
    font-size: 14px;
    color: #A1A1A1;
}

.product-body .p-g-b-c-1 .product-profile-1 {
    padding: 40px;
    background-color: #fff;
    border-radius: 30px;
}

.product-profile-1 .carousel .carousel-inner {
    border-color: #fff;
    border-radius: 30px;
}

.product-body .product-badge-special {
    margin-bottom: 15px;
}

.product-profile-1 .product-carousel-desktop.normal .carousel-outer {
    position: relative;
}

.product-profile-1 .product-carousel-desktop.normal .free-cargo-badge {
    position: absolute;
    background-color: #73AF6F;
    color: #ffffff;
    font-size: 12px;
    font-weight: 600;
    padding: 5px 10px;
    border-radius: 4px;
    top: 13px;
    z-index: 1;
    width: 100px;
    text-align: center;
    left: 10px;
}

.product-body .product-badge-special .auto-date-info {
    color: #a0a0a0;
    letter-spacing: 1.2px;
    margin-bottom: 4px;
    font-size: 12px;
    line-height: 20px;
    font-weight: 600;
}

.product-body .product-badge-special .before-after a {
    font-size: 13px;
    font-weight: 600;
    transition: all .4s;
}

.product-profile-info li {
    color: #000000;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
}

.product-profile-info li span,
.product-profile-info li a .value {
    line-height: 22px;
    font-size: 14px;
    color: #181818;
    font-weight: 600;
    transition: all .4s;
}

.product-profile-info.info-2 li span,
.product-profile-info.info-2 li a .value {
    color: #5f615e;
}

.product-profile-info li a:hover .value {
    color: var(--main-color2);
}

.product-profile-1 h1.title {
    border-bottom: 0;
    color: var(--main-color);
    font-size: 21px;
    font-weight: 600;
    padding-bottom: 0;
    margin-bottom: 0;
}

.product-profile-1 .product-badge-special {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.breadcrumb-bg {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.breadcrumb-bg h1 {
    font-size: 32px;
}

.breadcrumb-bg p {
    color: #545454;
    font-size: 15px;
}

.breadcrumb-bg nav.breadcrumb-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.breadcrumb-bg .breadcrumb-wrapper .breadcrumb {
    color: #8e8e8e;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 0;
}

.breadcrumb-bg .breadcrumb-wrapper .breadcrumb a {
    color: #a0a0a0;
}

.p-g-mod-t-cat-filter .simplebar-scrollbar:before {
    opacity: 1 !important;
}

.category-filter-list .list-wrap .list li,
.category-filter-list .list-wrap .list li a {
    color: var(--main-color);
    display: block;
    font-size: 13px;
    font-weight: 400;
    font-family: var(--font-name);
    transition: all .4s ease;
}

.category-filter-list .list-wrap .list li:hover,
.category-filter-list .list-wrap .list li:hover a {
    color: var(--main-color2);
}

.pattern-group .p-g-mod-t-cat-filter {
    border-bottom: 1px solid #ebebeb;
    border: 0;
    padding: 20px;
    background-color: #fff !important;
}

.pattern-group .p-g-mod-t-cat-filter:first-child {
    border-radius: 30px 30px 0 0;
}

.pattern-group .p-g-mod-t-cat-filter:last-child {
    border-radius: 0 0 30px 30px;
}

.pattern-group .p-g-mod-t-cat-filter .p-g-mod-header .p-g-m-h-info .p-g-m-h-i-title {
    font-size: 15px;
}

.pattern-group .p-g-mod-t-26 .p-g-mod-body .btn {
    font-size: 14px;
    background: #000000;
    width: 100%;
    padding: 10px;
    border: 0;
    font-weight: 600;
}

.pattern-group .p-g-mod-t-26 .p-g-mod-body .btn:hover {
    background-color: var(--main-color2);
}

.category-filter-list {
    border-radius: 5px;
    border: 1px solid #f4f4f4;
    padding: 30px;
    margin-bottom: 20px;
}

.p-g-mod-t-cat-filter .p-g-mod-header {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    cursor: pointer;
}

.p-g-mod-t-cat-filter .p-g-mod-header .p-g-m-h-info .p-g-m-h-i-title {
    font-size: 14px;
}

.p-g-mod-t-cat-filter:not(.p-g-mod-t-21) .p-g-mod-body {
    display: none;
}

.pattern-group .p-g-mod .p-g-mod-header .p-g-m-h-icon {
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    font-size: 14px;
    justify-content: center;
    width: 20px;
}

.categories-body .product-view-select {
    display: flex;
    justify-content: space-evenly;
    height: 100%;
    align-items: center;
}

.categories-body .product-view-select a div {
    width: 9px;
    height: 13px;
    background: #e2e6eb;
    border-radius: 1px;
    margin: 0 2px;
}

.categories-body .product-view-select a.active div {
    background: var(--main-color);
}

.categories-body .product-view-select a {
    background: #fff;
    height: 30px;
    border-radius: 5px;
    border: 1px solid #e7e3e3;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    margin-left: 10px;
    transition: var(--transition-time);
    padding: 0 10px;
}

.category-filter-order .list-wrap {
    background: 0 0;
    padding: 20px 0;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: transparent;
}

.category-filter-order .list-wrap .list {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    font-size: 12px;
    font-weight: 500;
    justify-content: space-between;
}

.category-filter-order-desktop {
    display: inline-block;
    width: 170px;
    line-height: normal;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    height: 35px;
    font-size: 13px;
    color: #4a4a4a;
    font-weight: 400;
    padding-left: 14px;
    background: url(images/select-arrow.svg) no-repeat;
    background-position: right 10px center;
    background-color: #fff;
    outline: none;
    border-radius: 5px;
    border: 1px solid #F4F4F4;
    height: 44px;
}

.category-filter-order-desktop:focus {
    border-color: #e7e3e3;
}

.category-filter-order-mobile {
    display: none;
}

.category-filter-order .list-wrap .right {
    display: flex;
    gap: 10px;
    align-items: center;
}

.category-filter-order .list-wrap .cat-title {
    color: #181818;
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 0;
}

.category-filter-list .list-wrap .list li {
    color: var(--main-color);
    font-size: 14px;
    font-weight: 400;
    line-height: normal;
    font-family: var(--font-name), system-ui, -apple-system, sans-serif;
}

.p-g-mod-t-44 .banner-item {
    position: relative;
}

.p-g-mod-t-44 .banner-item .banner-special-content {
    position: absolute;
    bottom: 20px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.p-g-mod-t-44 .banner-item .image {
    overflow: hidden;
    border-radius: 10px;
}

.p-g-mod-t-44 .banner-item .image img {
    transition: all .5s ease;
}

.p-g-mod-t-44 .banner-item:hover .image img {
    transform: scale(1.10);
    filter: brightness(0.80);
}

.p-g-mod-t-44 .banner-item .banner-special-content .title {
    color: #ffffff;
    font-size: 2rem;
    font-weight: bold;
    line-height: normal;
    padding: 0;
    margin-top: 10px;
}

.p-g-mod-t-44 .banner-item .banner-special-content .description {
    color: #ffff;
    font-size: 13px;
    line-height: normal;
    padding: 0;
}

.instagram-shop .special-btn {
    display: none;
}

.special-btn:empty {
    display: none !important;
}

/* Custom Module 192 - Asymmetric Banner Layout */
.two-banner .row {
    display: flex;
    flex-wrap: wrap;
}

.two-banner .row .col-list-p-v-1 {
    padding: 8px;
}

/* İlk banner - %75 genişlik */
.two-banner .row .col-list-p-v-1:nth-child(1) {
    flex: 0 0 75%;
    max-width: 75%;
}

/* İkinci banner - %25 genişlik */
.two-banner .row .col-list-p-v-1:nth-child(2) {
    flex: 0 0 25%;
    max-width: 25%;
}

/* Üçüncü banner - %25 genişlik */
.two-banner .row .col-list-p-v-1:nth-child(3) {
    flex: 0 0 25%;
    max-width: 25%;
}

/* Dördüncü banner - %75 genişlik */
.two-banner .row .col-list-p-v-1:nth-child(4) {
    flex: 0 0 75%;
    max-width: 75%;
}

/* Banner item tam yükseklik */
.two-banner .row .banner-item {
    display: flex;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.two-banner .row .banner-item .image {
    width: 100%;
    height: 100%;
}

.two-banner .row .banner-item .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.p-g-mod-t-44 .banner-item .banner-special-content {
    bottom: 50%;
}

/* Responsive - Mobilde tümü tam genişlik */
@media (max-width: 768px) {

    .two-banner .row .col-list-p-v-1:nth-child(1),
    .two-banner .row .col-list-p-v-1:nth-child(2),
    .two-banner .row .col-list-p-v-1:nth-child(3),
    .two-banner .row .col-list-p-v-1:nth-child(4) {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/* Cart Body */

.shopping-cart-1 .table {
    color: var(--main-color);
}

.shopping-cart-1 .td-product .product .p-info .name {
    color: var(--main-color);
    font-size: 14px;
    font-weight: 600;
}

@keyframes cargo-flash {

    50%,
    from,
    to {
        opacity: 1;
    }

    25%,
    75% {
        opacity: 0;
    }
}

.shopping-cart-1 .product-quantity input {
    border: 0;
}

.shopping-cart-1 .product-quantity .btn {
    background: #fff;
}

.product-quantity {
    align-items: flex-start;
    display: flex;
    justify-content: center;
    border: 2px solid #e9e9e9;
    border-radius: 20px;
    overflow: hidden;
}

.pattern-group .p-g-mod-t-31 .p-g-mod-header {
    padding: 0;
}

.pattern-group .p-g-mod.p-g-mod-t-75 .p-g-mod-body {
    padding: 0;
}

.p-g-mod-t-75 .shipping-info {
    width: 100%;
    font-size: 14px;
    font-weight: 600;
}

.p-g-mod-t-75 .shipping-info .description span {
    margin-left: 5px;
    color: #e43131;
}

.p-g-mod-t-75 .shipping-info .description {
    display: flex;
    align-items: center;
}

.p-g-mod-t-75 .shipping-info i {
    font-size: 25px;
    font-weight: 500;
    margin-right: 10px;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    animation: cargo-flash 4s infinite;
}

.p-g-mod-t-75 .shipping-info i.core-icon-gift-line {
    color: var(--success);
}

.free-shipping-limit {
    align-items: center;
    display: flex;
    justify-content: center;
    background: #ffffff;
    padding: 15px;
    border: 1px solid #ebebeb;
    border-radius: 3px;
}

.p-g-mod-t-75 .free-shipping-limit .shipping-info.active {
    background: #3dab25;
    color: #fff;
}

.p-g-mod-t-75 .free-shipping-limit .shipping-info .cart-progress {
    border-radius: 10px;
    width: 100%;
    height: 7px;
}

.p-g-mod-t-75 .free-shipping-limit .shipping-info .cart-progress::-webkit-progress-bar {
    background-color: #e9e9e9;
    border-radius: 7px;
}

.p-g-mod-t-75 .free-shipping-limit .shipping-info .cart-progress::-webkit-progress-value {
    background-color: #3dab25;
    border-radius: 7px;
}

.p-g-mod-t-75 .free-shipping-limit .shipping-info .cart-progress-success::-webkit-progress-bar {
    background-color: #3dab25;
}

.shopping-cart-1 .product-quantity-type {
    justify-content: flex-start;
}

.shopping-cart-1 .td-product .product {
    align-items: center;
}

.shopping-cart-1 td {
    align-content: center;
}

.cart-body .voucher-code-form .form-control {
    color: #909090;
    border: 1px solid #ebebeb;
    border-radius: 3px;
    font-size: 13px;
    padding: 12px 18px;
    height: calc(1.5em + .75rem + 10px);
    font-weight: 600;
}

.cart-body .input-group>.form-control:not(:last-child) {
    border-radius: 3px;
}

.cart-body .input-group-append .btn-secondary {
    color: #fff;
    background-color: #000000;
    border-color: #000000;
    border-radius: 3px !important;
    margin-left: 10px;
    font-weight: 600;
}

.payment-final-buttons-1 .btn-complete {
    background: #000000;
    border-color: #000000;
    color: #fff;
    border-radius: 3px;
    transition: all .4s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.payment-final-buttons-1 .btn-complete i {
    margin-left: 10px;
    font-size: 12px;
}

.payment-final-buttons-1 .btn-complete:hover {
    background: var(--main-color2);
    border-color: var(--main-color2);
}

.payment-cart-summary-1 .summary tfoot th {
    border-top: 0;
    border-bottom: 1px solid #e9e9e9;
    margin-bottom: 20px;
    padding-bottom: 10px;
    padding-top: 10px;
    font-weight: 600;
    color: var(--main-color);
    align-content: center;
}

.cart-body a.remove-vocuher {
    margin-left: 5px;
    color: #ffffff;
    background: #000000;
    padding: 5px;
    border-radius: 50%;
    display: inline-flex;
    width: 25px;
    height: 25px;
    justify-content: center;
    align-items: center;
}

.payment-cart-summary-1 .summary tfoot .final {
    font-size: 16px;
}

.payment-cart-summary-1 .summary tfoot th:last-child {
    align-content: center;
}

.cart-body .p-g-mod-base-content {
    border: 0;
}

.pattern-group .p-g-mod-t-37 .p-g-mod-header .p-g-m-h-info .p-g-m-h-i-title {
    font-size: 16px;
}

.cart-body .col-list:nth-child(2) .p-g-b-c-wrapper .p-g-b-c-inner {
    background-color: #fff;
    padding: 24px;
    border-radius: 3px;
}

.cart-body .sticky-sidebar-992-2 .p-g-b-c-1 .p-g-b-c-wrapper {
    position: sticky;
    top: 0;
}

.cart-body .shopping-cart-1 .table thead th {
    border-bottom: 0;
    border-top: 0;
    font-size: 16px;
    color: var(--main-color);
    padding-left: 0;
    padding-right: 0;
}

.cart-body button.btn-remove {
    border: 1px solid #e43131;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e43131;
    margin-left: 20px;
    font-size: 16px;
    transition: all .4s;
}

.cart-body button.btn-remove:hover {
    background-color: #e43131;
    color: #ffffff;
}

.cart-body a.btn-continue {
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    margin-top: 10px;
}

.cart-body a.btn-continue:hover {
    color: var(--main-color2);
}

.cart-body .shopping-cart-1 .td-product .product .image {
    margin-right: 15px;
    border: 1px solid #ebebeb;
    border-radius: 3px;
}

.cart-body .shopping-cart-1 .td-product {
    font-size: 14px;
    font-weight: 600;
    border-top: 1px solid #e9e9e9;
    padding: 15px 0;
    color: #a0a0a0;
}

.shopping-cart-1 .td-price .old-value,
.shopping-cart-1 .td-total-price .old-value {
    color: #a0a0a0;
    font-size: 13px;
    font-weight: 600;
}

.shopping-cart-1 .td-price,
.shopping-cart-1 .td-total-price .td-price {
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    padding: 5px 20px;
    min-width: 160px;
}

/* Btn Hover Effect */
.special-btn {
    display: inline-block;
    background-color: #fff;
    color: #000;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: color 0.3s ease;
    border: 0;
    margin-top: 20px;
}

.special-btn::before {
    content: "";
    position: absolute;
    bottom: -50%;
    width: 110%;
    height: 100%;
    transform-origin: center bottom;
    transform: skewY(9.3deg) scaleY(0);
    transition: transform 600ms cubic-bezier(0.48, 0, 0.12, 1);
    background-color: var(--main-color2);
    z-index: -1;
    left: -10px;
}

.special-btn::after {
    content: "\ea70";
    font-family: "coreicon";
}

.special-btn:hover::before {
    transform-origin: center bottom;
    transform: skewY(9.3deg) scaleY(2);
}

.special-btn:hover {
    color: #fff;
}

/* Category Card */

.card-category .image {
    background: #f5f4f0;
}

.p-g-mod-t-52 .card-category,
.p-g-mod-t-70 .card-category {
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.p-g-mod-t-52 .card-category .image img,
.p-g-mod-t-70 .card-category .image img {
    transition: all .4s ease;
}

.p-g-mod-t-52 .card-category:hover .image img,
.p-g-mod-t-70 .card-category:hover .image img {
    transform: scale(1.1);
}

.p-g-mod-t-52 .card-category .title,
.p-g-mod-t-70 .card-category .title {
    position: absolute;
    bottom: 20px;
    color: var(--main-color);
    font-size: 13px;
    font-weight: 600;
    min-width: 50%;
    max-width: 85%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #ffffff;
    margin: 0 auto;
    border-radius: 50px;
    padding: 5px 15px;
    transition: all .4s ease;
}

.p-g-mod-t-52 .card-category .title:hover,
.p-g-mod-t-70 .card-category .title:hover {
    box-shadow: 0 1.5px 10px -0.6px #372b2bc3;
    transform: translateY(-7px);
    background-color: var(--main-color2);
    color: #ffffff;
}

.p-g-mod-t-52 .card-category .title:after,
.p-g-mod-t-70 .card-category .title:after {
    content: "\ea70";
    font-family: 'coreicon';
    margin-left: 5px;
    font-size: 16px;
    margin-bottom: -1px;
}

/* Footer */
.pattern-group .p-g-mod.p-g-mod-t-29 {
    padding: 0 10px;
}

.footer-link {
    background: #3c3d3f;
    color: #f1f1f1;
    padding: 50px 0 35px;
    border-radius: 30px 30px 0 0;
    font-size: 14px;
}

.footer-link .container {
    max-width: 1240px;
    box-sizing: border-box;
}

.footer-link a:not(.footer-social a) {
    position: relative;
    text-decoration: none;
    color: inherit;
    transition: color .2s ease;
}

.footer-link a:not(.footer-social a):not(.footer-logo) {
    position: relative;
    text-decoration: none;
    color: inherit;
    transition: color .2s ease;
}

.footer-link a:not(.footer-social a):not(.footer-logo)::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -4px;
    width: 0;
    height: 1px;
    background: currentColor;
    transform: translateX(-50%);
    transition: width .25s ease;
    opacity: .6;
}

.footer-link a:not(.footer-social a):not(.footer-logo):hover {
    color: #fff;
}

.footer-link a:not(.footer-social a):not(.footer-logo):hover::after {
    width: 100%;
    opacity: 1;
}

.footer-social a {
    position: static;
    overflow: hidden;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    border: none;
    background: rgba(255, 255, 255, .08);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: background .25s ease, transform .2s ease;
}

.footer-social a::after {
    display: none;
}

.footer-social a:hover {
    background: #fff;
    color: #050505;
    transform: translateY(-2px);
}

.footer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-logo img {
    height: 48px;
}

.footer-nav {
    display: flex;
    align-items: center;
    gap: 40px;
}

.footer-nav a {
    color: #fff;
    font-size: 1.3rem;
    font-weight: 600;
}

.footer-social {
    display: flex;
    gap: 14px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255, 255, 255, .4);
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.footer-contact-pill {
    position: relative;
    margin: 40px auto;
    max-width: 520px;
    background: #4b4c4e;
    border: 1px solid rgba(255, 255, 255, .25);
    border-radius: 40px;
    padding: 30px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.footer-contact-pill a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
}

.footer-contact-pill .divider {
    width: 1px;
    height: 26px;
    background: rgba(255, 255, 255, .35);
}

.footer-contact-pill::before,
.footer-contact-pill::after {
    content: "";
    position: absolute;
    top: 50%;
    width: calc(50vw - 50% - 40px);
    max-width: 200px;
    height: 1px;
    background: rgba(255, 255, 255, .35);
    transform: translateY(-50%);
}

.footer-contact-pill::before {
    right: calc(100% + 25px);
}

.footer-contact-pill::after {
    left: calc(100% + 25px);
}


/* Mobile */

header.mobile {
    display: none;
    background: #fff;
    height: 60px;
    box-shadow: 0 1px 1px rgba(0, 0, 0, .2);
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
}

header.mobile .left {
    width: 20%;
    float: left;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    height: 100%;
    box-sizing: border-box;
    padding: 5px;
}

header.mobile .center {
    width: 30%;
    float: left;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

header.mobile .right {
    width: 50%;
    float: left;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 100%;
    box-sizing: border-box;
}

header.mobile .logo img {
    max-height: 55px;
}

header.mobile .icon-group {
    position: relative;
}

header.mobile .icon-group {
    position: relative;
    color: #000;
    font-size: 21px;
    margin-left: 3px;
}

header.mobile .icon-group .badge {
    position: absolute;
    top: -10px;
    right: -10px;
    min-width: 18px;
    max-width: 25px;
    padding: 0;
    text-align: center;
    height: 18px;
    background: #000000;
    font-size: 12px;
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

header.mobile .mobile-search {
    padding: 0;
    background: #f3f3f3;
}

header.mobile .mobile-search form {
    width: 100%;
}

header.mobile .mobile-search form .input-box {
    width: 80%;
}

header.mobile .mobile-search form input {
    float: left;
    color: #444;
    width: 100%;
    font-size: 15px;
    border-color: transparent;
    background: transparent !important;
    height: 65px;
    border-right: 0;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    box-shadow: none;
    outline: 0 !important
}

header.mobile .mobile-search form input::placeholder {
    color: #444;
}

header.mobile .mobile-search form input:focus,
header.mobile .mobile-search form input:hover {
    border-color: transparent !important;
}

header.mobile .mobile-search form .btn-send {
    float: right;
    width: 20%;
    height: 65px;
    border: 0;
    background: transparent !important;
    color: #333;
    font-size: 19px;
}

header.mobile .h-banner {
    width: 100%;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Sidebar User */
.sidebar-user {
    background: #fff;
    width: 250px;
    position: fixed;
    top: 0;
    height: calc(100vh);
    transition: all .3s;
    z-index: 21;
    right: 0;
    margin-right: -250px;
}

.sidebar-user.active {
    margin-right: 0;
}

.sidebar-user .title {
    background: #f7f7f7;
    display: flex;
    justify-content: space-between;
    padding: 10px 20px;
    align-items: center;
    border-bottom: 1px solid #eee;
}

.sidebar-user .title span {
    font-size: 16px;
    padding: 5px 0;
    font-weight: 500;
}

.sidebar-user .title .btn-close {
    line-height: normal;
    font-size: 18px;
    color: #555;
}

.sidebar-user .login-menu a {
    display: block;
    padding: 10px;
    border-bottom: 1px solid #eaeaea;
    color: #333;
    font-size: 14px;
    font-weight: 500;
}

.sidebar-user .login-menu a i {
    width: 30px;
    margin-right: 10px;
    text-align: left;
}

.sidebar-user .scrollbar {
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    padding-bottom: 100px;
    overflow-x: hidden;
    overflow-y: scroll;
}

.sidebar-user .title-alt {
    padding: 10px;
    background: rgba(0, 0, 0, .05);
    font-size: 14px;
    font-weight: 500;
}

.sidebar-user .footer-links ul {
    margin: 0;
    padding: 0;
}

.sidebar-user .footer-links ul li {
    padding: 0;
    list-style: none;
}

.sidebar-user .footer-links ul li a {
    display: block;
    padding: 10px;
    border-bottom: 1px solid #eaeaea;
    color: #333;
    font-size: 14px;
}

.sidebar-user .footer-links ul li a.wp i {
    color: #21bd5c;
}

.sidebar-user .footer-links ul li a i {
    text-align: center;
    width: 40px;
    font-size: 16px;
}

/* Sidebar Menu */
.sidebar-menu {
    background: #fff;
    width: 250px;
    position: fixed;
    top: 0;
    height: calc(100vh);
    transition: all .3s;
    z-index: 9999;
    left: 0;
    margin-left: -250px;
}

.sidebar-menu.active {
    margin-left: 0;
}

.sidebar-menu .scrollbar {
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    padding-bottom: 100px;
    overflow-x: hidden;
    overflow-y: scroll;
}

.sidebar-menu .title {
    padding: 10px;
    background: #333;
    color: #fff;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
}

.sidebar-menu .title .btn-close {
    color: #fff;
}

.sidebar-menu .title-alt {
    padding: 10px;
    background: rgba(0, 0, 0, .15);
    font-size: 14px;
    font-weight: 500;
}

.sidebar-menu .links a {
    display: block;
    display: block;
    padding: 10px;
    border-bottom: 1px solid #eaeaea;
    color: #333;
    font-size: 14px;
}

.sidebar-menu .links a i {
    float: right;
}

.sidebar-menu .categories {
    /*display: none;*/
}

.sidebar-menu .categories ul {
    margin: 0;
    padding: 0;
}

.sidebar-menu .categories ul li {
    padding: 0;
    list-style: none;
}

.sidebar-menu .categories ul li a {
    display: block;
    padding: 10px;
    border-bottom: 1px solid #eaeaea;
    color: #333;
    font-size: 15px;
    font-weight: 500;
}

.sidebar-menu .categories ul li a .name {
    width: 80%;
}

.sidebar-menu .categories ul li a .icon {
    color: #777;
    width: 20px;
    height: 20px;
    text-align: center;
    border-radius: 2px;
    font-size: 18px;
}

.sidebar-menu .categories ul .multi {
    display: none;
}

.sidebar-menu .categories ul .multi a {
    padding-left: 20px;
}

.sidebar-menu .categories ul .multi .multi a {
    padding-left: 40px;
}

.sidebar-menu .categories ul .multi .multi .multi a {
    padding-left: 60px;
}

/* Mobile Menu Tip 2 */

.sidebar-menu-type-2 {
    background: #fff;
    width: 100%;
    position: fixed;
    top: 0;
    height: calc(100vh);
    transition: all .3s;
    z-index: 9999;
    left: 0;
    margin-left: -100%;
}

.sidebar-menu-type-2.active {
    margin-left: 0;
}

.sidebar-menu-type-2 .scrollbar {
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    padding-bottom: 100px;
    overflow-x: hidden;
    overflow-y: scroll;
}

.sidebar-menu-type-2 .title {
    padding: 10px;
    background: #333;
    color: #fff;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
}

.sidebar-menu-type-2 .title .btn-close {
    color: #fff;
}

.sidebar-menu-type-2 .title-alt {
    padding: 10px;
    background: rgba(0, 0, 0, .15);
    font-size: 14px;
    font-weight: 500;
}

.sidebar-menu-type-2 .links a {
    display: block;
    display: block;
    padding: 10px;
    border-bottom: 1px solid #eaeaea;
    color: #333;
    font-size: 14px;
}

.sidebar-menu-type-2 .links a i {
    float: right;
}

.sidebar-menu-type-2 .categories {
    /*display: none;*/
}

.sidebar-menu-type-2 .categories ul {
    margin: 0;
    padding: 10px;
}

.sidebar-menu-type-2 .categories ul li {
    padding: 0;
    list-style: none;
    border: 1px solid #e2e2e2;
    margin-bottom: 15px;
    position: relative;
}

.sidebar-menu-type-2 .categories ul li a img {
    height: 35px;
    margin-right: 10px;
}

.sidebar-menu-type-2 .categories ul li a {
    display: flex;
    padding: 15px 10px;
    border-bottom: 0;
    color: #000;
    font-size: 14px;
    font-weight: 400;
    align-items: center;
}

.sidebar-menu-type-2 .categories ul li a .name {
    width: 80%;
}

.sidebar-menu-type-2 .categories ul li a .icon {
    color: #000;
    width: 20px;
    height: 20px;
    text-align: center;
    border-radius: 2px;
    font-size: 17px;
    position: absolute;
    right: 22px;
}

.sidebar-menu-type-2 .categories .multi li a .icon {
    right: 13px;
}

.sidebar-menu-type-2 .easy-autocomplete-container ul {
    border-top: 1px solid #ebebeb;
    top: 65px;
}

.sidebar-menu-type-2 .categories ul li a .icon .fa-angle-right:before {
    content: "\f078";
}

.sidebar-menu-type-2 .categories .multi .icon .fa-angle-right:before {
    content: "\f078";
}

.sidebar-menu-type-2 .categories ul .multi {
    display: none;
}

.sidebar-menu-type-2 .categories ul .multi li:first-child {
    display: none;
}

.sidebar-menu-type-2 .categories ul .multi a {
    padding-left: 20px;
}

.sidebar-menu-type-2 .categories .multi li {
    border: 0 !important;
    margin-bottom: 5px;
}

.sidebar-menu-type-2 .categories ul .multi a {
    padding: 0;
}

.sidebar-menu-type-2 .categories ul .multi .multi a {
    padding-left: 20px;
    font-size: 12px;
}

.sidebar-menu-type-2 .mobile-search i {
    font-size: 25px;
    margin-right: 10px;
}

.sidebar-menu-type-2 .mobil-area-title {
    color: #000;
    margin: 15px 10px 10px 13px;
    display: block;
    font-weight: 500;
    font-size: 15px;
}

.sidebar-menu-type-2 .mobil-area-1 {
    display: flex;
    position: relative;
    text-align: center;
}

.sidebar-menu-type-2 .mobil-area-1 a {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 50%;
    justify-content: center;
    border: 1px solid #e2e2e2;
    margin: 0 10px;
    padding: 7px 16px;
    color: #000;
    text-align: left;
    font-size: 13px;
    font-weight: 600;
}

.sidebar-menu-type-2 .mobil-area-1 a img {
    margin-right: 10px;
    padding: 0;
    width: 41px;
    height: 41px;
}

.sidebar-menu-type-2 .logo-area a img {
    height: 45px;
    max-width: 250px;
}

.sidebar-menu-type-2 .logo-area {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #e2e2e2;
    padding: 10px;
}

.mobile-menu-close {
    display: flex;
    justify-content: center;
    margin-right: 19px;
    font-size: 20px;
    align-items: center;
}

.mobile-menu-close i {
    border: 1px solid #e2e2e2;
    padding: 8px;
    border-radius: 50%;
    height: 40px;
    width: 40px;
    text-align: center;
    color: #e2e2e2;
    padding-top: 10px;
    padding-left: 9px;
}

.mobil-area-2 {
    margin: 16px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
}

.sidebar-menu-type-2 .short-link {
    width: 50%;
    padding: 15px 10px;
}

.sidebar-menu-type-2 .short-link.border-1 {
    border-bottom: 1px solid #e2e2e2;
    border-right: 1px solid #e2e2e2;
}

.sidebar-menu-type-2 .short-link.border-2 {
    border-bottom: 1px solid #e2e2e2;
}

.sidebar-menu-type-2 .short-link.border-3 {
    border-right: 1px solid #e2e2e2;
}

.sidebar-menu-type-2 .short-link a {
    color: #000;
    font-size: 13px;
    font-weight: 400;
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
}

.sidebar-menu-type-2 .short-link a i {
    margin-right: 10px;
    font-size: 20px;
}

.mobil-area-footer {
    text-align: center;
    color: #000;
}

.sidebar-menu-type-2 .scrollbar {
    width: 100%;
    height: 90%;
    box-sizing: border-box;
    padding-bottom: 0;
    overflow-x: hidden;
    overflow-y: scroll;
}

.mobil-filtre-btn {
    display: none;
}

/* Login Body */
.login-body {
    background: #fff;
}

.login-body .p-g-mod-body {
    margin: 0 auto;
    padding: 0 20px;
}

.login-body .nav-tabs {
    border: none;
    display: flex;
    gap: 0;
    margin-bottom: 40px;
    background: #f5f5f5;
    border-radius: 50px;
    padding: 6px;
}

.login-body .nav-tabs .nav-item {
    flex: 1;
}

.login-body .nav-tabs .nav-link {
    border: none;
    background: transparent;
    color: #666;
    font-size: 15px;
    font-weight: 500;
    text-align: center;
    padding: 14px 28px;
    border-radius: 50px;
    transition: all 0.3s ease;
    margin: 0 !important;
}

.login-body .nav-tabs .nav-link:hover {
    color: #000;
    background: rgba(0, 0, 0, 0.05);
}

.login-body .nav-tabs .nav-link.active {
    background: #000;
    color: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.login-body .tab-content {
    padding: 0;
}

.login-body label {
    font-size: 14px;
    font-weight: 500;
    color: #333;
    margin-bottom: 8px;
    display: block;
}

.login-body .form-control,
.login-body .m-input {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 14px 18px;
    font-size: 15px;
    transition: all 0.3s ease;
    background: #fff;
    width: 100%;
}

.login-body .form-control:focus,
.login-body .m-input:focus {
    border-color: #000;
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.05);
}

.login-body .form-control::placeholder,
.login-body .m-input::placeholder {
    color: #aaa;
}

.login-body .btn {
    width: 100%;
    padding: 16px 24px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    border: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.login-body .btn-success {
    background: #000;
    color: #fff;
}

.login-body .btn-success:hover {
    background: #333;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.login-body .text-center {
    margin-top: 20px;
}

.login-body .text-center a {
    color: #666;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.login-body .text-center a:hover {
    color: #000;
}

.login-body .alert {
    border-radius: 8px;
    padding: 16px 20px;
    font-size: 14px;
    border: none;
    margin-bottom: 24px;
}

.login-body .alert-info {
    background: #f0f7ff;
    color: #0066cc;
}

.login-body .register_description {
    margin-bottom: 24px;
}

.login-body .row {
    margin-left: -8px;
    margin-right: -8px;
}

.login-body .row>[class*="col-"] {
    padding-left: 8px;
    padding-right: 8px;
}

.login-body .d-flex {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}

.login-body .d-flex label {
    margin-bottom: 0;
    font-weight: 400;
    font-size: 13px;
    line-height: 1.5;
}

.login-body .ibutton,
.login-body input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    cursor: pointer;
    flex-shrink: 0;
}

.login-body .d-flex a {
    color: #000;
    text-decoration: underline;
    font-weight: 500;
}

.login-body .d-flex a:hover {
    color: #666;
}

.login-body .text-danger {
    color: #e74c3c;
}

.login-body .mt-3 {
    margin-top: 20px;
}

.login-body .mb-2 {
    margin-bottom: 16px;
}

.login-body .mb-3 {
    margin-bottom: 24px;
}

/* Phone Input Styling */
.login-body .iti {
    width: 100%;
}

.login-body .iti__flag-container {
    border-right: 1px solid #e0e0e0;
}

.login-body .form-phone-control {
    padding-left: 90px;
}

/* Responsive */
@media (max-width: 768px) {
    .login-body {
        padding: 40px 0;
    }

    .login-body .p-g-mod-body {
        padding: 0 15px;
    }

    .login-body .nav-tabs .nav-link {
        font-size: 14px;
        padding: 12px 20px;
    }

    .login-body .row>[class*="col-"] {
        margin-bottom: 16px;
    }
}

/* Smooth Animations */
.login-body .tab-pane {
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1280px) {

    header .header-wrapper {
        gap: 10px;
    }

    .header-wrapper .mega-menu .navbar-nav .nav-item .nav-link {
        font-size: 12px;
        padding: 15px 6px;
    }

    header .header-logo img {
        height: 30px;
    }

    .footer-line-wrapper .social-media .d-flex {
        flex-wrap: wrap;
    }

    .footer-line-wrapper .social-media a {
        margin-bottom: 10px;
    }

}

@media (max-width: 1200px) {
    .p-g-mod-t-45 .carousel-caption h5 {
        font-size: 2rem;
    }

    .p-g-mod-t-45 .carousel-caption p {
        font-size: 1.5rem;
    }

    .p-g-mod-t-52 .card-category .title,
    .p-g-mod-t-70 .card-category .title {
        font-size: 12px;
        min-width: 60%;
        max-width: 90%;
    }

    header .header-actions .action-wrapper {
        gap: 10px;
    }

    .footer-line-wrapper .social-media .description,
    .footer-line-wrapper .newsletter-content .newsletter-description {
        margin-bottom: 15px;
        font-size: 13px;
    }

    .footer-line-wrapper .social-media a i {
        font-size: 18px;
        width: 32px;
        height: 32px;
    }

    .footer-line-wrapper .newsletter-content,
    .footer-line-wrapper .social-media,
    .footer-line-wrapper .contact-info {
        min-height: 260px;
    }

    .footer-line-wrapper .newsletter-content .newsletter-title,
    .footer-line-wrapper .social-media .title,
    .footer-line-wrapper .contact-info .title {
        font-size: 17px;
    }

    .pattern-group .p-g-mod-t-cat-filter .p-g-mod-header .p-g-m-h-info .p-g-m-h-i-title {
        font-size: 14px !important;
    }

    .pattern-group .p-g-mod-t-cat-filter {
        padding: 10px;
    }

    .card-product .all-labels .discount,
    .card-product .all-labels .new-label {
        min-width: 45px;
        font-size: 13px;
        width: 45px;
    }

    .card-product .buttons-wrapper.right-to-left a {
        width: 35px;
        height: 35px;
        font-size: 17px;
    }

    [data-custom-tooltip]:before {
        padding: 4px 8px;
        font-size: 12px;
    }

    .card-product .buttons-wrapper.down-to-top .button-group a {
        padding: 5px;
        font-size: 13px;
    }

    .card-product .card-product-inner .title {
        font-size: 13px;
        line-height: 18px;
        max-height: 40px;
    }

    .card-product .sale-price-basket {
        font-size: 13px;
    }

    .card-product .sale-price-basket .sale-price {
        font-size: 15px;
    }

    .card-product .card-product-inner .price-group .prices .list-price {
        font-size: 14px;
    }

    .card-product .card-product-inner .price-group .prices .sale-price {
        font-size: 15px;
    }

    .footer-info-area .item .info .title {
        font-size: 16px;
        line-height: 18px;
    }

    .product-body .p-g-b-c-1 .product-profile-1 {
        padding: 30px;
    }

    .product-buttons .btn-all-combines,
    .product-buttons .btn-cart {
        font-size: 13px;
        margin: 5px;
    }

    .product-profile-1 .product-quantity {
        margin: 5px 0;
    }

    .product-buttons .product-favourite a i {
        margin: 5px;
    }

    .product-buttons .btn-fast-buy {
        margin-top: 10px;
    }

    .product-quantity .btn {
        width: 36px;
    }

    .product-customer-actions .action .button {
        padding: 5px;
        font-size: 13px;
        margin-right: 12px;
    }

    .product-customer-actions .action .button i {
        font-size: 17px;
    }

    .pattern-group .p-g-tab-wrapper .p-g-t-nav .nav .nav-item .nav-link {
        font-size: 14px;
    }

    .product-badges .p-badge .content .title {
        font-size: 14px;
    }

    .product-badges .p-badge .content .description {
        font-size: 13px;
    }

    .product-badges .p-badge i {
        font-size: 24px;
        margin-right: 17px;
    }

    .product-badges .p-badge {
        padding: 20px;
    }

    .pattern-group .p-g-mod .p-g-mod-header .p-g-m-h-info .p-g-m-h-i-title {
        font-size: 22px;
    }

    .p-g-mod-t-45 .carousel-caption p {
        font-size: 30px;
    }

}

@media (max-width: 991px) {
    .p-g-mod-t-44 .banner-item .banner-special-content .title {
        font-size: 1rem;
    }

    .categories-body .category-filter-list {
        padding: 10px 0;
    }

    .product-body .pattern-group .p-g-tab-wrapper .p-g-t-nav .nav {
        flex-direction: column;
    }

    .header {
        display: none;
    }

    .two-banner .row .col-list-p-v-1:nth-child(1),
    .two-banner .row .col-list-p-v-1:nth-child(2),
    .two-banner .row .col-list-p-v-1:nth-child(3),
    .two-banner .row .col-list-p-v-1:nth-child(4) {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .categories-body .mobil-filtre .col-list:first-child .pattern-group-header {
        padding: 15px 10px;
        display: flex;
        flex-direction: row-reverse;
        border-bottom: 1px solid #ebebeb;
        position: sticky;
        top: 0;
        right: 0;
        left: 0;
        z-index: 9;
        background: #fff;
    }

    .categories-body .mobil-filtre .col-list:first-child .pattern-group-header .p-g-h-icon {
        width: auto;
        font-size: 20px;
        margin-right: 3px;
    }

    .categories-body .mobil-filtre .mobil-filtre-btn {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 10px;
        position: sticky;
        top: 0;
        right: 0;
        left: 0;
        background: #fff;
        border-bottom: 1px solid #ebebeb;
        z-index: 9;
    }

    .categories-body .mobil-filtre .close-mobile-filter {
        font-size: 17px;
        margin-right: 5px;
    }

    .categories-body .mobil-filtre .col-list:first-child {
        border: 0;
        border-radius: 0;
        background-color: #fff;
        width: 100%;
        right: -100%;
        top: 0;
        position: fixed;
        border-radius: 0;
        -webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.05);
        -moz-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.05);
        box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.05);
        margin-top: 0 !important;
        padding-top: 0 !important;
        padding-bottom: 0;
        height: 100%;
        z-index: 99999;
        transition: all .4s;
        display: flex;
        flex-direction: column;
        overflow: auto;
        display: block !important;
    }

    .categories-body .mobil-filtre .col-list:first-child.active {
        opacity: 1;
        right: 0;
        transition: all .4s;
    }

    .cat-responsive-buttons .dropdown-menu .lag-checkbox.checked {
        background: #e5e5e5;
        font-weight: 500;
    }

    .cat-responsive-buttons .dropdown-menu .lag-checkbox label {
        padding-left: 20px;
        position: relative;
        z-index: 2;
        cursor: pointer;
        margin-bottom: 0;
        font-size: 14px;
    }

    .cat-responsive-buttons .dropdown-menu {
        border: 0;
        background-color: #f4f4f4;
        position: relative;
        border-top: 1px solid #d8d8d8;
        transition: opacity .2s;
        padding-top: 0;
    }

    .cat-responsive-buttons .dropdown-menu:after {
        content: '';
        width: 0px;
        height: 0px;
        position: absolute;
        top: -7px;
        right: 50%;
        border-left: 7px solid transparent;
        border-right: 7px solid transparent;
        border-bottom: 7px solid #e5e5e5;
    }

    .cat-responsive-buttons .mobile-filter-btn {
        border-right: 1px solid #e5e5e5;
        margin-right: 20px;
        padding-right: 30px;
    }

    .cat-responsive-buttons .btn {
        font-size: 15px;
    }

    .cat-responsive-buttons {
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 10px 0;
        background-color: #fff;
        padding: 14px 0;
        border-radius: 7px;
    }

    .mobile-header-space {
        display: block;
        height: 30px;
    }

    .product-body .mobile-header-space,
    .categories-body .mobile-header-space,
    .cart-body .mobile-header-space {
        height: 0;
    }

    header.desktop {
        display: none;
    }

    header.mobile {
        display: block;
    }
}


@media (max-width: 768px) {

    .footer-contact-pill::before,
    .footer-contact-pill::after {
        display: none;
    }
}

.footer-bottom {
    padding-top: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-bottom-links {
    display: flex;
    gap: 25px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, .8);
}

.footer-credit {
    font-size: 16px;
    text-transform: lowercase;
}

@media (max-width: 768px) {
    .footer-top {
        flex-direction: column;
        text-align: center;
    }

    .footer-nav {
        flex-direction: column;
        gap: 15px;
    }

    .footer-contact-pill {
        flex-direction: column;
        max-width: 100%;
    }

    .footer-contact-pill .divider {
        display: none;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}