@import url('https://fonts.googleapis.com/css2?family=Hanken+Grotesk:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --primary-yellow: #FFD700;
    --light-grey: #F5F5F5;
    --dark-grey: #333333;
    --text-color: #222222;
    --white_color: #FFFFFF;
    --featured_black: #000000;
}

.login_register_form_inputfields:focus {
    border: 1px solid var(--primary-yellow);
    box-shadow: none;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Hanken Grotesk", sans-serif;
}

/* Product Card Hover Effects - UK Planet Tools Style */
.product-card-hover {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.product-card-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-yellow);
}

.product-card-hover .product-image-container {
    position: relative;
    overflow: hidden;
}

.product-card-hover .product-image {
    width: 100%;
    height: 200px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.product-card-hover:hover .product-image {
    transform: scale(1.05);
}

.product-card-hover .product-badges {
    position: absolute;
    top: 12px;
    left: 12px;
}

.product-card-hover .product-badges .badge {
    font-size: 10px;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 4px;
}

.product-card-hover .product-actions-overlay {
    position: absolute;
    top: 12px;
    right: 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.3s ease;
}

.product-card-hover:hover .product-actions-overlay {
    opacity: 1;
    transform: translateX(0);
}

.product-card-hover .product-details {
    padding: 20px;
    flex: 1;
}

.product-card-hover .brand-name {
    font-size: 12px;
    font-weight: 600;
    color: var(--primary-yellow);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.product-card-hover .product-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
    line-height: 1.4;
    min-height: 44px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.product-card-hover .product-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.product-card-hover .stars {
    color: #ffc107;
    font-size: 14px;
}

.product-card-hover .rating-count {
    font-size: 12px;
    color: var(--text-light);
}

.product-card-hover .product-price {
    margin-bottom: 0;
}

.product-card-hover .original-price {
    color: var(--text-light);
    text-decoration: line-through;
    font-size: 14px;
    margin-right: 8px;
}

.product-card-hover .sale-price {
    color: black;

    font-size: 18px;
    font-weight: 700;
}

/* Hover Content - overlay inside card, doesn’t push layout */
.product-hover-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    padding: 20px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
    pointer-events: none;
    /* ignore clicks when hidden */
}

.product-card-hover:hover .product-hover-content {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.stock-status {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
    padding: 8px 12px;
    background: rgba(40, 167, 69, 0.1);
    border-radius: 6px;
    border-left: 3px solid #28a745;
}

.stock-status i {
    font-size: 14px;
}

.stock-text {
    font-size: 14px;
    font-weight: 600;
    color: #28a745;
}

.add-to-basket-btn {
    width: 100%;
    padding: 12px;
    font-weight: 600;
    border-radius: 8px;
    border: none;
    background: #dc3545;
    color: white;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.add-to-basket-btn:hover {
    background: #c82333;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
}

/* Responsive Design for Product Cards */
@media (max-width: 768px) {
    .product-card-hover .product-hover-content {
        position: relative;
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
        padding: 15px 20px 25px;
    }

    .product-card-hover .product-actions-overlay {
        opacity: 1;
        transform: translateX(0);
        position: relative;
        top: auto;
        right: auto;
        flex-direction: row;
        justify-content: center;
        margin: 15px 0;
    }

    .product-card-hover .product-title {
        height: auto;
        -webkit-line-clamp: 3;
    }
}

.banner-product-item {
    position: relative;
    transition: transform 0.3s ease;
}

.banner-product-item:hover {
    transform: translateY(-5px);
}

.banner-product-item img {
    width: 120px;
    height: 90px;
    object-fit: cover;
    border: 3px solid rgba(255, 255, 255, 0.8);
}

.product-brand-tag {
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-yellow);
    color: var(--dark-gray);
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.brand-showcase {
    background-color: var(--light-gray) !important;
}

.brand-card {
    position: relative;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-color);
}

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

/* .brand-card img {
    max-height: 60px;
    max-width: 120px;
    object-fit: contain;
    filter: grayscale(50%);
    transition: all 0.3s ease;
} */

/* .brand-card:hover img {
    filter: grayscale(0%);
} */

.brand-card>img {
    height: 9em;
}

/* Mobile brand card images */
@media (max-width: 768px) {
    .brand-card>img {
        height: 7em;
    }
}

.brand-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: #efb34c;
    color: var(--dark-gray);
    text-align: center;
    padding: 5px;
    font-size: 11px;
    font-weight: 600;
    transform: translateY(100%);
    transition: all 0.3s ease;
}

/* Categories Grid */
.categories-grid {
    background-color: var(--light-gray) !important;
}

.category-card-modern {
    background: white;
    border-radius: 15px;
    padding: 0;
    text-align: center;
    transition: all 0.3s ease;
    height: 300px;
    position: relative;
    border: 1px solid var(--border-color);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.category-content {
    padding: 30px 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

.category-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-yellow);
}

.category-icon {
    color: var(--primary-yellow);
    margin-bottom: 20px;
}

.category-card-modern h5 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--dark-gray);
}

.category-card-modern p {
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.5;
}

.brand-card:hover .brand-overlay {
    transform: translateY(0);
}

/* Quick Features */
.quick-features {
    background-color: #efb34c !important;
}

body {
    background-color: var(--light-grey);
    color: var(--text-color);
}

ul {
    padding-left: 0;
    margin-bottom: 0;
}

.sidebar {
    /* width: 300px; */
    height: fit-content;
    background-color: white;
    border-radius: 5px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.sidebar-title {
    font-size: 18px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-yellow);
}

/* .content-area {
    flex: 1;
} */

.section-title {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--dark-grey);
}

/* Tabs */
.tabs-container {
    margin-bottom: 30px;
}

.tabs-nav {
    display: flex;
    border-bottom: 2px solid #ddd;
    margin-bottom: 20px;
}

.tab-btn {
    padding: 10px 20px;
    background: none;
    border: none;
    cursor: pointer;
    font-weight: 600;
    color: var(--dark-grey);
    position: relative;
    transition: all 0.3s ease;
}

.tab-btn.active {
    color: var(--dark-grey);
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: var(--primary-yellow);
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 1em;
}

.horizntal_product_card {
    border-bottom: 1px solid #ddd;
    width: 100%;
}

.product-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.product-image {
    height: 180px;
    /* background-color: var(--light-grey); */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    position: relative;
}

.product-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
    object-position: center;
}

.sale-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: var(--primary-yellow);
    color: var(--dark-grey);
    padding: 5px 10px;
    border-radius: 4px;
    font-weight: bold;
    font-size: 12px;
}

label.text-capitalize {
    z-index: 0000;
}

.product-info {
    padding: 15px;
}

label.text-capitalize {
    z-index: 0000;
}

.product-title {
    font-size: 16px;
    margin-bottom: 10px;
    font-weight: normal;
}

.product-prices {
    display: flex;
    align-items: center;
    gap: 10px;
    /* margin-bottom: 10px; */
}

.current-price {
    font-weight: bold;
    color: #e10304;
}

.original-price {
    text-decoration: line-through;
    color: #777;
    font-size: 14px;
}

.product-rating {
    color: var(--primary-yellow);
    /* margin-bottom: 5px; */
}

.review-count {
    font-size: 12px;
    color: #777;
}

.best_seller_products_slider {
    width: 100%;
    /* height: 300px; */
    /* margin-bottom: 30px; */
}

.best_seller_products_slider .swiper-slide {
    /* background-color: white;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center; */
    height: 100%;
}

.best_seller_products_slider .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.best_seller_products_slider .swiper-slide h3 {
    font-size: 16px;
    margin-bottom: 10px;
    text-align: center;
}

.best_seller_products_slider .swiper-slide .price {
    font-weight: bold;
    color: var(--dark-grey);
}

.best_seller_products_slider .swiper-pagination {
    position: relative;
    margin-top: 15px;
}

/* Category List */
.category-list {
    list-style: none;
    margin-bottom: 30px;
}

.category-list li {
    /* margin-bottom: 10px; */
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.category-list li:last-child {
    border-bottom: none;
}

/* Responsive */
@media (max-width: 768px) {
    /* .main-content {
        flex-direction: column;
    } */

    .sidebar {
        width: 100%;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
}

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

/* Featured Products Section */
/* .featured_section {
    margin: 40px auto;
} */

.featured_section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* margin-bottom: 20px; */
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-yellow);
}

.featured_section-title {
    font-size: 24px;
    font-weight: bold;
    text-transform: capitalize;
    color: var(--featured_black);
}

.featured_products-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    padding: 2em 0;
    gap: 15px;
}

.featured_product-card {
    background-color: var(--white_color);
    border-radius: 5px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

li.dropdown_links_li.hand_tools_menu_li.text-capitalize.d-flex.align-items-center.justify-content-between {
    position: unset !important;
}

span.btn.details {
    width: 100%;
    color: #000000;
    background: #ffd700;
    margin-top: 10px;
}

span.btn.details:hover {
    border: #313131 1px solid;
    background: white;
    color: #313131;
}

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

.product_other_title {
    color: var(--dark-grey);
    font-weight: bold;
}

.product_price {
    color: var(--dark-grey);
    font-weight: bold;
    font-size: 1em;
    text-transform: capitalize;
}

.products_categories_mega_menu_item_image_box img {
    height: 100px;
    width: 100%;
    /* background-color: var(--light-grey); */
    display: flex;
    align-items: center;
    justify-content: center;
}

.featured_product-image {
    /* height: 150px; */
    /* background-color: var(--light-grey); */
    display: flex;
    align-items: center;
    justify-content: center;
}

.featured_product-image img {
    /* max-width: 80%;
    max-height: 80%;
    object-fit: contain; */
    height: 100%;
    width: 100%;
    /* object-fit: cover; */
    object-position: center;
}

.featured_product-info {
    padding: 10px;
    text-align: center;
}

.featured_product-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--featured_black);
    text-transform: capitalize;
    /* margin-top: 5px; */
}

@media (max-width: 1024px) {
    .featured_products-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .featured_products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 480px) {
    .featured_products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .featured_section-title {
        font-size: 20px;
    }
}

button.btn.save {
    color: white;
    background: #313131;
}

.banner_container {
    width: 100%;
    margin: 1em auto;
}

strong {
    color: #313131;
}

.banner_image {
    width: 100%;
    height: 210px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* .single_banner_image_box {
    height: 19em;
    position: absolute;
    top: -2em;
    right: 0;
} */

.single_banner_image {
    border-radius: 5px;
}

.banner_content {
    background-color: rgba(255, 255, 255, 0.8);
    padding: 20px 40px;
    border-radius: 5px;
    max-width: 80%;
}

div#sidebar-wrapper {
    position: relative;
    z-index: 1 !important;
}

.banner_title {
    font-size: 2rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.banner_subtitle {
    font-size: 1.5rem;
    color: #333;
    font-weight: 600;
}

@media (max-width: 768px) {
    .banner_image {
        height: 200px;
    }

    .banner_title {
        font-size: 1.5rem;
    }

    .banner_subtitle {
        font-size: 1.2rem;
    }
}

.single-policy {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1em;
}

.policy-desc h3 {
    font-size: 14px;
    font-weight: 500;
    margin: 5px 0;
    text-transform: uppercase;
}

.company-policy {
    padding: 1em;
    background: white;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
    margin-bottom: 0;
    cursor: pointer;
}

/* .single_banner_image_container {
    background-color: var(--primary-yellow);
    padding: 1em;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
} */

.shopnow_btn.text-capitalize {
    background: white;
    border: 1px solid transparent;
    padding: 5px 9px;
    border-radius: 5px;
}

.product_title {
    font-size: 3em;
    white-space: nowrap;
}

.single_banner_details_box {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5em;
}

.newsletter_banner_image_container {
    background-image: url("https://dt-multispare.myshopify.com/cdn/shop/files/newsbg.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 3em 2em;
}

.email_subscription_inputfield {
    background: transparent;
    border: 1px solid var(--primary-yellow);
    outline: none;
    padding: 8px 16px;
    border-radius: 50px;
    width: 90%;
}

.signup_newsletter_btn {
    background: var(--primary-yellow);
    border: 1px solid transparent;
    transition: all 300ms ease;
    padding: 8px 25px;
    right: 0;
    border-radius: 50px;
}

a.d-flex.align-items-center.text-decoration-none {
    text-decoration: none !important;
    color: black;
}

.signup_newsletter_btn:hover {
    background: black;
    color: var(--primary-yellow);
}

.horizontal_product_image_box {
    height: 120px;
    width: 200px;
}


.mega_menu_side_image,
.checkout_product_item_image,
.top_deals_product_item_image,
.horizontal_product_image {
    object-fit: cover;
    object-position: center;
}

.horizontal_product_item_title {
    font-size: 0.9em;
}

.swiper-pagination-bullet {
    background: transparent;
    border: 1px solid var(--primary-yellow);
}

.swiper-pagination-bullet-active {
    background: var(--primary-yellow);
}

.add_tocart_quickview_wishlist_options_container {
    padding: 15px;
    max-height: 0;
    position: absolute;
    width: 100%;
    transition: max-height 0.4s ease, opacity 0.4s ease, bottom 0.4s ease;
    opacity: 0;
    visibility: hidden;
    bottom: -4em;
    overflow: hidden;
}

.add_to_cart_btn {
    background: var(--primary-yellow);
    color: black;
    border: 1px solid transparent;
    padding: 5px 8px;
    border-radius: 5px;
    transition: all 300ms ease;
}

.options_iconboxes>i {
    background: var(--primary-yellow);
    color: black;
    padding: 10px;
    border-radius: 5px;
    height: 100%;
    cursor: pointer;
    transition: all 300ms ease;
}

.options_iconboxes>i:hover,
.add_to_cart_btn:hover {
    background: black;
    color: var(--primary-yellow);
}

a.formsubmit_btn {
    display: inline-block;
    width: 100%;
    text-align: center;
    margin-bottom: 8px;
}

.product-card:hover .add_tocart_quickview_wishlist_options_container {
    max-height: 100px;
    bottom: 0;
    opacity: 1;
    visibility: visible;
    background: var(--white_color);
}

.horizontal_product_details_box {
    display: flex;
    flex-direction: column;
    gap: 1em;
}

.top_deals_product_item_image_box {
    height: 100%;
    width: 100%;
}

.top_deals_product_item_card {
    background: var(--white_color);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1em;
    padding: 1em;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #eee;
    border-radius: 10px;
}

.top_deals_product_item_card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.shop_nowbtn {
    background: var(--primary-yellow);
    color: black;
    border-radius: 5px;
    padding: 5px 8px;
    border: 1px solid transparent;
    transition: all 300ms ease;
}

.shop_nowbtn:hover {
    background: black;
    color: var(--primary-yellow);
}

.top_deals_product_item_details_box {
    display: flex;
    flex-direction: column;
    gap: 1em;
    align-items: flex-start;
}

.top_deals_product_item_title {
    width: fit-content;
    font-size: 1em;
}

.top_deals_product_item_description {
    color: #677483;
    min-height: 6em;
    font-size: 0.9em;
}

.top_deals_product_item_price {
    font-weight: bold;
    font-size: 1em;
}

.related_products_items_slider,
.topdeals-slider {
    padding: 2em 2em;
}

.top-bar {
    padding: 10px 0;
    font-size: 14px;
    border-bottom: 1px solid #ddd;
    /* background-color: #f5f5f5; */
    /* background: linear-gradient(var(--white_color), 77%, #bcbcbd); */
    background: linear-gradient(var(--white_color), 77%, #eee);
}

.top-left {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.contact-info {
    display: flex;
    flex-direction: column;
}

.contact-info i {
    color: var(--primary-yellow);
}

.search-box {
    position: relative;
    width: 300px;
}

.search-box input {
    width: 100%;
    padding: 8px 15px;
    background: var(--white_color);
    border: 1px solid #ddd;
    padding-right: 35px;
    border-radius: 50px;
    outline: none;
    font-size: 14px;
}

.search-box i {
    position: absolute;
    right: 1em;
    top: 1.3em;
    transform: translateY(-50%);
    color: #777;
}

.main-nav {
    /* padding: 15px 0; */
    /* background-color: #fff; */
    background: #313131;
    /* border-bottom: 1px solid #ddd; */
    /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); */
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo a {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    text-decoration: none;
}

.nav-links ul {
    display: flex;
    list-style: none;
    gap: 1em;
}

.nav-links a {
    text-decoration: none;
    /* color: #333; */
    color: white;
    font-weight: 600;
    font-size: 15px;
    padding: 15px 8px 13px 8px;
    transition: color 0.3s;
}

.nav-links a:hover {
    background: var(--primary-yellow);
    color: #313131;
}

.nav-icons {
    display: flex;
    gap: 20px;
}

.nav-icons a {
    color: #333;
    font-size: 18px;
    position: relative;
    transition: color 0.3s;
}

/* .nav-icons a:hover {
    color: var(--primary-yellow);
} */

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    /* background-color: var(--primary-yellow);
    color: #333; */
    background-color: #dc3546;
    color: white;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: bold;
}

.main-footer {
    background-color: #ffffff;
}

.footer-container {
    padding: 2em 6em;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1em;
}

.footer-title {
    font-size: 18px;
    margin-bottom: 20px;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary-yellow);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: black;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--primary-yellow);
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.contact-info i {
    color: var(--primary-yellow);
    margin-top: 3px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo h2 {
    font-size: 32px;
    margin: 0;
}

.footer-logo span {
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
}

.footer-description {
    margin-bottom: 20px;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.social-links a {
    color: #fff;
    background-color: #333;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.social-links a:hover {
    background-color: var(--primary-yellow);
    color: #222;
    transform: translateY(-3px);
}

.map-link {
    color: black;
    text-decoration: none;
    font-weight: normal;
    display: inline-block;
    transition: all 0.3s;
}

.map-link:hover {
    text-decoration: underline;
    transform: translateX(5px);
}

/* Copyright Section */
.copyright-section {
    background-color: #eee;
    text-align: center;
    border: 1px solid #ddd;
}

.copyright-container {
    padding: 0.5em 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.copyright-section p {
    margin: 0;
    font-size: 14px;
}

.legal-links {
    display: flex;
    gap: 20px;
}

.legal-links a {
    color: black;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.legal-links a:hover {
    color: var(--primary-yellow);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: repeat(3, 1fr);
        padding: 1em;
    }

    .about-section {
        grid-column: span 2;
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .footer-container {
        grid-template-columns: 1fr;
        padding: 1em;
    }

    .about-section {
        grid-column: span 1;
    }
}

.phone_number {
    color: black;
    text-decoration: none;
}

.ecwid_topprod_section .ecwid-topprod-container {
    /* background: #F9F9F9; */
    position: relative;
    margin: 2em auto 0;
}

.ecwid-topprod-card {
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    background-color: #fff;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.ecwid-topprod-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.ecwid-topprod-card.c1 {
    background-color: #E5F7FC;
}

.ecwid-topprod-card.c2 {
    background-color: #EEEEEE;
}

.ecwid-topprod-card.c3 {
    background-color: #FBEADA;
}

.ecwid-topprod-text {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
    padding-right: 20px;
}

.ecwid-topprod-text h2 {
    font-size: 20px;
    font-weight: bold;
    margin: 0 0 12px 0;
    color: #000;
    line-height: 1.3;
}

.ecwid-topprod-text p {
    font-size: 14px;
    line-height: 1.5;
    color: #444;
    margin: 0 0 10px 0;
    flex-grow: 1;
}

.ecwid-topprod-price {
    font-size: 18px;
    font-weight: bold;
    color: #C00000;
    margin: 0 0 6px 0;
}

.ecwid-topprod-btn {
    color: #1C3C6D;
    font-size: 14px;
    font-weight: bold;
    text-decoration: underline;
    cursor: pointer;
    transition: color 0.3s ease;
    margin: 0;
    align-self: flex-start;
}

.ecwid-topprod-btn:hover {
    color: #003366;
}

.ecwid-topprod-image {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
}

.ecwid-topprod-image img {
    max-width: 100%;
    max-height: 160px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.ecwid-topprod-card:hover .ecwid-topprod-image img {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .ecwid-topprod-card {
        flex-direction: column;
        text-align: center;
        padding: 15px;
    }

    .ecwid-topprod-text,
    .ecwid-topprod-image {
        width: 100%;
        padding: 10px 0;
    }

    .ecwid-topprod-text {
        padding: 0;
        align-items: center;
    }

    .ecwid-topprod-btn {
        align-self: center;
    }

    .ecwid-topprod-image img {
        max-height: 140px;
    }
}

.hero_images_banners_slider_section .swiper-button-next,
.hero_images_banners_slider_section .swiper-button-prev {
    display: none;
}

.swiper-button-next,
.swiper-button-prev {
    background: var(--primary-yellow);
    color: var(--white_color);
    top: 50%;
    width: 40px;
    border-radius: 50%;
    height: 40px;
    margin-top: -15px;
    transition: all 300ms ease;
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 18px;
    font-weight: bold;
}

/* Mobile swiper buttons */
@media (max-width: 768px) {
    .swiper-button-next,
    .swiper-button-prev {
        height: 30px;
        width: 30px;
    }

    .swiper-button-next::after,
    .swiper-button-prev::after {
        font-size: 14px;
    }
}

.autoplay-progress {
    position: absolute;
    right: 16px;
    bottom: 16px;
    z-index: 10;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: var(--primary-yellow);
}

.autoplay-progress svg {
    --progress: 0;
    position: absolute;
    left: 0;
    top: 0px;
    z-index: 10;
    width: 100%;
    height: 100%;
    stroke-width: 4px;
    stroke: var(--primary-yellow);
    fill: none;
    stroke-dashoffset: calc(125.6px * (1 - var(--progress)));
    stroke-dasharray: 125.6;
    transform: rotate(-90deg);
}

.first_hero_image_slide {
    background-image: url("/images/dbr_banner_1.png");
}

.second_hero_image_slide {
    background-image: url("/images/hero_banner_3.jpg");
}

.third_image_slide {
    background-image: url("/images/hero_banner_1.jpg");
}

.hero_images_banner_slide_div {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    height: 30em;
    width: 100%;
}

.banner_slide_image_div {
    padding: 8em 0 0 0;
}

.hero_images_banner_slide_container {
    width: 100%;
    height: 100%;
}

.topdeals-slider a {
    text-decoration: none;
}

.main-header {
    position: fixed;
    top: 0;
    width: 100vw;
    z-index: 11;
}

/* .hero_images_banners_slider_section {
    margin: 6em 0 0;
} */

.all_categories_iconbox>i {
    /* border: 1px solid #ddd; */
    /* color: #333; */
    border: 1px solid white;
    color: white;
    font-size: 18px;
    padding: 5px 10px;
    cursor: pointer;
    border-radius: 5px;
}

.shopbycategories_btn {
    padding: 5px 8px;
    /* background: #e10304;
    color: var(--white_color); */
    background: var(--primary-yellow);
    color: black;
    border: 1px solid transparent;
    height: 3em;
}

.dropdown_links_nav {
    top: 2.96em;
    left: 0;
    background: var(--white_color);
    min-width: 15em;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out;
}

.shopbycategories_btn:hover .dropdown_links_nav {
    opacity: 1;
    visibility: visible;
}

.more_categories_menu_links_iconbox>i,
.dropdown_links_iconbox>i {
    font-size: 0.7em;
}

.dropdown_links_li {
    padding: 10px;
    border-bottom: 1px solid #ddd;
    transition: all 300ms ease;
    color: #333;
    font-weight: 600;
    font-size: 15px;
}

.more_categories_third_level_submenu_li:hover,
.more_categories_submenu_child_li:hover,
.more_categories_menu_li:hover,
.dropdown_links_li:hover {
    background: var(--primary-yellow);
}

.products_categories_mega_menu_container {
    top: 0;
    left: 100%;
    border: 1px solid #ddd;
    min-width: 70em;
    background: var(--white_color);
    opacity: 0;
    visibility: hidden;
    max-height: 20.5em;
    overflow-y: scroll;
    transition: opacity 0.4s ease;
}

.products_categories_mega_menu_item_box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid #ddd;
    padding: 1em;
    border-radius: 10px;
}

.products_categories_mega_menu_items_container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 1em;
    place-items: center;
}

.products_categories_mega_menu_inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1em;
    padding: 0.5em;
}

.products_categories_mega_menu_item_title {
    font-size: 0.9em;
    color: black;
}

.hand_tools_menu_li:hover .hand_tools_mega_menu {
    opacity: 1;
    visibility: visible;
}

.products_categories_title {
    font-size: 18px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-yellow);
    color: black;
}

.more_categories_menu_nav {
    top: 2.4em;
    right: 0%;
    background: var(--white_color);
    min-width: 15em;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out;
}

.more_categories_menu_li {
    padding: 10px;
    border-bottom: 1px solid #ddd;
    transition: all 300ms ease;
    color: #333;
    font-weight: 600;
    font-size: 15px;
}

.all_categories_iconbox:hover .more_categories_menu_nav {
    opacity: 1;
    visibility: visible;
}

.more_categories_submenu_child_ul {
    right: 100%;
    background: var(--white_color);
    min-width: 15em;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    opacity: 0;
    visibility: hidden;
    top: 0%;
    transition: opacity 0.3s ease-in-out;
}

.more_categories_submenu_parent:hover .more_categories_submenu_child_ul {
    opacity: 1;
    visibility: visible;
}

.more_categories_submenu_child_li {
    padding: 10px;
    border-bottom: 1px solid #ddd;
    transition: all 300ms ease;
    color: #333;
    font-weight: 600;
    font-size: 15px;
}

.more_categories_third_level_submenu_ul {
    background: var(--white_color);
    min-width: 15em;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    opacity: 0;
    visibility: hidden;
    top: 0%;
    right: 100%;
    transition: opacity 0.3s ease-in-out;
}

.more_categories_third_level_submenu_li {
    padding: 10px;
    border-bottom: 1px solid #ddd;
    transition: all 300ms ease;
    color: #333;
    font-weight: 600;
    font-size: 15px;
}

.third_level_submenu_parent_li:hover .more_categories_third_level_submenu_ul {
    opacity: 1;
    visibility: visible;
}

.ecwid_topprod_section {
    background: #ffffff;
    padding: 1em 0;
}

.dbr_logo_photobox {
    height: 2.5em;
    width: auto;
}

.footer-logo .dbr_logo_photobox {
    height: auto;
    width: auto;
}

.hamburger_menu_bars {
    display: block;
    height: 2px;
    width: 2em;
    background: #555;
    margin: 5px;
}

.nav-links.show {
    display: flex;
}

.hamburger_menu.active .hamburger_menu_bars:nth-child(1) {
    transform: translate(-10%, 50%) rotate(45deg);
}

.hamburger_menu.active .hamburger_menu_bars:nth-child(2) {
    display: none;
}

.hamburger_menu.active .hamburger_menu_bars:nth-child(3) {
    transform: translate(-10%, -196%) rotate(-45deg);
}

/* .first_side_banner_image {
    background-image: url("/images/side_banner_1.png");
}

.second_side_banner_image {
    background-image: url("/images/side_banner_2.png");
}

/* responsive footer for logo */

/* Footer Styles */
.main-footer {
    background-color: #ffffff;
    padding: 40px 0 0;
    color: var(--text-color);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.footer-section {
    margin-bottom: 30px;
}

.about-section {
    grid-column: 1 / -1;
}

.footer-logo img {
    max-width: 150px;
    height: auto;
    margin-bottom: 15px;
}

.footer-description {
    margin-bottom: 20px;
    line-height: 1.6;
    color: #555;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.social-links a {
    color: #fff;
    background-color: #333;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.social-links a:hover {
    background-color: var(--primary-yellow);
    color: #222;
    transform: translateY(-3px);
}

.map-link {
    color: var(--dark-grey);
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s;
}

.map-link:hover {
    color: var(--primary-yellow);
    text-decoration: underline;
}

.footer-title {
    font-size: 18px;
    margin-bottom: 20px;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 10px;
    color: var(--dark-grey);
}

.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary-yellow);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
    color: #555;
}

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

.footer-links a:hover {
    color: var(--primary-yellow);
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
    color: #555;
}

.contact-info i {
    color: var(--primary-yellow);
    margin-top: 3px;
}

.phone_number {
    color: #555;
    text-decoration: none;
    transition: color 0.3s;
}

.phone_number:hover {
    color: var(--primary-yellow);
}

/* Copyright Section */
.copyright-section {
    background-color: #eee;
    padding: 20px 0;
    border-top: 1px solid #ddd;
}

.copyright-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.copyright-section p {
    margin: 0 0 10px;
    font-size: 14px;
    color: #555;
}

.legal-links {
    display: flex;
    gap: 15px;
}

.legal-links a {
    color: #555;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.legal-links a:hover {
    color: var(--primary-yellow);
}

/* Responsive Styles */
@media (min-width: 768px) {
    .about-section {
        grid-column: span 2;
    }

    .copyright-container {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }

    .copyright-section p {
        margin-bottom: 0;
    }
}

form.d-inline {
    color: black;
    padding: 10px;
    border-radius: 5px;
    height: 100%;
    cursor: pointer;
    transition: all 300ms ease;
}

.truncate-2-lines {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-height: 1.4em;
    max-height: 2.8em;
    /* 1.4em * 2 lines */
}

@media (min-width: 992px) {
    .footer-container {
        grid-template-columns: repeat(5, 1fr);
        padding: 0 40px;
    }

    .about-section {
        grid-column: span 1;
    }
}

.main-banner,
.breadcrumbs_container {
    margin-top: 10em;
}

.breadcrumbs_anchor {
    color: var(--dark-grey);
    text-decoration: none;
}

.product_details_section {
    /* background: var(--white_color); */
    padding: 1em 0;
}

.gallery {
    width: 100%;
    /* max-width: 620px; */
    /* margin: 40px auto; */
}

.gallery-slider {
    width: 100%;
    height: auto;
    margin: 0 0 10px 0;
}

.gallery-slider .swiper-slide {
    width: auto;
    height: 300px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.gallery-slider .swiper-slide img {
    /* display: block; */
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    margin: 0 auto;
}

.gallery-thumbs {
    width: 100%;
    padding: 0;
    /* overflow: hidden; */
}

.gallery-thumbs .swiper-slide {
    width: 100px;
    height: 100px;
    text-align: center;
    overflow: hidden;
    opacity: 0.5;
}

.gallery-thumbs .swiper-slide-active {
    opacity: 1;
    border: 1px solid var(--primary-yellow);
}

.gallery-thumbs .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.product_rating_iconbox>i {
    color: gold;
}

.product_price_manipulation_inputfield {
    outline: none;
    padding: 5px 8px;
    text-align: center;
    border: 1px solid #ddd;
    max-width: 3em;
}

.product_price_manipulation_btn {
    border: 1px solid #ddd;
    padding: 6px 12px;
    background: var(--white_color);
    color: #333;
    transition: all 300ms ease;
}

.product_price_manipulation_btn:hover {
    background: var(--primary-yellow);
}

.addtocart_btn {
    background: var(--primary-yellow);
    color: black;
    border: 1px solid transparent;
    padding: 4px 14px;
    border-radius: 5px;
}

.related_products_items_slider .product-title {
    min-height: 4em;
}

.reviews_textbox,
.product_review_form_inputfield {
    outline: none;
    padding: 5px 10px;
    border: 1px solid #eee;
}

#product_reviews_form {
    max-width: 50%;
    margin: 0 auto;
}

.product_details_maincontainer .tabs-container {
    background: var(--white_color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 1em;
    border-radius: 5px;
}

.product_description {
    color: #555;
}

.cart_details_sidebar_container,
.checkout_details_container,
.products_items_sidebar_container {
    background: white;
    border-radius: 5px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.product_filter_item_title {
    color: #555;
    font-size: 1em;
}

.product_item_title {
    color: #555;
}

.product_description_ul {
    color: #555;
    padding: 1em 0 0 2em;
}

.product_review_form_inputfield.review_form_input_error {
    border: 1px solid crimson;
}

.cart_product_item_photobox {
    height: 3em;
}

.subtotal_details_container {
    border-bottom: 1px solid #dee2e6;
    padding-bottom: 1em;
}

.checkout_form_inputfields {
    outline: none;
    padding: 5px 8px;
    border: 1px solid #ddd;
}

.select_tag {
    outline: none;
    padding: 5px 8px;
    border: 1px solid #ddd;
    background: var(--white_color);
}

.checkout_details_form_inputfields_box>label {
    position: absolute;
    top: -0.9em;
    left: 0.5em;
    background: var(--white_color);
}

.checkout_product_item_image_box {
    height: 3.5em;
    width: 6em;
    border: 1px solid #eee;
    border-radius: 5px;
    padding: 0.4em;
}

.checkout_product_item_title,
.checkout_product_item_quanity,
.checkout_product_item_price {
    font-size: 0.9em;
    color: #555;
}

.checkout_product_item_box {
    border-bottom: 1px solid #dee2e6;
    padding: 1em 0;
}

.ssl_related_description {
    color: #555;
    font-size: 0.7em;
}

.addtocart_product_remove_product_btns_container .add_to_cart_btn {
    white-space: nowrap;
}

.product_details_maincontainer .product_details_row {
    background: var(--white_color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 1em;
    border-radius: 5px;
}

.product_details_maincontainer .tab-btn {
    padding: 5px 20px;
    background: none;
    border: none;
    cursor: pointer;
    font-weight: 600;
    color: var(--dark-grey);
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid var(--primary-yellow);
    border-radius: 5px;
}

.product_details_maincontainer .tab-btn.active {
    background: var(--primary-yellow);
    color: var(--dark-grey);
    border-radius: 5px;
}

.product_details_maincontainer .tab-content {
    border: 1px solid #ddd;
    padding: 1em;
    border-radius: 5px;
}

.tabs-nav {
    display: flex;
    border-bottom: 2px solid #ddd;
    margin-bottom: 20px;
    align-items: center;
    justify-content: flex-end;
}

.see_all_products_btn {
    padding: 10px 20px;
    background: none;
    border: none;
    font-weight: 600;
    color: var(--dark-grey);
    position: relative;
    transition: all 0.3s ease;
}

.product_details_maincontainer .tabs-nav {
    border: none;
    justify-content: flex-start;
    gap: 1em;
}

.product_details_maincontainer .tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: unset;
    height: unset;
    background-color: transparent;
    border-top-right-radius: 0;
    border-top-left-radius: 0;
}

.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
    opacity: 1 !important;
    cursor: pointer !important;
    pointer-events: auto !important;
}

/* 
.swiper-button-next {
    right: -2em;
}

.swiper-button-prev {
    left: -2em;
} */