@import url("https://fonts.googleapis.com/css2?family=Cairo:wght@400;600;700&display=swap");


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

:root {
    --main-color: #146434;
    --tow-main-color: #d49c2c;
    --three-main-color: #c09844;
    --box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}


/* Scroll to Top Button */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--tow-main-color);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 5px 20px rgba(139, 69, 19, 0.3);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(139, 69, 19, 0.4);
}

.scroll-top:active {
    transform: translateY(-2px);
}


.demo-container {
    backdrop-filter: blur(10px);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}


.lang-btn-4 {
    background: white;
    border: 3px solid var(--tow-main-color);
    padding: 4px 13px;
    border-radius: 50px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.lang-option {
    padding: 3px 6px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 12px;
    transition: all 0.3s ease;
    color: var(--tow-main-color);
}

.lang-option.active {
    background: var(--tow-main-color);
    color: white;
    box-shadow: 0 4px 10px rgba(102, 126, 234, 0.4);
}

.lang-btn-4:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

::-webkit-scrollbar {
    width: 6px;
}

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

::-webkit-scrollbar-thumb {
    background-color: var(--three-main-color);
    border-radius: 6px;
    border: 1px solid #f0f0f0;
}

a {
    text-decoration: none;
}

ul li {
    list-style: none;
}

body {
    direction: rtl;
    font-family: "Cairo", sans-serif;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.cart_main img {
    width: 28px;
    height: 25px;
    cursor: pointer;
}

.header {
    background: #fff;
    box-shadow: var(--box-shadow);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}


.navbar-brand img {
    width: 100%;
    height: 50px;
}

.main-nav .nav-link {
    color: #000;
    font-weight: 500;
    margin: 0 10px;
}

.main-nav .nav-link.active {
    font-weight: 700;
}

.pages-link {
    display: flex;
    align-items: center;
    gap: 6px;
}

.pages-link i {
    font-size: 12px;
}

.custom-dropdown {
    border-radius: 8px;
    margin-top: 10px;
}


.main-nav {
    gap: 0.5rem;
}

.main-nav .nav-item {
    position: relative;
}

.main-nav .nav-link {
    position: relative;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
    font-weight: 500;
}

.main-nav .nav-link:hover {
    transform: translateY(-2px);
}

.main-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 50%;
    width: 0;
    height: 2px;
    background: #fff;
    transition: all 0.3s ease;
    transform: translateX(50%);
}

.main-nav .nav-link:hover::after {
    width: 80%;
}

.main-nav .nav-link::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 50%;
    width: 0;
    height: 0;
    border-radius: 8px;
    transition: all 0.3s ease;
    transform: translate(50%, -50%);
    z-index: -1;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

.main-nav .nav-link:hover::before {
    width: 100%;
    height: 100%;
}

.dropdown-menu.custom-dropdown {
    border: none;
    box-shadow: var(--box-shadow);
    padding: 0.5rem 0;
    margin-top: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    background-color: #fff;
}

.nav-item.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.custom-dropdown .dropdown-item {
    padding: 0.7rem 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-align: start;
}

.custom-dropdown .dropdown-item::before {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 3px;
    height: 0;
    background: var(--tow-main-color);
    transition: height 0.3s ease;
}

.custom-dropdown .dropdown-item:hover {
    /* background: rgba(0, 123, 255, 0.05); */
    padding-right: 2rem;
}

.custom-dropdown .dropdown-item:hover::before {
    height: 100%;
}

.pages-link i {
    transition: transform 0.3s ease;
    margin-right: 5px;
}

.nav-item.dropdown:hover .pages-link i {
    transform: rotate(180deg);
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 #fff;
    }

    50% {
        box-shadow: 0 0 0 5px rgba(0, 123, 255, 0);
    }
}

.main-nav .nav-link:hover {
    animation: pulse 1.5s infinite;
}

.nav-item.dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
}


.nav-item .dropdown-toggle::after {
    display: none;
}



@media (max-width: 991.98px) {
    .navbar-collapse {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 280px;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
        transition: right 0.4s ease-in-out;
        z-index: 9999;
        overflow-y: auto;
        padding: 20px;
        background: var(--three-main-color);
    }

    .navbar-collapse.show {
        right: 0;
    }

    .navbar-collapse::after:hover {
        background: #e9ecef;
        transform: rotate(90deg);
    }

    .main-nav {
        margin-top: 50px;
        flex-direction: column;
        gap: 5px;
    }

    .main-nav .nav-item {
        width: 100%;
        border-bottom: 1px solid #f0f0f0;
    }

    .main-nav .nav-link {
        padding: 15px 10px;
        font-size: 16px;
        font-weight: 500;
        transition: all 0.3s ease;
    }

    .main-nav .nav-link:hover {
        background: #f8f9fa;
        padding-right: 20px;
        color: #007bff;
    }

    .dropdown-menu {
        position: static !important;
        transform: none !important;
        border: none;
        box-shadow: none;
        background: #f8f9fa;
        margin: 0;
        padding: 0;
    }

    .dropdown-menu .dropdown-item {
        padding: 12px 20px;
        font-size: 15px;
    }

    .icons {
        margin-top: 30px;
        padding-top: 20px;
        border-top: 2px solid #f0f0f0;
        justify-content: center !important;
    }

    .icons img {
        width: 24px;
        height: 24px;
        cursor: pointer;
        transition: transform 0.3s ease;
    }

    .icons img:hover {
        transform: scale(1.1);
    }
}

.navbar-toggler {
    border: none;
    padding: 5px 10px;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    width: 25px;
    height: 25px;
    color: #fff;
}

.cart_main {
    position: relative;
    cursor: pointer;
}

.cart_main img {
    width: 24px;
    height: 24px;
}

.badge {
    font-size: 10px;
    padding: 2px 5px;
}

.icons img {
    width: 24px;
    height: 24px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.icons img:hover {
    transform: scale(1.1);
}



.login-modal {
    border-radius: 20px;
    border: none;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.login-modal::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shine 3s infinite;
}

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

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

.btn-close-custom {
    position: absolute;
    top: 20px;
    left: 20px;
    background: transparent;
    border: none;
    color: #c0392b;
    font-size: 24px;
    cursor: pointer;
    z-index: 10;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.btn-close-custom:hover {
    transform: rotate(90deg);
    color: #c0392b;
}

.user-icon-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    }
}

.user-icon-circle i {
    font-size: 40px;
    color: #999;
}

.login-title {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 30px;
}

.login-input {
    padding: 14px 18px;
    border: 2px solid #e8e8e8;
    border-radius: 12px;
    font-size: 16px;
    transition: all 0.3s ease;
    text-align: right;
    direction: rtl;
}

.login-input:focus {
    border-color: #c9a875;
    box-shadow: 0 0 0 4px rgba(201, 168, 117, 0.1);
    outline: none;
}

.login-input::placeholder {
    color: #bbb;
    font-size: 14px;
}

.form-label {
    font-size: 15px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
}

.btn-login {
    background: var(--three-main-color);
    color: white;
    padding: 14px 30px;
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(201, 168, 117, 0.3);
    margin-top: 10px;
}

.btn-login:hover {
    background: var(--tow-main-color);
    transform: translateY(-2px);
    color: #fff;
    box-shadow: 0 6px 20px rgba(201, 168, 117, 0.4);
}

.btn-login:active {
    transform: translateY(0);
}

.modal-body {
    padding: 40px 30px !important;
}

.modal.fade .modal-dialog {
    transform: scale(0.8);
    opacity: 0;
    transition: all 0.3s ease;
}

.modal.show .modal-dialog {
    transform: scale(1);
    opacity: 1;
}

.modal-backdrop.show {
    opacity: 0.6;
}

@media (max-width: 576px) {
    .login-modal {
        margin: 20px;
    }

    .modal-body {
        padding: 30px 20px !important;
    }

    .user-icon-circle {
        width: 80px;
        height: 80px;
    }

    .user-icon-circle i {
        font-size: 32px;
    }

    .login-title {
        font-size: 24px;
    }

    .btn-login {
        font-size: 16px;
        padding: 12px 25px;
    }
}


/* search icon */

.search-modal {
    border-radius: 20px;
    border: none;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.btn-close-search {
    position: absolute;
    top: 20px;
    left: 20px;
    border: none;
    color: #c0392b;
    font-size: 22px;
    cursor: pointer;
    z-index: 10;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.btn-close-search:hover {
    transform: rotate(90deg) scale(1.1);
    background: #c0392b;
    color: white;
}

.search-area {
    padding: 40px 30px 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    background: white;
    border-bottom: 2px solid #f0f0f0;
    position: relative;
}

.search-icon-wrapper {
    width: 50px;
    height: 50px;
    background: var(--tow-main-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(201, 168, 117, 0.3);
    animation: searchPulse 2s ease-in-out infinite;
}

@keyframes searchPulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(201, 168, 117, 0.3);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(201, 168, 117, 0.4);
    }
}

.search-icon-wrapper i {
    color: white;
    font-size: 22px;
}

.search-input {
    flex: 1;
    border: none;
    padding: 15px 20px;
    font-size: 18px;
    background: #f8f9fa;
    border-radius: 12px;
    outline: none;
    transition: all 0.3s ease;
    direction: rtl;
    text-align: right;
}

.search-input:focus {
    background: white;
    box-shadow: 0 0 0 3px rgba(201, 168, 117, 0.1);
}

.search-input::placeholder {
    color: #999;
    font-size: 16px;
}

.search-btn {
    background: var(--tow-main-color);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(201, 168, 117, 0.3);
    flex-shrink: 0;
}

.search-btn:hover {
    background: linear-gradient(135deg, #b8935f 0%, #a77d4a 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201, 168, 117, 0.4);
}

.search-btn i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.search-btn:hover i {
    transform: translateX(-3px);
}

.search-suggestions {
    padding: 30px;
    background: white;
}

.suggestions-title {
    font-size: 14px;
    font-weight: 600;
    color: #666;
    margin-bottom: 15px;
    text-align: right;
}

.suggestions-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    direction: rtl;
}

.suggestion-tag {
    display: inline-block;
    padding: 8px 16px;
    background: #f8f9fa;
    border: 1px solid #e8e8e8;
    border-radius: 20px;
    font-size: 14px;
    color: #555;
    cursor: pointer;
    transition: all 0.3s ease;
}

.suggestion-tag:hover {
    background: linear-gradient(135deg, #c9a875 0%, #b8935f 100%);
    color: white;
    border-color: #c9a875;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(201, 168, 117, 0.3);
}

.search-results {
    max-height: 300px;
    overflow-y: auto;
    padding: 20px 30px;
    background: white;
}

.result-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
    direction: rtl;
}

.result-item:hover {
    background: #f8f9fa;
    transform: translateX(-5px);
}

.result-img {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    overflow: hidden;
    background: #f0f0f0;
    flex-shrink: 0;
}

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

.result-info {
    flex: 1;
    text-align: right;
}

.result-info h6 {
    margin: 0 0 5px 0;
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
}

.result-price {
    margin: 0;
    font-size: 14px;
    color: #c9a875;
    font-weight: 600;
}

.modal.fade .modal-dialog {
    transform: translateY(-100px);
    opacity: 0;
    transition: all 0.4s ease;
}

.modal.show .modal-dialog {
    transform: translateY(0);
    opacity: 1;
}

.search-results::-webkit-scrollbar {
    width: 6px;
}

.search-results::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.search-results::-webkit-scrollbar-thumb {
    background: #c9a875;
    border-radius: 10px;
}

.search-results::-webkit-scrollbar-thumb:hover {
    background: #b8935f;
}

@media (max-width: 768px) {
    .search-area {
        padding: 30px 20px 20px;
        flex-wrap: wrap;
    }

    .search-icon-wrapper {
        width: 45px;
        height: 45px;
    }

    .search-icon-wrapper i {
        font-size: 18px;
    }

    .search-input {
        width: 100%;
        font-size: 16px;
        padding: 12px 15px;
    }

    .search-btn {
        width: 100%;
        justify-content: center;
        padding: 12px 25px;
    }

    .search-suggestions {
        padding: 20px;
    }

    .suggestions-list {
        gap: 8px;
    }

    .suggestion-tag {
        font-size: 13px;
        padding: 6px 12px;
    }

    .search-results {
        padding: 15px 20px;
    }
}



/* banner slider-container */
.slider-container {
    position: relative;
    width: 100%;
    height: 100vh;
    max-height: 100vh;
    overflow: hidden;
    background-image: url(../img/aa.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-container img {
    max-height: 100%;
    width: auto;
    object-fit: cover;
}

.slide-content {
    max-height: 90%;
    overflow: hidden;
    padding: 20px;
}

.slide-item {
    display: flex !important;
    align-items: center;
    min-height: 100px;
}

.slide-image {
    flex: 1;
    height: 500px;
}

.slide-image img {
    width: 100%;
    height: 100%;
    padding: 30px;
    object-fit: cover;
}

.slide-content {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.slide-title {
    font-size: 60px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 30px;
}

.slide-description {
    font-size: 18px;
    color: #718096;
    line-height: 1.8;
    margin-bottom: 30px;
}

.slide-button {
    display: inline-block;
    background: var(--tow-main-color);
    color: white;
    padding: 16px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    width: max-content;
    box-shadow: var(--box-shadow);
}

.slide-button:hover {
    transform: translateY(-3px);
}

/* Slick Arrows Custom Style */
.slick-prev,
.slick-next {
    width: 50px;
    height: 50px;
    z-index: 100;
}

.slick-prev {
    right: 25px;
    left: auto;
}

.slick-next {
    left: 25px;
    right: auto;
}

.slick-prev:before,
.slick-next:before {
    font-size: 50px;
    opacity: 0.7;
}

.slick-prev:hover:before,
.slick-next:hover:before {
    opacity: 1;
}

/* Slick Dots */
.slick-dots {
    bottom: 25px;
}

.slick-dots li button:before {
    font-size: 12px;
    color: #667eea;
    opacity: 0.5;
}

.slick-dots li.slick-active button:before {
    opacity: 1;
    color: #667eea;
}

@media (max-width: 768px) {
    .slide-item {
        flex-direction: column-reverse;
        min-height: auto;
    }

    .slide-image {
        height: 300px;
        width: 100%;
    }

    .slide-content {
        padding: 40px 30px;
    }

    .slide-title {
        font-size: 28px;
    }

    .slide-description {
        font-size: 16px;
    }
}


/* ABOUT */

.about-section {
    padding: 20px 0;
}

.about-header {
    text-align: center;
    margin-bottom: 60px;
}

.about-header h2 {
    font-size: 48px;
    color: var(--tow-main-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.about-header .line {
    width: 80px;
    height: 4px;
    background: var(--tow-main-color);
    margin: 0 auto 20px;
    border-radius: 2px;
}

.about-header p {
    font-size: 20px;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

.about-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.about-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: var(--box-shadow);
    transition: all 0.3s ease;
    text-align: center;
}

.about-card:hover {
    transform: translateY(-10px);
}

.about-card .icon img {
    width: 70px;
    height: 70px;
    background: var(--main-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 35px;
    padding: 9px;
    transition: transform 0.3s ease;
}

.about-card:hover .icon {
    transform: rotate(360deg);
}

.about-card h3 {
    font-size: 24px;
    color: var(--tow-main-color);
    margin-bottom: 15px;
    font-weight: 600;
}

.about-card p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
}

.about-story {
    background: white;
    padding: 50px;
    border-radius: 20px;
    margin-top: 50px;
    box-shadow: var(--box-shadow);
}

.about-story h3 {
    font-size: 32px;
    color: var(--tow-main-color);
    margin-bottom: 25px;
    text-align: center;
}

.about-story p {
    font-size: 18px;
    color: #555;
    line-height: 2;
    margin-bottom: 20px;
    text-align: justify;
}

@media (max-width: 768px) {
    .about-header h2 {
        font-size: 36px;
    }

    .about-story {
        padding: 30px 25px;
    }

    .about-card {
        padding: 30px 20px;
    }
}

/* sections-area */

.sections-area {
    padding: 30px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 20px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--tow-main-color);
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: 50%;
    transform: translateX(50%);
    width: 80px;
    height: 3px;
    background: var(--tow-main-color);
    border-radius: 2px;
}

.category-card {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    height: 380px;
    margin-bottom: 30px;
    transition: all 0.4s ease;
}

.category-card:hover {
    transform: translateY(-10px);
}

.category-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

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

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, var(--main-color) 100%);
}

.category-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px 30px;
    color: white;
    z-index: 2;
}

.category-icon {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
}

.category-icon img {
    width: 25px;
    height: 25px;
}

.category-content h3 {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    margin-bottom: 15px;
}

.category-label {
    display: inline-block;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    color: white;
    margin-bottom: 20px;
    font-weight: 600;
}

.progress-container {
    margin-top: 25px;
}

.progress-label {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 0.95rem;
    font-weight: 600;
}

.progress-label p {
    color: #fff;
}

.progress {
    height: 8px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    overflow: hidden;
}

.progress-bar {
    background: var(--tow-main-color);
    border-radius: 10px;
    transition: width 1s ease;
}


.load-more-btn {
    display: inline-block;
    padding: 10px 50px;
    background: var(--tow-main-color);
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 10px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.3);
    position: relative;
    overflow: hidden;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.load-more-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--three-main-color);
    transition: left 0.3s ease;
    z-index: -1;
}

.load-more-btn:hover::before {
    left: 0;
}

.load-more-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px var(--box-shadow);
    border-color: var(--three-main-color);
    color: #fff;
}

.load-more-btn:active {
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(139, 69, 19, 0.3);
}

.load-more-container {
    text-align: center;
    padding: 10px 0;
}



@media (max-width: 768px) {
    .category-card {
        height: 450px;
    }

    .category-content h3 {
        font-size: 1.5rem;
    }
}




.category-card {
    position: relative;
}




.category-card:hover .category-overlay {
    opacity: 0.7;
}

.cart-icon {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translate(-50%, -50%);
    width: 90px;
    height: 60px;
    background: var(--tow-main-color);
    border-radius: 5%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 10;
    cursor: pointer;
    -webkit-border-radius: 5%;
    -moz-border-radius: 5%;
    -ms-border-radius: 5%;
    -o-border-radius: 5%;
}

.cart-icon img {
    width: 30px;
    height: 30px;
    fill: white;
}

.category-card:hover .cart-icon {
    opacity: 1;
    visibility: visible;
}

/* main_banner */

.main_banner {
    width: 100%;
    height: 100vh;
    max-height: 100vh;
    overflow: hidden;
    background-image: url(../img/banner.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

/* FOOTER */

footer {
    background: #fff;
    color: #333;
    padding: 2rem 1rem 1.5rem;
    position: relative;
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

footer::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background-image: url('../img/zaq.svg');
    background-size: cover;
    background-position: center;
    opacity: 0.20;
    top: 0px;
    left: 5%;
    transform: rotate(-15deg);
    border-radius: 50%;
}

footer::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background-image: url('../img/zaq.svg');
    background-size: cover;
    background-position: center;
    opacity: 0.20;
    bottom: 0px;
    right: 5%;
    transform: rotate(15deg);
    border-radius: 50%;
}


.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: var(--tow-main-color);
    margin-bottom: 1.2rem;
    font-size: 1.4rem;
    border-bottom: 2px solid var(--tow-main-color);
    padding-bottom: 0.5rem;
    display: inline-block;
}

.footer-section p {
    line-height: 1.8;
    margin-bottom: 1rem;
    color: #333;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
    padding-right: 1.5rem;
    position: relative;
    transition: transform 0.3s ease;
}

.footer-section ul li:hover {
    transform: translateX(-5px);
}

.footer-section ul li::before {
    content: '\f005';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 0;
    font-size: 0.8rem;
    color: var(--tow-main-color);
}

.footer-section a {
    color: #555;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--tow-main-color);
}

.dates-showcase {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.date-item {
    background: rgba(139, 69, 19, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(139, 69, 19, 0.3);
    color: #333;
}

.date-item:hover {
    background: rgba(139, 69, 19, 0.2);
    transform: translateY(-2px);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(139, 69, 19, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(139, 69, 19, 0.3);
    color: var(--tow-main-color);
}

.social-icon:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid rgba(139, 69, 19, 0.2);
    padding-top: 1.5rem;
    text-align: center;
    color: #555;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.footer-section img {
    width: 70%;
    margin-bottom: 20px;
}



.why-choose-section {
    padding: 80px 0px;
    overflow: hidden;
}

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

.section-title {
    text-align: center;
    margin-bottom: 70px;
}

.section-title h2 {
    font-size: 48px;
    color: var(--tow-main-color);
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: 50%;
    transform: translateX(50%);
    width: 100px;
    height: 4px;
    background: var(--tow-main-color);
    border-radius: 2px;
}

.section-title p {
    font-size: 18px;
    color: #666;
    margin-top: 25px;
    max-width: 600px;
    margin-right: auto;
    margin-left: auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-15px);
}

.feature-icon img {
    width: 70px;
    height: 70px;
    background: var(--main-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 10px 30px rgba(139, 69, 19, 0.2);
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
    padding: 10px;
}

.feature-card:hover .feature-icon {
    transform: rotateY(360deg) scale(1.1);
}

.feature-card h3 {
    font-size: 24px;
    color: var(--tow-main-color);
    font-weight: 600;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.feature-card p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

.feature-number {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 40px;
    height: 40px;
    background: rgba(139, 69, 19, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    color: var(--tow-main-color);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-number {
    background: var(--main-color);
    color: white;
    transform: scale(1.1);
}

.cta-box {
    background: var(--tow-main-color);
    padding: 50px;
    border-radius: 25px;
    text-align: center;
    margin-top: 70px;
    box-shadow: var(--box-shadow);
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.cta-box h3 {
    font-size: 32px;
    color: white;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.cta-box p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.cta-btn {
    display: inline-block;
    padding: 15px 45px;
    background: white;
    color: var(--tow-main-color);
    font-size: 18px;
    font-weight: 600;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    background: #f8f5f0;
}

@media (max-width: 768px) {
    .section-title h2 {
        font-size: 36px;
    }

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

    .cta-box {
        padding: 35px 25px;
    }

    .cta-box h3 {
        font-size: 26px;
    }
}


.main_form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 30px;
    align-items: center;
}

.form-section {
    padding: 40px;
}

.form-section h2 {
    color: var(--three-main-color);
    margin-bottom: 10px;
    font-size: 28px;
}

.form-section p {
    color: #666;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--main-color);
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.submit-btn {
    width: 100%;
    padding: 14px;
    background: var(--three-main-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.4);
}

.submit-btn:active {
    transform: translateY(0);
}

.map-section {
    position: relative;
    height: 600px;
}

#map {
    width: 100%;
    height: 100%;
    min-height: 600px;
}

.success-message {
    display: none;
    background: #4caf50;
    color: white;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    text-align: center;
}

@media (max-width: 968px) {
    .container {
        grid-template-columns: 1fr;
    }

    .map-section {
        min-height: 400px;
    }

    #map {
        min-height: 400px;
    }
}

/* details products */

.details_products .product-container {
    background: white;
    margin-bottom: 30px;
    margin-top: 120px;
}

/* Product Images Slider */
.details_products .product-images-section {
    position: relative;
}

.details_products .slider-for {
    margin-bottom: 20px;
}

.details_products .slider-for .slick-slide {
    height: 500px;
}

.details_products .slider-for .slick-slide img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 15px;
}

@media(max-width:991px){
    .details_products .slider-for .slick-slide img{
        height: 300px;
    }
}

.details_products .slider-nav {
    margin: 0 -5px;
}

.details_products .slider-nav .slick-slide {
    padding: 0 5px;
    cursor: pointer;
}

.details_products .slider-nav .slick-slide img {
    width: 50%;
    height: 100px;
    object-fit: cover;
    border-radius: 10px;
    border: 3px solid transparent;
    transition: all 0.3s ease;
}

.details_products .slider-nav .slick-slide:hover img {
    border-color: var(--three-main-color);
    opacity: 0.8;
}

.details_products .slider-nav .slick-current img {
    border-color: var(--three-main-color);
    box-shadow: 0 0 15px rgba(13, 110, 253, 0.4);
}

/* Slick Arrows */
.details_products .slick-arrow {
    width: 50px;
    height: 50px;
    z-index: 10;
    background: rgba(0, 0, 0, 0.7) !important;
    border-radius: 50%;
}

.details_products .slick-arrow:hover {
    background: rgba(0, 0, 0, 0.9) !important;
}

.details_products .slick-arrow:before {
    font-size: 30px;
    opacity: 1;
}

.details_products .slider-for .slick-prev {
    right: 20px;
    left: auto;
}

.details_products .slider-for .slick-next {
    left: 20px;
    right: auto;
}

.details_products .slider-nav .slick-prev {
    right: -25px;
    left: auto;
}

.details_products .slider-nav .slick-next {
    left: -25px;
    right: auto;
}

/* Product Info */
.details_products .product-title {
    font-size: 2rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 15px;
}

.details_products .product-rating {
    margin-bottom: 20px;
}

.details_products .stars {
    color: #ffc107;
    font-size: 1.2rem;
}

.details_products .rating-count {
    color: #6c757d;
    margin-right: 10px;
}

.details_products .product-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--three-main-color);
    margin-bottom: 10px;
}

.details_products .old-price {
    font-size: 1.5rem;
    color: #6c757d;
    text-decoration: line-through;
    margin-right: 15px;
}

.details_products .discount-badge {
    background: #dc3545;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 20px;
}

.details_products .product-description {
    color: #6c757d;
    line-height: 1.8;
    margin-bottom: 25px;
}

.details_products .product-options {
    margin-bottom: 25px;
}

.details_products .option-label {
    font-weight: 600;
    margin-bottom: 10px;
    display: block;
}

.details_products .size-options button {
    min-width: 80px;
    height: 50px;
    border: 2px solid #dee2e6;
    border-radius: 8px;
    margin-left: 10px;
    cursor: pointer;
    transition: all 0.3s;
    background: white;
    font-weight: 600;
    padding: 10px 20px;
}

.details_products .size-options button.active {
    border-color: var(--three-main-color);
    background: var(--three-main-color);
    color: white;
    transform: scale(1.05);
}

.details_products .size-options button:hover {
    border-color: var(--three-main-color);
}

.details_products .quantity-selector {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.details_products .quantity-selector button {
    width: 45px;
    height: 45px;
    border: 2px solid #dee2e6;
    background: white;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1.5rem;
    font-weight: 600;
    transition: all 0.3s;
}

.details_products .quantity-selector button:hover {
    border-color: #0d6efd;
    color: #0d6efd;
}

.details_products .quantity-selector input {
    width: 80px;
    height: 45px;
    text-align: center;
    border: 2px solid #dee2e6;
    border-radius: 8px;
    margin: 0 10px;
    font-weight: 600;
    font-size: 1.1rem;
}

.details_products .action-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.details_products .action-buttons button {
    padding: 15px 30px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    flex: 1;
    min-width: 200px;
}

.details_products .btn-add-cart {
    background: #25D366;
    color: white;
}

.details_products .btn-add-cart:hover {
    background: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

.details_products .btn-buy-now {
    background: #0d6efd;
    color: white;
}

.details_products .btn-buy-now:hover {
    background: #0b5ed7;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(13, 110, 253, 0.4);
}

.details_products .btn-wishlist {
    background: white;
    border: 2px solid #dee2e6;
    color: #dc3545;
    min-width: 60px !important;
    flex: 0 !important;
    padding: 15px;
}

.details_products .btn-wishlist:hover {
    background: #dc3545;
    color: white;
    border-color: #dc3545;
    transform: translateY(-3px);
}

.details_products .product-features {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 20px;
    margin-top: 30px;
}

.details_products .feature-item {
    display: flex;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #dee2e6;
}

.details_products .feature-item:last-child {
    border-bottom: none;
}

.details_products .feature-icon {
    font-size: 1.8rem;
    color: var(--three-main-color);
    margin-left: 15px;
    width: 50px;
    text-align: center;
}

.details_products .tabs-section {
    margin-top: 40px;
}

.details_products .nav-tabs .nav-link {
    color: #6c757d;
    font-weight: 600;
    border: none;
    border-bottom: 3px solid transparent;
    font-size: 1.1rem;
    padding: 15px 25px;
}

.details_products .nav-tabs .nav-link.active {
    color: var(--three-main-color);
    border-bottom-color: var(--three-main-color);
    background: transparent;
}

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

.details_products .tab-content {
    padding: 30px 0;
}

.details_products .review-item {
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    margin-bottom: 20px;
}

@media (max-width: 768px) {

    .details_products .slider-for .slick-slide,
    .slider-for .slick-slide img {
        height: 300px;
    }

    .details_products .product-title {
        font-size: 1.5rem;
    }

    .details_products .product-price {
        font-size: 2rem;
    }

    .details_products .action-buttons {
        flex-direction: column;
    }

    .details_products .action-buttons button {
        width: 100%;
        min-width: 100%;
    }

    .details_products .btn-wishlist {
        min-width: 100% !important;
    }
}