:root {
    --primary-color: #2A156D;
    --secondary-color: #D11A2E;
}

@font-face {
    font-family: kenya;
    src: url(../fonts/kenya.otf);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Inter;
}

/* Top Banner */
.top-banner {
    background: var(--primary-color);
    color: white;
    padding: 10px 0;
    text-align: center;
    font-size: 1rem;
    font-weight: 300;
}

.top-banner a {
    color: var(--secondary-color);
    font-weight: 600;
    text-decoration: none;
}

.top-banner a:hover {
    text-decoration: underline;
}

/* Main Header */
.main-header {
    background: white;
    padding: 12px 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: sticky !important;
    top: 0;
    z-index: 99;
}

.header-top-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.logo {
    width: 130px;
    height: auto;
}

.search-section {
    flex: 1;
    min-width: 250px;
    max-width: 550px;
}

.search-section .form-control {
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 8px 12px;
}

.search-section .btn-search {
    background: white;
    color: #666;
    padding: 8px 12px;
    cursor: pointer;
    border: 1px solid #dddddd;
    border-left: 0;
    display: flex;
    align-items: center;
}

.search-section .btn-search:hover {
    background: #f5f5f5;
}

/* Contact Info Section */
.contact-section {
    display: flex;
    gap: 3em;
    flex-wrap: wrap;
    align-items: center;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
}

.contact-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    background: var(--primary-color);
    border: 2px solid var(--secondary-color);
}

.contact-info-text {
    display: flex;
    flex-direction: column;
}

.contact-info-text .label {
    font-size: 0.75rem;
    color: #101010;
    font-weight: 600;
}

.contact-info-text .value {
    font-size: 1rem;
    color: #101010;
    font-weight: 700;
}

.cart-section {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1em;
}

.cart-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    cursor: pointer;
    position: relative;
    background: var(--primary-color);
    border: 2px solid var(--secondary-color);
}

.cart-label {
    font-size: 0.75rem;
    color: #101010;
    display: flex;
    margin-top: 3px;
    flex-direction: column;
    align-items: start;
    font-weight: 700;
}

.cart-count {
    color: var(--secondary-color);
    font-weight: 600;
}

/* Navigation Bar */
.navbar-custom {
    background: var(--primary-color);
    padding: 0;
    position: sticky !important;
    top: 5.8em;
    z-index: 99;
    box-shadow: 0 0 6px #ffffff;
}

.navbar-custom .navbar-brand {
    display: none;
}

.navbar-custom .navbar-toggler {
    border: none;
    padding: 5px 10px;
}

.navbar-custom .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='white' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-custom .nav-link {
    color: white !important;
    padding: 18px 2.5rem !important;
    font-weight: 300;
    font-size: 0.9rem;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    border: 0 !important;
}

.navbar-custom .nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.navbar-custom .nav-link.manufacturers-btn {
    background: var(--secondary-color);
}

.navbar-custom .nav-link.manufacturers-btn:hover {
    background: #b71c1c;
}

.navbar-custom .dropdown-toggle::after {
    border: none !important;
    font-size: 0.65rem;
    margin-left: 8px;
}

/* Mega Menu */
.mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
    padding: 30px;
    display: none;
    z-index: 1000;
    border-top: 3px solid #d32f2f;
}

.mega-menu.show {
    display: block;
}

.mega-menu-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 1550px;
    margin: 0 auto;
}

.mega-menu-category {
    display: flex;
    flex-direction: column;
}

.mega-menu-category-title {
    font-weight: 800;
    color: #3a227e;
    margin-bottom: 12px;
    font-size: 1rem;
    padding-bottom: 8px;
    border-bottom: 2px solid #d32f2f;
}

.mega-menu-item {
    color: #000;
    text-decoration: none;
    font-size: 0.85rem;
    padding: 6px 0;
    transition: all 0.3s ease;
    display: block;
}

.mega-menu-item:hover {
    color: #d32f2f;
    padding-left: 5px;
}

.mega-menu-subitem {
    color: #101010;
    text-decoration: none;
    font-size: 0.8rem;
    padding: 4px 0;
    display: block;
    padding-left: 10px;
    transition: all 0.3s ease;
}

.mega-menu-subitem:hover {
    color: #d32f2f;
    padding-left: 15px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .contact-section {
        gap: 15px;
    }

    .contact-info-text .value {
        font-size: 0.85rem;
    }
}

@media (max-width: 992px) {
    .header-top-section {
        gap: 15px;
    }

    .search-section {
        order: 3;
        flex-basis: 100%;
    }

    .contact-section {
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }

    .contact-item {
        gap: 8px;
    }

    .mega-menu-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 20px;
    }

    .mega-menu {
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .top-banner {
        font-size: 0.8rem;
        padding: 8px 0;
    }

    .main-header {
        padding: 10px 0;
    }

    .header-top-section {
        gap: 10px;
    }

    .logo {
        width: 100px;
    }

    .contact-section {
        gap: 5px;
        font-size: 0.8rem;
    }

    .contact-icon {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }

    .contact-info-text .label {
        font-size: 0.65rem;
    }

    .contact-info-text .value {
        font-size: 0.8rem;
    }

    .cart-icon {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }

    .navbar-custom .nav-link {
        padding: 12px 15px;
        font-size: 0.85rem;
        border-right: none;
    }

    .navbar-custom {
        margin-top: 10px;
    }

    .mega-menu-content {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .mega-menu-category-title {
        font-size: 0.85rem;
    }

    .mega-menu-item {
        font-size: 0.75rem;
    }

    .mega-menu-subitem {
        font-size: 0.7rem;
    }
}

@media (max-width: 576px) {
    .top-banner {
        font-size: 0.7rem;
    }

    .logo {
        width: 80px;
    }

    .search-section {
        min-width: 100%;
    }

    .search-section .form-control {
        font-size: 0.85rem;
        padding: 6px 10px;
    }

    .contact-item {
        font-size: 0.7rem;
    }

    .contact-icon {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }

    .cart-icon {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }

    .cart-label {
        font-size: 0.65rem;
    }

    .navbar-custom .nav-link {
        padding: 10px 12px;
        font-size: 0.75rem;
    }

    .mega-menu {
        padding: 15px;
        position: fixed;
        width: 100%;
        left: 0;
        right: 0;
    }

    .mega-menu-category-title {
        font-size: 0.8rem;
        margin-bottom: 10px;
    }
}

/* Dropdown Positioning */
.nav-item.dropdown {
    position: relative;
}

.nav-item.dropdown .dropdown-menu {
    display: none;
    position: static;
    width: 100%;
    border: none;
    box-shadow: none;
    background: transparent;
    padding: 0;
    margin: 0;
}

.nav-item.dropdown.show .dropdown-menu {
    display: block;
}

.manufactureDiv {
    background: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 0;
    color: #fff;
    font-size: 1.125rem;
    font-weight: 500;
}

.search-section select.form-select {
    font-weight: 600;
    background-color: transparent !important;
}

.search-section span.input-group-text {
    background: #F7F7F7 !important;
}

.dropdownMenu {
    display: flex;
    gap: 0.5em;
}

.dropdownMenu img {
    width: 10px;
}

.contact-section .contact-item::before {
    content: "";
    position: absolute !important;
    right: -1.55em;
    height: 100%;
    width: 2px;
    z-index: 2;
    background-image: url(../images/line.png);
    background-size: 100% 100%;
}

.contact-info-text a {
    color: #101010;
    text-decoration: none;
    transition: .3s ease;
}

.contact-info-text a:hover {
    color: var(--secondary-color);
}

div#navbarNav .col-md-3 {
    width: 20% !important;
    padding-right: 0;
}

.footer {
    background: var(--primary-color);
    color: white;
    padding-top: 5rem;
    padding-bottom: 20px;
}

.footer-top {
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    width: 205px;
    margin-bottom: 2rem;
}

.footer-description {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #fff;
    max-width: 380px;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 70px;
    margin-bottom: 30px;
}

.footer-column-title {
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 2rem;
    font-size: 1.75rem;
}

.footer-column-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-link {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 1.25rem;
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    padding-top: 20px;
    border-top: 1px solid;
    border-image: linear-gradient(90deg, rgba(209, 26, 46, 0.00) 0%, #D11A2E 50%, rgba(209, 26, 46, 0.00) 100%) !important;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.125rem;
    font-weight: 400 !important;
}

.payment-methods {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.payment-icon {
    width: 35px;
    height: 25px;
    background: white;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    color: #333;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* Footer Responsive */
@media (max-width: 992px) {
    .footer-columns {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .footer-bottom>* {
        width: 100%;
    }

    .payment-methods {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .footer {
        padding-top: 30px;
    }

    .footer-columns {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .footer-description {
        font-size: 0.8rem;
    }

    .footer-column-title {
        font-size: 0.9rem;
    }

    .footer-link {
        font-size: 0.8rem;
    }

    .payment-icon {
        width: 32px;
        height: 22px;
        font-size: 0.7rem;
    }
}

@media (max-width: 576px) {
    .footer-logo {
        width: 100px;
    }

    .footer-description {
        font-size: 0.75rem;
    }

    .footer-columns {
        gap: 15px;
    }

    .footer-column-title {
        font-size: 0.85rem;
        margin-bottom: 10px;
    }

    .footer-link {
        font-size: 0.75rem;
    }

    .footer-copyright {
        font-size: 0.75rem;
    }

    .payment-methods {
        gap: 8px;
    }

    .payment-icon {
        width: 28px;
        height: 20px;
        font-size: 0.65rem;
    }
}

.homepageLeft {
    width: 20% !important;
    display: flex;
    flex-direction: column;
    gap: 1em;
    padding-right: 0;
}

.manufacturers {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1em;
    background: #E8E8E8;
    padding: 1.5em 1em;
}

.manufacturers a.manufacturer-link img {
    width: 100%;
}

.manufacturers a.manufacturer-link {
    transition: all .4s ease;
}

.manufacturers a.manufacturer-link:hover {
    transform: scale(0.95);
}

.homepageRight {
    width: 20% !important;
    padding-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1em;
    padding-right: 0;
    padding-left: 0 !important;
}

.homepageCenter {
    width: 60%;
    padding: 0 1.5em;
}

.promoBox {
    border-radius: 10px;
    padding: 2rem 1.2rem 1rem 1.2rem;
    position: relative;
    overflow: hidden;
}

.orangeGradient {
    background: linear-gradient(180deg, #F77F00 0%, #D62828 100%);
}

.imgWrapper {
    margin: 0 0 -1rem 0;
    z-index: 2;
    position: relative;
    text-align: center;
}

.promoBox .textWrapper {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0 0.6rem 0 0.6rem;
    width: 100% !important;
    z-index: 1;
}

.promoBox .textWrapper h4 {
    font-family: kenya;
    font-weight: 900;
    text-align: center;
    text-transform: uppercase;
    color: #ffffff52;
    font-size: 8rem;
    line-height: 7rem;
}

.promoContent h4 {
    font-family: 'Inter';
    font-weight: 800;
    text-transform: uppercase;
    font-size: 1.688rem;
    color: #1D1D1D;
    letter-spacing: 1px;
}

.secondaryColor {
    color: var(--secondary-color) !important;
}

.promoContent ul {
    padding: 0 0 0 1.2rem;
    color: #fff;
}

.promoContent ul li {
    list-style: none;
    position: relative;
    margin-bottom: 5px;
    text-align: left;
}

.promoContent ul li::before {
    content: "";
    height: 6px;
    width: 6px;
    background: var(--secondary-color);
    position: absolute;
    left: -15px;
    top: 9px;
    border-radius: 10px;
}

.promoBox .textWrapper.duoTxt h4 {
    font-size: 5.1rem !important;
    line-height: 4.8rem;
}

.gradientBox {
    position: relative;
}

.gradientBox::before {
    content: "";
    position: absolute;
    background: #ffffffd1;
    inset: 10%;
    border-radius: 100%;
    filter: blur(50px);
    z-index: -1;
    animation: 5s gradientbox linear infinite;
}

@keyframes gradientbox {
    0% {
        transform: scale(0.7);
    }

    50% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(0.7);
    }
}

.redGradient {
    background: linear-gradient(0deg, #B31C2C 0%, #D11A2E 100%);
}

.box2 h4 {
    font-weight: 600;
}

.center {
    text-align: center;
}

.primaryColor {
    color: var(--primary-color);
}

.box2 h4 span {
    font-weight: 800 !important;
}

.promoBox.box2 .imgWrapper {
    margin: 3rem 0 0.5rem 0;
}

.darkredGradient {
    background: linear-gradient(0deg, #900F14 0%, #DD000D 100%);
}

.promoContent img {
    width: 80px;
    margin: -1rem 0 0.5em 0;
}

.promoContent .price {
    text-align: center;
    color: #fff;
    font-size: 1.6rem;
    font-weight: 700;
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    padding: 0.2rem 0.8rem;
    width: fit-content;
    border-radius: 10px;
    align-items: center;
    margin: 0 auto;
}

.promoContent .price .verticleTxt {
    width: 24px;
    display: inline-block;
    line-height: 1rem !important;
    text-align: center;
    font-weight: 400;
    font-size: 0.8rem !important;
}

.box3 .promoContent h4 {
    font-size: 1.875rem !important;
}

.box2 .promoContent h4 {
    font-size: 1.5rem;
}

.promoBox.box3 .imgWrapper {
    margin: 0rem 0 2rem 0 !important;
}

.promoBox.box4 h4,
.promoBox.box5 h4 {
    font-size: 1.875rem !important;
}

.promoBox .badge {
    font-size: 1.375rem;
    text-transform: uppercase;
    font-weight: 700;
    margin: -10px 0 10px 0 !important;
    padding: 6px 12px 6px 12px;
    transform: rotate(-4.124deg);
}

.bg-secondary {
    background: var(--secondary-color) !important;
}

.promoBox .discount {
    margin: 25px auto 40px auto;
    text-align: left;
    width: fit-content;
}

.promoBox .discount h5 {
    font-size: 1.5rem !important;
    text-transform: uppercase;
    margin: 0 !important;
}

.promoBox .discount .bigTxt {
    font-size: 3.48rem !important;
    color: #1D1D1D;
    font-weight: 800;
    line-height: 3.48rem;
}

.box4 .imgWrapper {
    margin: 0 -2.8rem -1rem 0 !important;
}

.bg-primary {
    background: var(--primary-color) !important;
}

.newsletterBox .promoContent h4.head {
    font-size: 2rem !important;
}

.newsletterBox .promoContent .badge {
    font-size: 1.185rem;
    transform: translate(0px, -10px) rotate(-2.6deg);
}

.newsletterBox h5 {
    margin: 30px 0 20px 0;
    text-align: left;
    text-transform: uppercase;
    font-weight: 600;
}

.newsletterBox .promoContent ul li::before {
    background: #fff;
}

.newsletterBox .promoContent h4 {
    font-size: 1.25rem;
}

.newsletterBox .promoContent ul {
    margin-bottom: 30px !important;
}

.newsletterBox .inputField {
    margin: 20px 0 20px 0;
}

.newsletterBox .secondaryColor {
    font-weight: 800;
}

.newsletterBox input.form-control {
    padding: 10px 10px;
    font-size: 0.8rem;
}

.newsletterBox .inputField {
    display: flex;
}

.newsletterBox .inputField button {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 0 0 -43px;
}

shark-icon-container {
    display: none;
}

.share-container {
    display: flex;
    flex-direction: column;
    gap: 2.5em;
    margin: 2em 0 0 0.5em;
}

.share-header {
    text-align: center;
    margin-bottom: 30px;
    color: #333;
}

.share-header h2 {
    font-weight: 600;
    margin-bottom: 8px;
    color: #2c3e50;
}

.share-header p {
    color: #6c757d;
    margin-bottom: 0;
}

.share-btn {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0;
    border-radius: 100px;
    text-decoration: none;
    color: white;
    transition: all var(--transition-speed) ease;
    border: none;
    width: 100%;
    position: relative;
    background: #2E77EF !important;
}

.share-btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transition: left 0.5s ease;
}

.share-btn-facebook {
    background-color: var(--facebook-color);
}

.share-btn-google {
    background-color: var(--google-color);
}

.share-btn-twitter {
    background-color: var(--twitter-color);
}

.share-icon {
    width: 75px;
    height: 75px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #2E77EF;
    border-radius: 100px;
    margin: -10px 20px -10px -10px;
    font-size: 20px;
    border: 4px solid #fff;
    filter: drop-shadow(0 0 14px rgba(0, 0, 0, 0.20));
    transition: all .5s ease;
}

.share-text {
    font-weight: 600;
}

.placeholder-note {
    margin-top: 25px;
    padding: 15px;
    background-color: #f8f9fa;
    border-radius: 8px;
    font-size: 14px;
    color: #6c757d;
    text-align: center;
    border-left: 4px solid var(--twitter-color);
}

.placeholder-note strong {
    color: #495057;
}

a#google-share,
a#google-share .share-icon {
    background: #C31E2D !important;
}

.share-btn-twitter,
.share-btn-twitter .share-icon {
    background: #000 !important;
}

.share-container .share-btn:hover .share-icon {
    transform: scale(0.95);
}

.slider-section {
    background-color: #e8e8e8;
    min-height: 510px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    margin-top: 1.5rem;
    /* background-image: url(../images/banner.png);
    background-size: 100% 100%;
    background-position: center center; */
}

/* Banner Carousel Container */
.banner-carousel {
    width: 100%;
    height: 100%;
}

/* Banner Slide */
.banner-slide {
    outline: none;
}

.slide-content {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    min-height: 450px;
    width: 100%;
    padding: 2rem 3rem 3rem 3rem !important;
}

/* Badge Style */
.badge-label {
    display: inline-block;
    background-color: var(--secondary-color);
    color: white;
    padding: 0.4rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 20px;
    border-radius: 4px;
    text-transform: uppercase;
    animation: slideInBadge 0.6s ease-out;
}

/* Heading Styles */
.slider-heading {
    font-size: 2.625rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #101010;
    animation: slideInHeading 0.8s ease-out 0.1s both;
}

/* Description Text */
.slider-description {
    font-size: 1.3rem;
    line-height: 1.6;
    color: #101010;
    margin-bottom: 30px;
    animation: slideInText 0.8s ease-out 0.2s both;
}

/* Shop Now Button */
.btn-shop {
    background-color: var(--secondary-color);
    color: white;
    padding: 14px 32px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    animation: slideInButton 0.8s ease-out 0.3s both;
}

.btn-shop:hover {
    background-color: #a01730;
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
}

.slide-left-content {
    flex: 1;
    animation: fadeInLeft 0.8s ease-out;
}

.product-circle-container {
    position: relative;
    flex: 1;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeInRight 0.8s ease-out;
}

.product-circle {
    position: absolute;
    border-radius: 50%;
    background-color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-circle img {
    width: 115%;
    height: 100%;
    object-fit: contain;
}

.product-circle.small {
    width: 150px;
    height: 150px;
    top: 20%;
    right: 55%;
    animation: popInSmall 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.4s both;
}

.product-circle.medium {
    width: 150px;
    height: 150px;
    top: 3%;
    right: 14%;
    animation: popInMedium 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.5s both;
}

.product-circle.main {
    width: 248px;
    height: 248px;
    bottom: -10%;
    right: 0px;
    animation: popInMain 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.6s both;
}

/* Animation Keyframes */
@keyframes slideInBadge {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInHeading {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInText {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInButton {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-80px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(80px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes popInSmall {
    0% {
        opacity: 0;
        transform: scale(0) translate(30px, -30px);
    }

    100% {
        opacity: 1;
        transform: scale(1) translate(0, 0);
    }
}

@keyframes popInMedium {
    0% {
        opacity: 0;
        transform: scale(0) translate(40px, -20px);
    }

    100% {
        opacity: 1;
        transform: scale(1) translate(0, 0);
    }
}

@keyframes popInMain {
    0% {
        opacity: 0;
        transform: scale(0) translate(50px, 30px);
    }

    100% {
        opacity: 1;
        transform: scale(1) translate(0, 0);
    }
}

.slick-dots {
    position: absolute;
    bottom: -10px !important;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
    z-index: 10;
}

.slick-dots li.slick-active button {
    width: 17px;
    height: 17px;
    border-radius: 10px;
    background: #fff !important;
    border: 3px solid #d11a2e;
}

.slick-dots li button {
    background: rgba(42, 21, 109, 0.60) !important;
}

.slick-prev,
.slick-next {
    display: none !important;
}

.product-circle.small img {
    width: 75%;
}

.product-circle.medium img {
    width: 85%;
}

.slick-dots li.slick-active button:before {
    display: none !important;
}

.slick-dots li button:before {
    font-size: 0 !important;
    text-align: center !important;
    color: rgba(42, 21, 109) !important;
    opacity: 0.5 !important;
}

.slick-dots li {
    display: inline-flex !important;
    justify-content: center !important;
    align-items: center;
}

.manufacturers-section {
    padding: 1rem 0 3rem 0;
}

.headTxt {
    background: var(--primary-color);
    color: white;
    padding: 1.1rem 2rem;
    border-radius: 12px;
    text-align: center;
    margin-bottom: 20px;
    font-size: 1.25rem;
    font-weight: 500;
    text-transform: uppercase;
}

.manufacturers-container {
    position: relative;
}

.products-carousel {
    position: relative;
    margin: 0 0 20px 0 !important;
}

.product-card {
    border-radius: 12px;
    padding: 1rem;
    margin: 0 5px;
    transition: all 0.3s ease;
    cursor: pointer;
    background: linear-gradient(180deg, #FFF 0%, #DDD 100%);
}

.product-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transform: translateY(-5px);
}

.product-image {
    width: 100%;
    height: 160px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    overflow: hidden;
}

.product-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.product-details {
    text-align: left;
}

.product-name {
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 10px;
    line-height: 1.4;
    min-height: 42px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-rating {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    gap: 4px;
}

.star {
    color: #FFAB00;
    font-size: 14px;
}

.rating-count {
    font-size: 12px;
    color: #888;
    margin-left: 4px;
}

/* Price Section */
.product-price-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* margin-top: 16px; */
}

.product-price {
    display: flex;
    gap: 0.5em;
    align-items: center;
}

.original-price {
    font-size: 13px;
    color: #999;
    text-decoration: line-through;
}

.current-price {
    font-size: 18px;
    font-weight: 700;
    color: var(--secondary-color);
}

.price-vat {
    font-size: 12px;
    color: #000000;
    font-weight: 600;
}

/* Add to Cart Button */
.add-to-cart-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 18px;
    border: 2px solid#fff;
}

.add-to-cart-btn:hover {
    background-color: #3d2565;
    transform: scale(1.1);
}

/* Navigation Arrows */
.carousel-arrow {
    position: absolute;
    top: initial;
    transform: translateY(-50%);
    background-color: white;
    border: 2px solid #1D1D1D;
    color: #1D1D1D;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    font-size: 1.4rem;
    bottom: -24% !important;
}

.carousel-arrow:hover {
    background-color: var(--secondary-color);
    color: white;
    border-color: var(--secondary-color);
}

.carousel-arrow.prev {
    left: 0;
}

.carousel-arrow.next {
    right: 0;
}

/* Slick Dots Customization */
.slick-dots {
    position: relative;
    bottom: 0;
    margin-top: -10px !important;
    display: flex;
    justify-content: center;
    gap: 0;
    list-style: none;
    padding: 0;
}

.slick-dots li button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #c0c0c0;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
    font-size: 10px;
    color: transparent;
}

.view-more-container {
    text-align: center;
    margin-top: 0px;
}

.view-more-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 14px 50px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.view-more-btn:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

section.manufacturers-section .slick-slider .slick-list {
    padding: 1rem 0 1rem 0;
}

section.manufacturers-section .slick-dots {
    display: none !important;
}

.brandProducts .product-card {
    border-radius: 10px;
    padding: 20px;
    width: 100%;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    animation: slideUp 0.6s ease-out;
    margin: 0 !important;
}

.brandProducts .product-card:hover {
    transform: translateY(-8px);
}

.brandProducts .brand-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 16px;
}

.brandProducts .product-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    border-radius: 12px;
    padding: 10px 20px;
    animation: fadeIn 0.8s ease-out 0.2s both;
    flex-direction: column-reverse;
    gap: 2em;
    margin-bottom: 0 !important;
}

.brandProducts .product-image-wrapper img {
    max-width: 100%;
    max-height: 145px;
    object-fit: contain;
}

.brandProducts .best-deal-badge {
    color: white;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    animation: popIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.4s both;
    border-radius: 7.818px;
    background: linear-gradient(0deg, #B31C2C 0%, #D11A2E 100%);
    text-align: center;
    text-transform: uppercase;
    min-width: 100px;
}

.brandProducts .product-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
    line-height: 1.4;
    text-align: center;
}

.brandProducts .pricing-section {
    padding-top: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    animation: slideInRight 0.6s ease-out 0.4s both;
}

.brandProducts .original-price {
    font-size: 15px;
    color: #666;
    text-decoration: line-through;
    font-weight: 500;
}

.brandProducts .discounted-price {
    font-size: 18px;
    font-weight: bold;
    color: var(--secondary-color);
}

.brandProducts .vat-text {
    font-size: 11px;
    color: #1D1D1D;
}

section.brandProducts .cardsWrapper {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1em;
}

.brandProducts .pricing-section>div {
    display: flex !important;
    justify-content: space-around;
    width: 100% !important;
    align-items: center;
}

.brandProducts .original-price {
    text-decoration: line-through;
    color: #41414194 !important;
}

select.form-select {
    border: 0;
}

span.inerTxt {
    color: #1D1D1D;
}

.product-card.darkCard {
    background: linear-gradient(0deg, #B31C2C 0%, #D11A2E 100%), #D9D9D9;
}

.product-card.darkCard .best-deal-badge {
    background: var(--primary-color);
}

.product-card.darkCard .product-title {
    color: #fff !important;
    font-weight: 600;
}

.product-card.darkCard .discounted-price {
    color: #FEBD18 !important;
}

.product-card.darkCard .original-price {
    color: #febd18d6 !important;
}

.product-card.darkCard span.vat-text {
    color: #fff;
    font-weight: 400;
}

.product-card.darkCard span.inerTxt {
    color: #fff;
    font-weight: 600;
}

.blogsSection {
    padding: 3rem 0;
}

.blogwrapper {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1em;
}

.blogCard .imgDiv img {
    width: 100%;
    object-fit: cover;
    height: 100%;
}

.blogCard .imgDiv {
    height: 210px !important;
    border-radius: 10px;
    overflow: hidden;
}

.blogCard .contentDiv {
    padding: 1em;
    border-radius: 10px;
    background: #FFF;
    box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.15);
    margin: -1em 0 0 0;
    z-index: 1;
    position: relative;
}

.blogCard .date {
    color: var(--secondary-color);
    font-weight: 500;
    font-size: 0.85rem;
}

.blogCard h5 {
    font-weight: 600;
    font-size: 1rem;
    margin: 0.5rem 0 0.6rem 0;
    line-height: 1.6;
}

.blogCard .readMoreBtn {
    border: 0 !important;
    background: transparent !important;
    font-weight: 500;
    font-size: 1rem !important;
    color: #1D1D1D !important;
    opacity: 0.7;
    transition: 0.5s ease;
}

.blogCard .readMoreBtn:hover {
    text-decoration: underline;
    opacity: 1;
}

.imgWrapper img {
    animation: imgAni 4s ease-in-out infinite;
}

@keyframes imgAni {
    0% {
        transform: scale(1)
    }

    50% {
        transform: scale(1.05)
    }

    100% {
        transform: scale(1)
    }
}

.mega-menu-category-title a {
    text-decoration: none;
    color: var(--primary-color);
}

section.innerBanner {
    /* background-image: url(../images/banner.png); */
    padding: 6rem 2rem !important;
    text-align: center;
    border-radius: 0 0 10px 10px;
    background: #EDEDED;
}

h2.pageTitle {
    font-size: 3.125rem !important;
    color: #101010;
    font-weight: 700;
    letter-spacing: 0.3px;
}

.filter-container {
    background: white;
    padding: 1.87rem 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    margin: 0 auto;
    position: sticky;
    top: 1em;
}

.filter-heading {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    letter-spacing: 0.3px;
}

.filter-label {
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--primary-color);
    display: block;
    letter-spacing: 0.6px;
}

/* Price Range Slider */
.price-range-container {
    position: relative;
}

.range-slider {
    width: 100%;
    height: 6px;
    border-radius: 3px;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
    background: linear-gradient(to right, #D11A2E 0%, #e0e0e0 0%);
}


.range-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--primary-color);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 5;
    top: -5px !important;
    position: relative;
}

.range-slider::-moz-range-thumb:hover {
    width: 20px;
    height: 10px;
}

.range-slider::-webkit-slider-runnable-track {
    height: 6px;
    background: transparent;
    border-radius: 3px;
}

.range-slider::-moz-range-track {
    background: transparent;
    border: none;
}

.price-range-labels {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 18px;
    padding-top: 10px;
}

.price-label {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 0.3px;
}

.price-value {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
}

.sorting-bar {
    background-color: var(--primary-color);
    padding: 20px 25px;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 100%;
    margin: 0 auto;
    box-shadow: 0 2px 10px rgba(45, 27, 78, 0.15);
}

.sorting-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.menu-icon {
    color: white;
    font-size: 18px;
    transition: all 0.3s ease;
}

.sorting-dropdown {
    position: relative;
}

.dropdown-toggle {
    background: none;
    border: none;
    color: white;
    font-size: 15px;
    font-weight: 500;
    padding: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
}

.dropdown-toggle:hover {
    color: #fff;
    text-decoration: none;
}

.dropdown-toggle::after {
    content: '\f078';
    font-family: 'Font Awesome 7 Free';
    font-weight: 900;
    font-size: 12px;
    transition: transform 0.3s ease;
    border: none !important;
}

.dropdown-toggle.show::after {
    transform: rotate(180deg);
}

.dropdown-menu {
    background-color: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    min-width: 250px;
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 8px;
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    padding: 6px 20px;
    color: #1d1d1d;
    text-decoration: none;
    display: block;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
    cursor: pointer;
}

.dropdown-item:hover {
    background-color: #f8f9fa;
    color: var(--primary-color);
    ;
    padding-left: 24px;
}

.sorting-right {
    color: white;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.2px;
}

.product-count {
    color: #e0e0e0;
}

.productsCard {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 1em;
    margin-top: 2em;
}

.productsCard .product-card {
    margin: 0 !important;
}

.hamburger ul li {
    list-style: none;
}

.hamburger ul {
    display: flex;
    gap: 1em;
    padding: 0;
    margin: 0 0 2.2rem 0;
}

.hamburger ul li a {
    text-decoration: none;
    color: #101010;
    font-weight: 700;
    font-size: 1.125rem;
}

.hamburger ul li a:hover {
    color: var(--primary-color);
}

.hamburger ul li:nth-last-child(1) a {
    color: var(--secondary-color);
}

.contentWrapper {
    padding: 4rem 0 4rem 0;
}

.pagination-container {
    display: flex;
    justify-content: end;
    align-items: center;
    gap: 0.5em;
    flex-wrap: wrap;
    margin-top: 3em
}

.pagination-btn {
    min-width: 44px;
    height: 44px;
    padding: 0;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0.3px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.pagination-btn.nav-btn {
    background-color: var(--primary-color);
    color: white;
    min-width: 120px;
}

.pagination-btn.nav-btn:hover {
    background-color: #1a0f2e;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(45, 27, 78, 0.25);
}

.pagination-btn.nav-btn:active {
    transform: translateY(0);
}

.pagination-btn.nav-btn:disabled {
    background-color: #ccc;
    cursor: not-allowed;
    opacity: 0.6;
}

/* Page Numbers */
.pagination-btn.page-num {
    background-color: #f0f0f0;
    color: #333;
}

.pagination-btn.page-num:hover {
    background-color: #e0e0e0;
    transform: translateY(-2px);
}

.pagination-btn.page-num.active {
    background-color: var(--secondary-color);
    color: white;
}

/* Ellipsis Button */
.pagination-btn.ellipsis {
    background-color: #f5d4dc;
    color: #c41e3a;
    cursor: default;
    font-size: 18px;
}

.pagination-btn.ellipsis:hover {
    background-color: #f5d4dc;
    transform: none;
}

/* Icon styling */
.pagination-btn i {
    margin-right: 6px;
}

.pagination-btn i:last-child {
    margin-right: 0;
    margin-left: 6px;
}

div#pageNumbers {
    display: flex;
    gap: 0.5em;
}

.blogsPage .blogCard .imgDiv {
    height: 340px !important;
}

.blogCard .blogTitle {
    margin: 0.5rem 0 0 0 !important;
    font-size: 1.56rem;
    font-weight: 600;
}

.blogsPage .blogCard .date {
    font-size: 1rem;
}

.blogsPage .blogwrapper {
    gap: 2em;
}

.Content .Title {
    font-size: 3.125rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    color: #101010;
    margin-bottom: 1rem;
}

.Content p,
.Content ul li,
.Content ol li {
    color: #101010;
    font-size: 1.25rem;
    letter-spacing: 0.178px;
}

.Content p {
    margin-bottom: 2rem;
}

.Content ul li {
    margin-bottom: 1em;
}

.SubHead {
    font-size: 1.56rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #101010;
}

.Content ul {
    margin-bottom: 2em;
}

.Content a {
    color: var(--secondary-color);
    transition: .3s ease;
    text-decoration: none;
}

.Content a:hover {
    color: var(--primary-color);
}

.blogsDetailPage .share-container {
    margin: 0 0 2rem 0;
    width: fit-content;
}

.blogsDetailPage .share-container .share-text {
    padding-right: 2em;
}

.blogsDetailPage .share-container .share-btn {
    background: #000000 !important;
}

.blogsDetailPage .share-container .share-icon {
    background: var(--secondary-color);
}

.iconBox h6 {
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 1.563rem;
}

.iconBoxWrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 2em;
}

.iconBox .Content p {
    margin: 0;
}

.imgWrap {
    border-radius: 20px;
    overflow: hidden;
}

.imgWrap img {
    width: 100%;
}

button#prevBtn i {
    margin: 0;
}

.Icons {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.Icons .Content {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.Icons .iconWrap {
    background: var(--primary-color);
    color: #fff;
    padding: 1rem;
    border-radius: 100%;
    border: 3px solid var(--secondary-color);
    height: 70px;
    width: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.Icons .iconWrap i {
    font-size: 1.8rem;
}

.Icons .Content h6 {
    margin: 0;
    color: #101010;
    font-weight: 600;
}

.contactForm {
    padding: 3rem 2em;
    border-radius: 20px;
    box-shadow: 2px 2px 24px 0 rgba(0, 0, 0, 0.15);
}

.form-control {
    border-radius: 20px;
    border: 2px solid #E2E2E2;
    font-family: 'Inter';
    color: #000000 !important;
    padding: 1.1rem 1.5rem !important;
}

.form-control:focus {
    border-color: var(--secondary-color);
}

.contactForm form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contactForm .formRow {
    display: flex;
    gap: 1rem;
    width: 100%;
}

.contactForm .formGroup {
    width: 100%;
}

.contactForm .submitBtn {
    border: 0;
    background: var(--secondary-color);
    color: #fff;
    padding: 1em 3em;
    border-radius: 10px;
    font-weight: 600;
    text-transform: uppercase;
    width: fit-content;
    margin: 0 auto;
    transition: .5s ease;
}

.contactForm .submitBtn:hover {
    background: var(--primary-color);
}

.mapWrapper iframe {
    width: 100%;
    height: 650px;
    border: 4px solid #D2D2D2;
    border-radius: 20px;
}

.mapWrapper {
    margin-top: 5rem !important;
}

.Icons .Content a {
    color: #101010;
}

.Icons .Content a:hover {
    color: var(--primary-color);
}

.modal {
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
}

.modal-content {
    border: none;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    max-width: 900px !important;
    width: 100% !important;
}

.modal-header {
    border: none;
    padding: 4rem 1rem 0rem 1rem;
    position: relative;
    flex-direction: column;
}

.modal-title {
    font-size: 2.1rem !important;
    font-weight: 700;
    color: #101010;
    width: 100%;
    text-align: center;
}

.modal-subtitle {
    text-align: center;
    margin-top: 5px;
    width: 100%;
}

.btn-close-custom {
    position: absolute;
    top: 30px;
    right: 30px;
    background: transparent;
    border: none;
    font-size: 2.5rem;
    color: #c41e3a;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
}

.btn-close-custom:hover {
    transform: rotate(90deg);
}

.modal-body {
    padding: 2rem 6rem 4rem 6rem;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    font-size: 1.1rem;
    font-weight: 400;
    color: #000;
    margin-bottom: 8px;
    display: block;
}

.password-toggle {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: #999;
    transition: color 0.3s;
}

.password-toggle:hover {
    color: #c41e3a;
}

.password-container {
    position: relative;
}

.checkbox-group {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    font-size: 13px;
}

.checkbox-group input[type="checkbox"] {
    cursor: pointer;
    margin-right: 8px;
    width: 18px;
    height: 18px;
}

.checkbox-group label {
    cursor: pointer;
    color: #000;
    margin: 0;
    font-size: 1rem;
}

.forgot-password {
    color: #c41e3a;
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.3s;
    font-size: 1rem;
}

.forgot-password:hover {
    opacity: 0.8;
}

.subscribe-text {
    color: #666;
    margin-left: 8px;
}

.btn-submit {
    width: 100%;
    padding: 1rem 1rem;
    background: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.btn-submit:hover {
    background: #a01829;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(196, 30, 58, 0.3);
}

.modal-footer-text {
    text-align: center;
    font-size: 1.25rem;
    color: #101010;
}

.modal-footer-link {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.3s;
}

.modal-footer-link:hover {
    opacity: 0.8;
}

.modal-dialog {
    max-width: 900px !important;
}

.gallery-container {
    background: white;
    padding: 30px;
    border-radius: 8px;
}

/* PRODUCT GALLERY AND DETAILS PAGE STYLES */
.gallery-row {
    display: flex;
    gap: 30px;
}

.gallery-left {
    width: 50%;
}

.main-image-container {
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 450px;
    background: linear-gradient(180deg, #FFF 0%, #DDD 100%);
    margin-bottom: 20px;
}

.main-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 20px;
    display: block;
    mix-blend-mode: multiply;
}

/* Thumbnails Container with Splide */
.thumbnails-wrapper {
    position: relative;
    width: 100%;
}

.thumbnail_slider {
    width: 100%;
}

.splide__slide {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 120px;
    width: 120px;
    overflow: hidden;
    transition: 0.2s;
    border-radius: 6px;
    background: linear-gradient(180deg, #FFF 0%, #DDD 100%);
    cursor: pointer;
    border: 2px solid #e0e0e0;
}

.splide__slide:hover {
    border-color: var(--secondary-color);
}

.splide--nav>.splide__track>.splide__list>.splide__slide.is-active {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 2px rgba(196, 30, 58, 0.2);
}

.splide__slide img {
    width: auto;
    height: auto;
    margin: auto;
    display: block;
    max-width: 100%;
    max-height: 100%;
    padding: 8px;
    mix-blend-mode: multiply;
}

/* Splide Navigation */
.splide__arrow {
    background: var(--secondary-color);
    width: 35px !important;
    height: 35px !important;
    border-radius: 50%;
    display: flex !important;
    align-items: center;
    justify-content: center;
    border: none !important;
    margin: 0 !important;
    transition: .5s ease;
}

.splide__arrow:hover {
    background: var(--secondary-color);
}

.splide__arrow svg {
    width: 16px;
    height: 16px;
    fill: white;
}

.splide__pagination {
    display: none !important;
}

/* RIGHT SIDE - DETAILS */
.gallery-right {
    width: 50%;
}

.product-details {
    display: flex;
    flex-direction: column;
    gap: 0px;
}

.detail-row {
    display: flex;
    gap: 20px;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 12px;
    align-items: center;
}

.detail-label {
    font-weight: 700;
    color: #101010;
    min-width: 120px;
    font-size: 1rem;
}

.detail-value {
    color: #101010;
    font-size: 1rem;
    flex: 1;
}

.detail-value.price {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 1rem;
}

.detail-value.red {
    color: var(--secondary-color);
}

.detail-value.green {
    color: #28a745;
}

/* Quantity Badge */
.quantity-badge {
    display: inline-block;
    background: #1a237e;
    color: white;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    margin-right: 8px;
}

.stock-status {
    display: flex;
    align-items: center;
    gap: 8px;
}

.stock-indicator {
    width: 8px;
    height: 8px;
    background: #28a745;
    border-radius: 50%;
}

/* Buttons Section */
.buttons-section {
    display: flex;
    gap: 12px;
    margin: 2rem 0 2rem 0;
}

.btn-action {
    width: fit-content;
    padding: 1rem 2rem;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 13px;
}

.btn-primary-action {
    background: var(--secondary-color);
    color: white;
}

.btn-primary-action:hover {
    background: #a01729;
    color: white;
    text-decoration: none;
}

.btn-secondary-action {
    background: white;
    color: #333;
    border: 1px solid #ddd;
}

.btn-secondary-action:hover {
    background: #f8f8f8;
    color: #333;
    text-decoration: none;
    border-color: #999;
}

.btn-info {
    width: 100%;
    background: #f8f8f800;
    color: #101010;
    border: 1px solid #101010;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    margin-top: 10px;
}

.btn-info:hover {
    background: var(--primary-color);
    border-color: #999;
    color: #fff;
    text-decoration: none;
}

.quantity-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.quantity-select {
    min-width: 55px;
    padding: 4px 8px;
    border: 1px solid var(--primary-color);
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-color);
    background: #fff;
    cursor: pointer;
}

.wishlistBtn {
    background: #E8E8E8;
    color: #101010;
}

.wishlistBtn:hover {
    background: #101010;
    color: #fff;
}

.header h6 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #101010;
    margin: 4rem 0 2rem 0;
    border-bottom: 1px solid #101010;
    padding-bottom: 1rem;
}

.productsDescription p {
    margin: 0 0 14px 0;
}

.productsDescription .productsCard {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
}

.LegalPage .Content .Title {
    font-size: 2.5rem !important;
}