/*!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! START OF style.css !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!*/

/*AAAAAAAAAAAAAAAAAAAAAAA!!! GLOBAL STYLES STARTS !!!AAAAAAAAAAAAAAAAAAA*/
:root {
    --primary: #0a1628;
    --secondary: #1a2a4a;
    --accent: #c9a84c;
    --accent-light: #f5eac8;
    --gold-gradient: linear-gradient(135deg, #c9a84c, #e8d5a0, #c9a84c);
    --light-blue: #e8f0fe;
    --soft-cream: #fdf8f0;
    --light-gray: #f5f7fb;
    --white: #ffffff;
    --text-dark: #1a2a3a;
    --text-muted: #6b7f99;
    --border-light: rgba(0, 0, 0, 0.06);
    --shadow: 0 8px 40px rgba(0, 0, 0, 0.06);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--light-gray);
    color: var(--text-dark);
    overflow-x: hidden;
}

::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #eef2f8;
}
::-webkit-scrollbar-thumb {
    background: var(--accent);
    border-radius: 10px;
}
/*AAAAAAAAAAAAAAAAAAAAAAA!!! GLOBAL STYLES ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/

/*AAAAAAAAAAAAAAAAAAAAAAA!!! TOP BAR STYLES STARTS !!!AAAAAAAAAAAAAAAAAAA*/
.cs_ecom_topbar {
    background: var(--primary);
    color: #b0c9e8;
    padding: 6px 0;
    font-size: 12px;
    border-bottom: 1px solid rgba(201, 168, 76, 0.2);
}
.cs_ecom_topbar a {
    color: #b0c9e8;
    text-decoration: none;
    transition: 0.3s;
}
.cs_ecom_topbar a:hover {
    color: var(--accent);
}
.cs_ecom_topbar .free-ship {
    color: var(--accent);
    font-weight: 600;
}
.cs_ecom_topbar .social-link {
    color: #b0c9e8;
    margin: 0 6px;
    transition: 0.3s;
    font-size: 13px;
}
.cs_ecom_topbar .social-link:hover {
    color: var(--accent);
    transform: translateY(-2px);
}
/*AAAAAAAAAAAAAAAAAAAAAAA!!! TOP BAR STYLES ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/

/*AAAAAAAAAAAAAAAAAAAAAAA!!! MAIN HEADER STYLES STARTS !!!AAAAAAAAAAAAAAAAAAA*/
.cs_main_header_ecom {
    background: var(--white);
    padding: 8px 0;
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 999;
    border-bottom: 1px solid var(--border-light);
}
.cs_main_header_ecom .logo img {
    height: 70px;
    width: auto;
    max-height: 75px;
    display: block;
}
/*AAAAAAAAAAAAAAAAAAAAAAA!!! MAIN HEADER STYLES ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/

/*AAAAAAAAAAAAAAAAAAAAAAA!!! SEARCH BAR STYLES STARTS !!!AAAAAAAAAAAAAAAAAAA*/
.cs_ecom_search {
    position: relative;
    max-width: 480px;
    width: 100%;
}
.cs_ecom_search input {
    width: 100%;
    padding: 10px 50px 10px 20px;
    border: 2px solid #e8ecf2;
    border-radius: 50px;
    font-size: 14px;
    background: var(--light-gray);
    color: var(--text-dark);
    transition: 0.4s;
    outline: none;
}
.cs_ecom_search input::placeholder {
    color: #b0b9cc;
}
.cs_ecom_search input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(201, 168, 76, 0.12);
    background: var(--white);
}
.cs_ecom_search .search-btn {
    position: absolute;
    right: 4px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--gold-gradient);
    border: none;
    color: var(--primary);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    transition: 0.3s;
    font-size: 14px;
}
.cs_ecom_search .search-btn:hover {
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 0 20px rgba(201, 168, 76, 0.3);
}
/*AAAAAAAAAAAAAAAAAAAAAAA!!! SEARCH BAR STYLES ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/

/*AAAAAAAAAAAAAAAAAAAAAAA!!! HEADER ICONS STYLES STARTS !!!AAAAAAAAAAAAAAAAAAA*/
.cs_ecom_icons {
    display: flex;
    align-items: center;
    gap: 18px;
}
.cs_ecom_icons a {
    color: var(--text-dark);
    font-size: 18px;
    position: relative;
    transition: 0.3s;
}
.cs_ecom_icons a:hover {
    color: var(--accent);
}
.cs_ecom_icons .badge-icon {
    position: absolute;
    top: -8px;
    right: -10px;
    background: var(--gold-gradient);
    color: var(--primary);
    font-size: 9px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
}
.cs_ecom_icons .quote-btn {
    background: var(--gold-gradient);
    color: var(--primary);
    padding: 8px 22px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    transition: 0.3s;
}
.cs_ecom_icons .quote-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(201, 168, 76, 0.3);
}
/*AAAAAAAAAAAAAAAAAAAAAAA!!! HEADER ICONS STYLES ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/

/*AAAAAAAAAAAAAAAAAAAAAAA!!! NAVIGATION STYLES STARTS !!!AAAAAAAAAAAAAAAAAAA*/
.cs_nav_ecom {
    background: var(--white);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    padding: 0;
}
.cs_nav_ecom .nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0;
}
.cs_nav_ecom .nav-list > li {
    position: relative;
}
.cs_nav_ecom .nav-list > li > a {
    display: block;
    padding: 12px 24px;
    font-weight: 600;
    font-size: 14px;
    color: var(--text-dark);
    text-decoration: none;
    transition: 0.3s;
    border-bottom: 2px solid transparent;
}
.cs_nav_ecom .nav-list > li > a:hover,
.cs_nav_ecom .nav-list > li.active > a {
    color: var(--accent);
    border-bottom-color: var(--accent);
    background: rgba(201, 168, 76, 0.05);
}
.cs_nav_ecom .nav-list .dropdown-menu-custom {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 240px;
    background: var(--white);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: 0.3s;
    z-index: 100;
    border: 1px solid var(--border-light);
}
.cs_nav_ecom .nav-list > li:hover .dropdown-menu-custom {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.cs_nav_ecom .nav-list .dropdown-menu-custom a {
    display: block;
    padding: 8px 24px;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 13px;
    transition: 0.3s;
}
.cs_nav_ecom .nav-list .dropdown-menu-custom a:hover {
    background: rgba(201, 168, 76, 0.08);
    color: var(--accent);
}
.cs_nav_ecom .nav-list .offers-link {
    color: var(--accent) !important;
    font-weight: 800 !important;
}
.cs_nav_ecom .nav-list .offers-link:hover {
    color: var(--primary) !important;
}
/*AAAAAAAAAAAAAAAAAAAAAAA!!! NAVIGATION STYLES ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/

/*AAAAAAAAAAAAAAAAAAAAAAA!!! HERO SLIDER STYLES STARTS !!!AAAAAAAAAAAAAAAAAAA*/
.hero-slider-wrapper {
    position: relative;
    overflow: hidden;
}
.hero-slider-wrapper .slick-dots {
    bottom: 30px;
    z-index: 10;
}
.hero-slider-wrapper .slick-dots li button:before {
    color: #fff;
    font-size: 10px;
    opacity: 0.4;
}
.hero-slider-wrapper .slick-dots li.slick-active button:before {
    color: var(--accent);
    opacity: 1;
}
.hero-slider-wrapper .slick-prev,
.hero-slider-wrapper .slick-next {
    z-index: 10;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    backdrop-filter: blur(10px);
    transition: 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.15);
}
.hero-slider-wrapper .slick-prev:hover,
.hero-slider-wrapper .slick-next:hover {
    background: var(--accent);
}
.hero-slider-wrapper .slick-prev:hover:before,
.hero-slider-wrapper .slick-next:hover:before {
    color: var(--primary);
}
.hero-slider-wrapper .slick-prev:before,
.hero-slider-wrapper .slick-next:before {
    font-size: 18px;
    color: #fff;
}
.hero-slider-wrapper .slick-prev {
    left: 20px;
}
.hero-slider-wrapper .slick-next {
    right: 20px;
}

.hero-slide {
    min-height: 600px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex !important;
    align-items: center;
}
.hero-slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 22, 40, 0.75) 0%, rgba(10, 22, 40, 0.25) 100%);
}
.hero-slide .container {
    position: relative;
    z-index: 2;
}
.hero-slide .hero-badge {
    display: inline-block;
    padding: 6px 24px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 15px;
    background: var(--gold-gradient);
    color: var(--primary);
}
.hero-slide .hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 56px;
    font-weight: 900;
    color: #fff;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    line-height: 1.05;
}
.hero-slide .hero-title span {
    color: var(--accent-light);
}
.hero-slide .hero-subtitle {
    color: rgba(255, 255, 255, 0.85);
    font-size: 18px;
    max-width: 500px;
    font-weight: 300;
    margin-top: 10px;
}
.hero-slide .btn-primary-custom {
    background: var(--gold-gradient);
    color: var(--primary);
    padding: 14px 40px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: 0.3s;
    border: none;
    font-size: 15px;
}
.hero-slide .btn-primary-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(201, 168, 76, 0.4);
}
.hero-slide .btn-outline-custom {
    background: transparent;
    color: #fff;
    padding: 14px 40px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: 0.3s;
    border: 2px solid rgba(255, 255, 255, 0.3);
    margin-left: 12px;
    font-size: 15px;
}
.hero-slide .btn-outline-custom:hover {
    background: #fff;
    color: var(--primary);
    border-color: #fff;
}
/*AAAAAAAAAAAAAAAAAAAAAAA!!! HERO SLIDER STYLES ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/

/*AAAAAAAAAAAAAAAAAAAAAAA!!! FEATURES STYLES STARTS !!!AAAAAAAAAAAAAAAAAAA*/
.features-section {
    position: relative;
    padding: 50px 0;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}
.features-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    z-index: 0;
}
.features-section .container {
    position: relative;
    z-index: 1;
}
.feature-box {
    text-align: center;
    padding: 28px 20px;
    background: rgba(255, 255, 255, 0.90);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-radius: 16px;
    transition: 0.4s;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}
.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(201, 168, 76, 0.2);
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.98);
}
.feature-box i {
    font-size: 34px;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.feature-box h5 {
    margin-top: 12px;
    font-weight: 700;
    font-size: 16px;
    color: var(--primary);
}
.feature-box p {
    font-size: 13px;
    color: var(--text-muted);
    margin: 0;
}
/*AAAAAAAAAAAAAAAAAAAAAAA!!! FEATURES STYLES ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/

/*AAAAAAAAAAAAAAAAAAAAAAA!!! SERVICE CARDS STYLES STARTS !!!AAAAAAAAAAAAAAAAAAA*/
.service-card-ecom {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: 0.5s;
    border: 1px solid var(--border-light);
    height: 100%;
}
.service-card-ecom:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(201, 168, 76, 0.15);
    border-color: var(--accent);
}
.service-card-ecom .card-img {
    height: 260px;
    overflow: hidden;
    position: relative;
    background: var(--light-blue);
    display: flex;
    align-items: center;
    justify-content: center;
}
.service-card-ecom .card-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 20px;
    background: var(--white);
    transition: 0.6s;
}
.service-card-ecom:hover .card-img img {
    transform: scale(1.05);
}
.service-card-ecom .card-img .badge-discount {
    position: absolute;
    top: 14px;
    right: 14px;
    background: var(--gold-gradient);
    color: var(--primary);
    padding: 4px 16px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 800;
    z-index: 5;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.service-card-ecom .card-body {
    padding: 24px 26px 28px;
}
.service-card-ecom .card-body .card-title {
    font-size: 18px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 4px;
}
.service-card-ecom .card-body .card-title a {
    color: inherit;
    text-decoration: none;
}
.service-card-ecom .card-body .card-title a:hover {
    color: var(--accent);
}
.service-card-ecom .card-body .price {
    font-size: 20px;
    font-weight: 800;
    color: var(--primary);
}
.service-card-ecom .card-body .price .old-price {
    font-size: 14px;
    color: #b0b9cc;
    text-decoration: line-through;
    font-weight: 400;
    margin-left: 10px;
}
.service-card-ecom .card-body .rating {
    color: var(--accent);
    font-size: 13px;
    margin-bottom: 4px;
}
.service-card-ecom .card-body .rating span {
    color: #8a9bb5;
    font-size: 12px;
    margin-left: 6px;
}
.service-card-ecom .card-body .card-actions {
    display: flex;
    gap: 10px;
    margin-top: 16px;
}
.service-card-ecom .card-body .btn-add-cart {
    flex: 1;
    background: var(--gold-gradient);
    color: var(--primary);
    border: none;
    padding: 10px 18px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 13px;
    transition: 0.3s;
}
.service-card-ecom .card-body .btn-add-cart:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(201, 168, 76, 0.3);
}
.service-card-ecom .card-body .btn-wishlist {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid #e8ecf2;
    background: transparent;
    color: #b0b9cc;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.service-card-ecom .card-body .btn-wishlist:hover {
    border-color: var(--accent);
    color: var(--accent);
}
/*AAAAAAAAAAAAAAAAAAAAAAA!!! SERVICE CARDS STYLES ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/

/*AAAAAAAAAAAAAAAAAAAAAAA!!! PRODUCT SECTIONS STYLES STARTS !!!AAAAAAAAAAAAAAAAAAA*/
.product-new-section {
    padding: 80px 0;
    position: relative;
}
.product-new-section .product-title {
    font-family: 'Playfair Display', serif;
    font-size: 38px;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 6px;
}
.product-new-section .product-title span {
    color: var(--accent);
}
.product-new-section .product-subtitle {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 15px;
    font-weight: 300;
}
.product-new-section .product-features {
    list-style: none;
    padding: 0;
    margin: 15px 0 0;
}
.product-new-section .product-features li {
    padding: 6px 0;
    font-size: 14px;
    color: var(--text-dark);
    font-weight: 500;
}
.product-new-section .product-features li i {
    color: var(--accent);
    margin-right: 12px;
    font-size: 16px;
}
.product-new-section .product-img-box {
    text-align: center;
    padding: 20px;
}
.product-new-section .product-img-box img {
    max-width: 90%;
    max-height: 350px;
    border-radius: 24px;
    box-shadow: var(--shadow);
    transition: 0.5s;
    object-fit: contain;
    background: var(--white);
    padding: 20px;
    border: 1px solid var(--border-light);
}
.product-new-section .product-img-box img:hover {
    transform: scale(1.03);
    box-shadow: 0 20px 60px rgba(201, 168, 76, 0.15);
    border-color: var(--accent);
}
.product-new-section .btn-explore {
    background: var(--gold-gradient);
    color: var(--primary);
    padding: 14px 40px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    margin-top: 20px;
    transition: 0.3s;
    border: none;
    font-size: 14px;
    letter-spacing: 0.5px;
}
.product-new-section .btn-explore:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(201, 168, 76, 0.3);
}
/*AAAAAAAAAAAAAAAAAAAAAAA!!! PRODUCT SECTIONS STYLES ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/

/*AAAAAAAAAAAAAAAAAAAAAAA!!! WHY CHOOSE STYLES STARTS !!!AAAAAAAAAAAAAAAAAAA*/
.why-choose-section {
    position: relative;
    padding: 80px 0;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}
.why-choose-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    z-index: 0;
}
.why-choose-section .container {
    position: relative;
    z-index: 1;
}
.why-choose-section .section-badge {
    color: var(--accent);
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 13px;
    text-transform: uppercase;
}
.why-choose-section .section-title {
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    font-size: 42px;
    margin-top: 6px;
    color: var(--primary);
}
.why-choose-section .section-title span {
    color: var(--accent);
}
.why-choose-section .divider {
    width: 60px;
    height: 3px;
    background: var(--gold-gradient);
    margin: 12px auto;
    border-radius: 4px;
}
/*AAAAAAAAAAAAAAAAAAAAAAA!!! WHY CHOOSE STYLES ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/

/*AAAAAAAAAAAAAAAAAAAAAAA!!! COUNTER STYLES STARTS !!!AAAAAAAAAAAAAAAAAAA*/
.cs-counter-item {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.90);
    backdrop-filter: blur(5px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: 0.4s;
    box-shadow: var(--shadow);
}
.cs-counter-item:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
    box-shadow: 0 12px 40px rgba(201, 168, 76, 0.15);
    background: rgba(255, 255, 255, 0.98);
}
.cs-counter-item .counter-icon {
    font-size: 40px;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
    display: block;
}
.cs-counter-item .counter-number {
    font-size: 36px;
    font-weight: 900;
    color: var(--primary);
}
.cs-counter-item .counter-number .plus {
    color: var(--accent);
}
.cs-counter-item .counter-label {
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 500;
}
/*AAAAAAAAAAAAAAAAAAAAAAA!!! COUNTER STYLES ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/

/*AAAAAAAAAAAAAAAAAAAAAAA!!! GET IN TOUCH STYLES STARTS !!!AAAAAAAAAAAAAAAAAAA*/
.touch-container-ecom {
    display: grid;
    grid-template-columns: 1fr 1.8fr;
    gap: 40px;
    background: var(--white);
    border-radius: 24px;
    padding: 50px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-light);
}
.touch-container-ecom .info-item {
    display: flex;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid #f0f4fc;
}
.touch-container-ecom .info-item .icon-box {
    width: 44px;
    height: 44px;
    background: rgba(201, 168, 76, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 18px;
}
.touch-container-ecom .info-item h6 {
    font-weight: 700;
    margin: 0;
    font-size: 14px;
}
.touch-container-ecom .info-item p {
    margin: 0;
    color: var(--text-muted);
    font-size: 14px;
}
.touch-container-ecom .info-item a {
    color: var(--primary);
    text-decoration: none;
}
.touch-container-ecom .info-item a:hover {
    color: var(--accent);
}
.touch-container-ecom .social-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--light-blue);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    text-decoration: none;
}
.touch-container-ecom .social-circle:hover {
    background: var(--gold-gradient);
    color: var(--primary);
    transform: translateY(-3px);
}
.touch-container-ecom .form-control {
    border-radius: 12px;
    padding: 12px 18px;
    border: 2px solid #e8ecf2;
    transition: 0.3s;
    font-size: 14px;
    background: var(--light-gray);
}
.touch-container-ecom .form-control:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(201, 168, 76, 0.1);
    background: var(--white);
}
.touch-container-ecom .submit-btn {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    background: var(--gold-gradient);
    color: var(--primary);
    transition: 0.3s;
    font-size: 15px;
}
.touch-container-ecom .submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 35px rgba(201, 168, 76, 0.3);
}
/*AAAAAAAAAAAAAAAAAAAAAAA!!! GET IN TOUCH STYLES ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/

/*AAAAAAAAAAAAAAAAAAAAAAA!!! FOOTER STYLES STARTS !!!AAAAAAAAAAAAAAAAAAA*/
.footer-fixed {
    background: var(--primary);
    color: #8aa3c4;
    padding: 60px 0 0;
    border-top: 1px solid rgba(201, 168, 76, 0.15);
}
.footer-fixed .footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 35px;
}
.footer-fixed .footer-logo {
    height: 40px;
    margin-bottom: 15px;
    filter: brightness(0) invert(1);
}
.footer-fixed .footer-desc {
    font-size: 14px;
    line-height: 1.8;
    color: #8aa3c4;
    max-width: 350px;
    margin-bottom: 18px;
}
.footer-fixed h4 {
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 18px;
}
.footer-fixed .footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-fixed .footer-links li {
    margin-bottom: 10px;
}
.footer-fixed .footer-links a {
    color: #8aa3c4;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
    display: inline-block;
}
.footer-fixed .footer-links a:hover {
    color: var(--accent);
    padding-left: 6px;
}
.footer-fixed .social-icons {
    display: flex;
    gap: 12px;
    margin-top: 5px;
}
.footer-fixed .social-icons a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8aa3c4;
    transition: 0.3s;
    text-decoration: none;
    font-size: 14px;
}
.footer-fixed .social-icons a:hover {
    background: var(--gold-gradient);
    color: var(--primary);
    border-color: var(--accent);
    transform: translateY(-3px);
}
.footer-fixed .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    font-size: 13px;
    color: #5a7390;
    flex-wrap: wrap;
    gap: 10px;
}
.footer-fixed .footer-bottom a {
    color: #5a7390;
    text-decoration: none;
    margin-left: 20px;
    transition: 0.3s;
}
.footer-fixed .footer-bottom a:hover {
    color: var(--accent);
}
/*AAAAAAAAAAAAAAAAAAAAAAA!!! FOOTER STYLES ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/

/*AAAAAAAAAAAAAAAAAAAAAAA!!! RESPONSIVE STYLES STARTS !!!AAAAAAAAAAAAAAAAAAA*/
@media (max-width: 992px) {
    .footer-fixed .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    .hero-slide .hero-title {
        font-size: 40px;
    }
    .cs_main_header_ecom .logo img {
        height: 55px;
    }
}
@media (max-width: 768px) {
    .footer-fixed .footer-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        text-align: center;
    }
    .footer-fixed .footer-desc {
        max-width: 100%;
        margin: 0 auto 18px;
    }
    .footer-fixed .social-icons {
        justify-content: center;
    }
    .footer-fixed .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    .footer-fixed .footer-bottom a {
        margin: 0 10px;
    }
    .hero-slide .hero-title {
        font-size: 30px;
    }
    .hero-slide .hero-subtitle {
        font-size: 15px;
    }
    .product-new-section .product-title {
        font-size: 28px;
    }
    .cs_ecom_topbar .free-ship {
        display: none;
    }
    .hero-slider-wrapper .slick-prev,
    .hero-slider-wrapper .slick-next {
        width: 35px;
        height: 35px;
    }
    .hero-slider-wrapper .slick-prev {
        left: 8px;
    }
    .hero-slider-wrapper .slick-next {
        right: 8px;
    }
    .service-card-ecom .card-img {
        height: 200px;
    }
    .cs_main_header_ecom .logo img {
        height: 45px;
    }
}
@media (max-width: 576px) {
    .hero-slide .hero-title {
        font-size: 24px;
    }
    .hero-slide .btn-outline-custom {
        margin-left: 0;
        margin-top: 10px;
    }
    .cs_ecom_icons {
        gap: 12px;
    }
    .service-card-ecom .card-img {
        height: 170px;
    }
    .cs_main_header_ecom .logo img {
        height: 38px;
    }
}
/*AAAAAAAAAAAAAAAAAAAAAAA!!! RESPONSIVE STYLES ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/

/*!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! END OF style.css !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!*/



