/*
Template Name: RAPIDOTEX - Print On Demand
Author: yaminncco

Colors:
	Body 		: #333
	Headers 	: #2B2D42
	Primary 	: var(--primary-yellow-orange)
	Dark 		: var(--steel-grey) #var(--steel-grey)
	Grey 		: #E4E7ED #FBFBFC #8D99AE #B9BABC
*/

/* ============================================
   Rapidotex TRANSFERS - BRAND COLOR PALETTE
   ============================================ */
:root {
    /* Primary Colors */
    --primary-yellow-orange: #FFA726;  /* Lightning Yellow-Orange */
    --accent-orange: #FF6D00;          /* Accent Orange */
    --highlight-yellow: #FFD740;       /* Highlight Yellow */
    
    /* Base Colors */
    --pure-white: #FFFFFF;             /* Pure White */
    --jet-black: #000000;              /* Jet Black */
    --steel-grey: #1E1E1E;             /* Steel Grey */
    
    /* Gradient */
    --brand-gradient: linear-gradient(90deg, #FFA726, #FF6D00);
    --brand-gradient-hover: linear-gradient(90deg, #FF6D00, #FFA726);
    
    /* Text Colors */
    --text-dark: #1E1E1E;
    --text-light: #6b7280;
    --text-white: #FFFFFF;
    
    /* Background Colors */
    --bg-light: #f9fafb;
    --bg-white: #FFFFFF;
    --bg-dark: #1E1E1E;
    --bg-black: #000000;
    
    /* Border & Shadows */
    --border-color: #e5e7eb;
    --shadow-sm: 0 2px 8px rgba(255, 167, 38, 0.1);
    --shadow-md: 0 4px 15px rgba(255, 167, 38, 0.2);
    --shadow-lg: 0 8px 25px rgba(255, 167, 38, 0.3);
}

/* Shopping Cart Side Panel */
.cart-panel {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100vh;
    background: #fff;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: right 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
}

.cart-panel.active {
    right: 0;
}

.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
}

.cart-overlay.active {
    opacity: 1;
    visibility: visible;
}

.cart-panel-header {
    padding: 20px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-panel-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    color: #333;
}

.close-cart {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
    transition: color 0.3s;
}

.close-cart:hover {
    color: var(--primary-yellow-orange);
}

.cart-panel-body {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.empty-cart-message {
    text-align: center;
    padding: 40px 0;
}

.empty-cart-message i {
    font-size: 48px;
    color: #ddd;
    margin-bottom: 20px;
}

.empty-cart-message p {
    margin-bottom: 20px;
    color: #777;
}

.btn-primary {
    background: var(--primary-yellow-orange);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 30px;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-primary:hover {
    background: var(--accent-orange);
    border:none;
}
.btn-check:checked+.btn, .btn.active, .btn.show, .btn:first-child:active, :not(.btn-check)+.btn:active {
    background: var(--accent-orange);
    border:none;
}.cart-panel-footer {
    padding: 20px;
    border-top: 1px solid #eee;
}

.cart-summary {
    margin-top: 20px;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 600;
}

.btn-checkout {
    width: 100%;
    padding: 12px;
    background: var(--primary-yellow-orange);
    color: white;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-checkout:hover {
    background: var(--accent-orange);
}

/* Responsive styles */
@media (max-width: 480px) {
    .cart-panel {
        width: 100%;
        right: -100%;
    }

    .cart-panel.active {
        right: 0;
    }
}

/* Prevent body scrolling when cart is open */
body.cart-open {
    overflow: hidden;
}
/*
Fonts: Montserrat

Table OF Contents
------------------------------------
1 > GENERAL
------ Typography
------ Buttons
------ Inputs
------ Sections
------ Breadcrumb
2 > HEADER
------ Top header
------ Logo
------ Search
------ Cart
3 > NAVIGATION
------ Main nav
------ Responsive Nav
4 > CATEGORY SHOP
5 > HOT DEAL
6 > PRODUCT
------ Product
------ Widget product
------ Product slick
7 > STORE PAGE
------ Aside
------ Store
8 > PRODUCT DETAILS PAGE
------ Product view
------ Product details
------ Product tab
9 > CHECKOUT PAGE
10 > NEWSLETTER
11 > FOOTER
11 > SLICK STYLE
12 > RESPONSIVE
------------------------------------*/

/*=========================================================
	01 -> GENERAL
===========================================================*/


/*----------------------------*\
	Typography
\*----------------------------*/

body {
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    color: #333;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #2b2d42;
    font-weight: 700;
    margin: 0 0 10px;
}

a {
    color: #2b2d42;
    font-weight: 500;
    -webkit-transition: 0.2s color;
    transition: 0.2s color;
}



ul,
ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

/*----------------------------*\
	Buttons
\*----------------------------*/

.primary-btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--primary-yellow-orange);
    border: none;
    border-radius: 40px;
    color: #fff;
    text-transform: uppercase;
    font-weight: 700;
    text-align: center;
    -webkit-transition: 0.2s all;
    transition: 0.2s all;
}

.primary-btn:hover,
.primary-btn:focus {
    opacity: 0.9;
    color: #fff;
}

/*----------------------------*\
	Inputs
\*----------------------------*/

/*-- Text input --*/

.input {
    height: 40px;
    padding: 0px 15px;
    border: 1px solid #e4e7ed;
    background-color: #fff;
    width: 100%;
}

textarea.input {
    padding: 15px;
    min-height: 90px;
}

/*-- Number input --*/

.input-number {
    position: relative;
}

.input-number input[type="number"]::-webkit-inner-spin-button,
.input-number input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.input-number input[type="number"] {
    -moz-appearance: textfield;
    height: 40px;
    width: 100%;
    border: 1px solid #e4e7ed;
    background-color: #fff;
    padding: 0px 35px 0px 15px;
}

.input-number .qty-up,
.input-number .qty-down {
    position: absolute;
    display: block;
    width: 20px;
    height: 20px;
    border: 1px solid #e4e7ed;
    background-color: #fff;
    text-align: center;
    font-weight: 700;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.input-number .qty-up {
    right: 0;
    top: 0;
    border-bottom: 0px;
}

.input-number .qty-down {
    right: 0;
    bottom: 0;
}

.input-number .qty-up:hover,
.input-number .qty-down:hover {
    background-color: #e4e7ed;
    color: var(--primary-yellow-orange);
}

/*-- Select input --*/

.input-select {
    padding: 0px 15px;
    background: #fff;
    border: 1px solid #e4e7ed;
    height: 40px;
}

/*-- checkbox & radio input --*/

.input-radio,
.input-checkbox {
    position: relative;
    display: block;
}

.input-radio input[type="radio"]:not(:checked),
.input-radio input[type="radio"]:checked,
.input-checkbox input[type="checkbox"]:not(:checked),
.input-checkbox input[type="checkbox"]:checked {
    position: absolute;
    margin-left: -9999px;
    visibility: hidden;
}

.input-radio label,
.input-checkbox label {
    font-weight: 500;
    min-height: 20px;
    padding-left: 20px;
    margin-bottom: 5px;
    cursor: pointer;
}

.input-radio input[type="radio"] + label span,
.input-checkbox input[type="checkbox"] + label span {
    position: absolute;
    left: 0px;
    top: 4px;
    width: 14px;
    height: 14px;
    border: 2px solid #e4e7ed;
    background: #fff;
}

.input-radio input[type="radio"] + label span {
    border-radius: 50%;
}

.input-radio input[type="radio"] + label span:after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%) scale(0);
    -ms-transform: translate(-50%, -50%) scale(0);
    transform: translate(-50%, -50%) scale(0);
    background-color: #fff;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    opacity: 0;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
}

.input-checkbox input[type="checkbox"] + label span:after {
    content: "✔";
    position: absolute;
    top: -2px;
    left: 1px;
    font-size: 10px;
    color: #fff;
    opacity: 0;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
}

.input-radio input[type="radio"]:checked + label span,
.input-checkbox input[type="checkbox"]:checked + label span {
    background-color: var(--primary-yellow-orange);
    border-color: var(--primary-yellow-orange);
}

.input-radio input[type="radio"]:checked + label span:after {
    opacity: 1;
    -webkit-transform: translate(-50%, -50%) scale(1);
    -ms-transform: translate(-50%, -50%) scale(1);
    transform: translate(-50%, -50%) scale(1);
}

.input-checkbox input[type="checkbox"]:checked + label span:after {
    opacity: 1;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.input-radio .caption,
.input-checkbox .caption {
    margin-top: 5px;
    max-height: 0;
    overflow: hidden;
    -webkit-transition: 0.3s max-height;
    transition: 0.3s max-height;
}

.input-radio input[type="radio"]:checked ~ .caption,
.input-checkbox input[type="checkbox"]:checked ~ .caption {
    max-height: 800px;
}

/*----------------------------*\
	TESTIMONIALS & CLIENTS
\*----------------------------*/
.testimonials-section {
    padding: 100px 0 60px;
    background-color: #f8f9fa;
    position: relative;
    overflow: hidden;
}

/* Statistics Counter */
.stats-counter {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 60px;
    padding: 40px 0;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 1;
}

.stats-counter:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.2) 0%,
        rgba(255, 255, 255, 0) 100%
    );
    z-index: -1;
    border-radius: 15px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    position: relative;
}

.stat-item:not(:last-child):after {
    content: "";
    position: absolute;
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 50px;
    background: linear-gradient(
        to bottom,
        transparent,
        rgba(0, 0, 0, 0.1),
        transparent
    );
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-yellow-orange);
    margin-bottom: 10px;
    line-height: 1;
    font-family: "Montserrat", sans-serif;
    transition: all 0.5s ease;
}

.stat-label {
    font-size: 1.1rem;
    color: #666;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .stats-counter {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .stat-item:not(:last-child):after {
        display: none;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .stat-label {
        font-size: 0.9rem;
    }
}

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

.section-header .subtitle {
    display: inline-block;
    color: var(--primary-yellow-orange);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.section-header h2 {
    font-size: 2.8rem;
    color: #222;
    margin-bottom: 20px;
    font-weight: 800;
    line-height: 1.2;
}

.trustpilot-widget {
    margin: 25px 0;
}

.trustpilot-widget .stars {
    color: #00b67a;
    font-size: 28px;
    letter-spacing: 3px;
    margin-bottom: 5px;
}

.trustpilot-widget p {
    color: #666;
    font-size: 1rem;
    margin: 0;
}

.section-header p {
    color: #666;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

.testimonial-card {
    background: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.testimonial-text {
    font-style: italic;
    color: #555;
    margin-bottom: 20px;
    position: relative;
    padding-left: 25px;
}

.testimonial-text:before {
    content: "\201C";
    font-size: 4rem;
    color: var(--primary-yellow-orange);
    position: absolute;
    left: -15px;
    top: -15px;
    line-height: 1;
    font-family: Georgia, serif;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover;
}

.author-info h4 {
    margin: 0;
    color: #333;
    font-weight: 600;
}

.author-info p {
    margin: 5px 0 0;
    color: #777;
    font-size: 0.9rem;
}

/* Client Logos */
.clients-section {
    padding: 40px 0 80px;
    background-color: #fff;
}

.client-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 40px;
}

.client-logo {
    opacity: 0.6;
    transition: opacity 0.3s ease;
    max-width: 120px;
    filter: grayscale(100%);
}

.client-logo:hover {
    opacity: 1;
    filter: grayscale(0%);
}

/* Slick Customization */
.testimonials-slider .slick-dots {
    bottom: -40px;
}

.testimonials-slider .slick-dots li button:before {
    font-size: 12px;
    color: var(--primary-yellow-orange);
    opacity: 0.3;
}

.testimonials-slider .slick-dots li.slick-active button:before {
    color: var(--primary-yellow-orange);
    opacity: 1;
}

.testimonials-slider .slick-prev:before,
.testimonials-slider .slick-next:before {
    color: var(--primary-yellow-orange);
    font-size: 24px;
}

.testimonials-slider .slick-prev {
    left: -35px;
}

.testimonials-slider .slick-next {
    right: -35px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .testimonial-card {
        padding: 20px;
        margin: 10px;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .client-logos {
        gap: 20px;
    }

    .client-logo {
        max-width: 100px;
    }
}

@media (max-width: 576px) {
    .testimonials-section {
        padding: 50px 0;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .client-logos {
        gap: 15px;
    }

    .client-logo {
        max-width: 80px;
    }
}

/*----------------------------*\
	Section
\*----------------------------*/

.section {
    padding-top: 30px;
    padding-bottom: 30px;
}

.section-title {
    position: relative;
    margin-bottom: 30px;
    margin-top: 15px;
}

.section-title .title {
    display: inline-block;
    text-transform: uppercase;
    margin: 0px;
}

.section-title .section-nav {
    float: right;
}

.section-title .section-nav .section-tab-nav {
    display: inline-block;
}

.section-tab-nav li {
    display: inline-block;
    margin-right: 15px;
}

.section-tab-nav li:last-child {
    margin-right: 0px;
}

.section-tab-nav li a {
    font-weight: 700;
    color: #8d99ae;
}

.section-tab-nav li a:after {
    content: "";
    display: block;
    width: 0%;
    height: 2px;
    background-color: var(--primary-yellow-orange);
    -webkit-transition: 0.2s all;
    transition: 0.2s all;
}

.section-tab-nav li.active a {
    color: var(--primary-yellow-orange);
}

.section-tab-nav li a:hover:after,
.section-tab-nav li a:focus:after,
.section-tab-nav li.active a:after {
    width: 100%;
}

.section-title .section-nav .products-slick-nav {
    top: 0px;
    right: 0px;
}

/*----------------------------*\
	Breadcrumb
\*----------------------------*/

#breadcrumb {
    padding: 30px 0px;
    background: #fbfbfc;
    border-bottom: 1px solid #e4e7ed;
    margin-bottom: 30px;
}

#breadcrumb .breadcrumb-header {
    display: inline-block;
    margin-top: 0px;
    margin-bottom: 0px;
    margin-right: 15px;
    text-transform: uppercase;
}

#breadcrumb .breadcrumb-tree {
    display: inline-block;
}

#breadcrumb .breadcrumb-tree li {
    display: inline-block;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
}

#breadcrumb .breadcrumb-tree li + li {
    margin-left: 10px;
}

#breadcrumb .breadcrumb-tree li + li:before {
    content: "/";
    display: inline-block;
    color: #8d99ae;
    margin-right: 10px;
}

#breadcrumb .breadcrumb-tree li a {
    color: #8d99ae;
}

#breadcrumb .breadcrumb-tree li a:hover {
    color: var(--primary-yellow-orange);
}

/*=========================================================
	02 -> HEADER
===========================================================*/

/*----------------------------*\
	Top header
\*----------------------------*/

#top-header {
    padding-top: 10px;
    padding-bottom: 10px;
    background-color: var(--steel-grey);
}

.header-links li {
    display: inline-block;
    margin-right: 15px;
    font-size: 12px;
}

.header-links li:last-child {
    margin-right: 0px;
}

.header-links li a {
    color: #fff;
}

.header-links li a:hover {
    color: var(--primary-yellow-orange);
}

.header-links li i {
    color: var(--primary-yellow-orange);
    margin-right: 5px;
}

/*----------------------------*\
	Logo
\*----------------------------*/

#header {
    padding-top: 15px;
    padding-bottom: 15px;
    background-color: var(--steel-grey);
}

.header-logo {
    float: left;
}

.header-logo .logo img {
    display: block;
}

/*----------------------------*\
	Search
\*----------------------------*/

.header-search {
    padding: 15px 0px;
}

.header-search form {
    position: relative;
}

.header-search form .input-select {
    margin-right: -4px;
    border-radius: 40px 0px 0px 40px;
}

.header-search form .input {
    width: calc(100% - 260px);
    margin-right: -4px;
}

.header-search form .search-btn {
    height: 40px;
    width: 100px;
    background: var(--primary-yellow-orange);
    color: #fff;
    font-weight: 700;
    border: none;
    border-radius: 0px 40px 40px 0px;
}

/*----------------------------*\
	Cart
\*----------------------------*/

.header-ctn {
    float: right;
    padding: 15px 0px;
}

.header-ctn > div {
    display: inline-block;
}

.header-ctn > div + div {
    margin-left: 15px;
}

.header-ctn > div > a {
    display: block;
    position: relative;
    width: 90px;
    text-align: center;
    color: #fff;
}

.header-ctn > div > a > i {
    display: block;
    font-size: 18px;
}

.header-ctn > div > a > span {
    font-size: 12px;
}

.header-ctn > div > a > .qty {
    position: absolute;
    right: 15px;
    top: -10px;
    width: 20px;
    height: 20px;
    line-height: 20px;
    text-align: center;
    border-radius: 50%;
    font-size: 10px;
    color: #fff;
    background-color: var(--primary-yellow-orange);
}

.header-ctn .menu-toggle {
    display: none;
}

.cart-dropdown {
    position: absolute;
    width: 300px;
    background: #fff;
    padding: 15px;
    -webkit-box-shadow: 0px 0px 0px 2px #e4e7ed;
    box-shadow: 0px 0px 0px 2px #e4e7ed;
    z-index: 99;
    right: 0;
    opacity: 0;
    visibility: hidden;
}

.dropdown.open > .cart-dropdown {
    opacity: 1;
    visibility: visible;
}

.cart-dropdown .cart-list {
    max-height: 180px;
    overflow-y: scroll;
    margin-bottom: 15px;
}

.cart-dropdown .cart-list .product-widget {
    padding: 0px;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.cart-dropdown .cart-list .product-widget:last-child {
    margin-bottom: 0px;
}

.cart-dropdown .cart-list .product-widget .product-img {
    left: 0px;
    top: 0px;
}

.cart-dropdown .cart-list .product-widget .product-body .product-price {
    color: #2b2d42;
}

.cart-dropdown .cart-btns {
    margin: 0px -17px -17px;
}

.cart-dropdown .cart-btns > a {
    display: inline-block;
    width: calc(50% - 0px);
    padding: 12px;
    background-color: var(--primary-yellow-orange);
    color: #fff;
    text-align: center;
    font-weight: 700;
    -webkit-transition: 0.2s all;
    transition: 0.2s all;
}

.cart-dropdown .cart-btns > a:first-child {
    margin-right: -4px;
    background-color: var(--steel-grey);
}

.cart-dropdown .cart-btns > a:hover {
    opacity: 0.9;
}

.cart-dropdown .cart-summary {
    border-top: 1px solid #e4e7ed;
    padding-top: 15px;
    padding-bottom: 15px;
}

/*=========================================================
	03 -> Navigation
===========================================================*/
/* public/css/navbar.css */

/* Import Google Fonts */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap");

/* Variables CSS */
:root {
    --primary-color: var(--primary-yellow-orange);
    --primary-gradient: linear-gradient(135deg, var(--primary-yellow-orange), var(--accent-orange));
    --secondary-color: #333;
    --text-color: #555;
    --light-bg: #f8f9fa;
    --white: #fff;
    --shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 4px 30px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
    --border-radius: 12px;
    --font-family: "Inter", sans-serif;
}

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

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--text-color);
}

/* Top Bar */
.top-bar {
    background: linear-gradient(135deg, #a94442 0%, #6d0013 100%);
    color: var(--white);
    padding: 8px 0;
    font-size: 13px;
    text-align: center;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.top-bar-left {
    display: flex;
    gap: 30px;
}

.top-bar-right {
    display: flex;
    gap: 15px;
    align-items: center;
}

.top-bar a {
    color: var(--white);
    text-decoration: none;
    transition: opacity 0.3s;
}

.top-bar a:hover {
    opacity: 0.8;
}

/* Main Navigation */
.main-navbar {
    background: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

.main-navbar.scrolled {
    box-shadow: var(--shadow-hover);
}

.navbar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
    color: var(--primary-color);
    text-decoration: none;
}

.logo i {
    font-size: 32px;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 40px;
    margin: 0;
    padding: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    padding: 10px 0;
    transition: var(--transition);
    position: relative;
    display: block;
}

.nav-link:hover,
.nav-link:focus,
.nav-link.active {
    color: var(--primary-color);
    text-decoration: dashed;
}

.nav-link::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gradient);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-item.active .nav-link::after {
    width: 100%;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-toggle::after {
    content: "\f107";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-toggle::after {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 250px;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    border: 1px solid #f0f0f0;
    z-index: 1000;
    padding: 8px 0;
}

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

.dropdown-item {
    display: block;
    padding: 12px 20px;
    color: var(--text-color);
    text-decoration: none;
    transition: var(--transition);
    border-bottom: 1px solid #f5f5f5;
}

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

.dropdown-item:hover,
.dropdown-item:focus {
    background: var(--light-bg);
    color: var(--primary-color);
    padding-left: 25px;
    text-decoration: none;
}

.dropdown-item i {
    width: 20px;
    margin-right: 10px;
    color: var(--primary-color);
}

/* User Dropdown Styles */
.user-dropdown .dropdown-menu {
    right: 0;
    left: auto;
}

.dropdown-menu-user {
    min-width: 200px;
}

.dropdown-divider {
    height: 1px;
    background: #e9ecef;
    margin: 8px 0;
}

.logout-btn {
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
    font-family: inherit;
    font-size: inherit;
}

/* Auth Buttons */
.auth-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Mobile and Desktop Auth Buttons */
.mobile-auth {
    display: none;
    width: 100%;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
}

.desktop-auth {
    display: flex;
}

.btn {
    padding: 10px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-align: center;
    white-space: nowrap;
}

.btn:hover,
.btn:focus {
    text-decoration: none;
}

.btn-login {
    color: var(--secondary-color);
    border-color: #e0e0e0;
    background: var(--white);
}

.btn-login:hover,
.btn-login:focus {
    background: var(--light-bg);
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.btn-register {
    background: var(--primary-gradient);
    color: var(--white);
    border-color: transparent;
}

.btn-register:hover,
.btn-register:focus {
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-orange));
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(209, 0, 36, 0.3);
}

/* Cart Button */
.btn-cart {
    position: relative;
    color: var(--secondary-color);
    font-size: 18px;
    padding: 10px;
    border-radius: 50%;
    transition: var(--transition);
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-cart:hover,
.btn-cart:focus {
    color: var(--primary-color);
    background: var(--light-bg);
    text-decoration: none;
}

/* Cart Badge Container */
.cart-badge {
    position: relative;
    display: inline-block;
}

/* Cart Count Badge */
.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--primary-yellow-orange);
    color: white;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 6px;
    border-radius: 50%;
    min-width: 18px;
    height: 18px;
    text-align: center;
    line-height: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(209, 0, 36, 0.3);
    border: 2px solid white;
    transition: all 0.3s ease;
    z-index: 10;
}

/* Hide badge when count is 0 */
.cart-count[data-count="0"] {
    display: none;
}

/* Animation for cart count updates */
.cart-count.updated {
    animation: cartBounce 0.6s ease;
}

@keyframes cartBounce {
    0% { transform: scale(1); }
    50% { transform: scale(1.3); }
    100% { transform: scale(1); }
}

/* Hover effect on cart button */
.btn-cart:hover .cart-count {
    transform: scale(1.1);
    box-shadow: 0 3px 6px rgba(209, 0, 36, 0.4);
}

/* Pulse animation for new items */
.cart-count.pulse {
    animation: cartPulse 1s ease-in-out;
}

@keyframes cartPulse {
    0% { box-shadow: 0 2px 4px rgba(209, 0, 36, 0.3); }
    50% { box-shadow: 0 2px 4px rgba(209, 0, 36, 0.3), 0 0 0 8px rgba(209, 0, 36, 0.2); }
    100% { box-shadow: 0 2px 4px rgba(209, 0, 36, 0.3); }
}

/* User Menu */
.user-menu {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 25px;
    transition: var(--transition);
}

.user-menu:hover,
.user-menu:focus {
    background: var(--light-bg);
    color: var(--primary-color);
}

.user-menu i {
    font-size: 18px;
}

/* Mobile Menu Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
    background: none;
    border: none;
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background: var(--secondary-color);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
    display: block;
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Mobile Styles */
@media (max-width: 992px) {
    .top-bar {
        display: none;
    }

    .navbar-container {
        height: 70px;
    }

    .mobile-toggle {
        display: flex;
    }
    
    /* Switch auth buttons visibility */
    .mobile-auth {
        display: flex;
    }
    
    .desktop-auth {
        display: none;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--white);
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 30px 20px;
        transition: left 0.3s ease;
        box-shadow: var(--shadow);
        overflow-y: auto;
        gap: 10px;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        width: 100%;
        margin-bottom: 10px;
    }

    .nav-link {
        display: block;
        width: 100%;
        padding: 15px 0;
        border-bottom: 1px solid #f0f0f0;
    }

    .dropdown-menu {
        position: static;
        box-shadow: none;
        border: none;
        padding-left: 20px;
        background: var(--light-bg);
        border-radius: 8px;
        margin-top: 10px;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        min-width: auto;
        width: 100%;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }

    .dropdown-item {
        padding: 10px 15px;
        border-bottom: 1px solid #e9ecef;
    }

    .auth-buttons {
        width: 100%;
        flex-direction: column;
        margin-top: 15px;
        gap: 15px;
    }
    
    .mobile-auth {
        margin-bottom: 25px;
        padding: 15px;
        background-color: var(--light-bg);
        border-radius: var(--border-radius);
    }

    .btn {
        width: 100%;
        justify-content: center;
        padding: 15px;
    }

    .btn-cart {
        width: auto;
        align-self: center;
    }

    .user-dropdown {
        width: 100%;
    }

    .user-menu {
        width: 100%;
        justify-content: flex-start;
        padding: 15px 0;
        border-radius: 0;
    }
}

@media (max-width: 768px) {
    .top-bar-content {
        flex-direction: column;
        gap: 10px;
        padding: 10px 20px;
    }

    .top-bar-left,
    .top-bar-right {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
}

@media (max-width: 576px) {
    .navbar-container {
        padding: 0 15px;
    }

    .logo {
        font-size: 24px;
    }

    .logo i {
        font-size: 28px;
    }

    .top-bar-left {
        flex-direction: column;
        gap: 5px;
        text-align: center;
    }

    .top-bar-right {
        gap: 10px;
    }
}

/* Accessibility */


/* Animation for dropdown */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown:hover .dropdown-menu {
    animation: slideDown 0.3s ease;
}

/* Loading states */
.btn.loading {
    position: relative;
    color: transparent;
}

.btn.loading::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -8px 0 0 -8px;
    width: 16px;
    height: 16px;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}
/*=========================================================
	04 -> CATEGORY SHOP
===========================================================*/

.shop {
    position: relative;
    overflow: hidden;
    margin: 15px 0px;
}

.shop:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0px;
    width: 60%;
    background: var(--primary-yellow-orange);
    opacity: 0.9;
    -webkit-transform: skewX(-45deg);
    -ms-transform: skewX(-45deg);
    transform: skewX(-45deg);
}

.shop:after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 1px;
    width: 100%;
    background: var(--primary-yellow-orange);
    opacity: 0.9;
    -webkit-transform: skewX(-45deg) translateX(-100%);
    -ms-transform: skewX(-45deg) translateX(-100%);
    transform: skewX(-45deg) translateX(-100%);
}

.shop .shop-img {
    position: relative;
    background-color: #e4e7ed;
    z-index: -1;
}

.shop .shop-img > img {
    width: 100%;
    -webkit-transition: 0.2s all;
    transition: 0.2s all;
}

.shop:hover .shop-img > img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

.shop .shop-body {
    position: absolute;
    top: 0;
    width: 75%;
    padding: 30px;
    z-index: 10;
}

.shop .shop-body h3 {
    color: #fff;
}

.shop .shop-body .cta-btn {
    color: #fff;
    text-transform: uppercase;
}

/*=========================================================
	05 -> HOT DEAL
===========================================================*/

#hot-deal.section {
    padding: 100px 0;
    margin: 60px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
        url("https://images.unsplash.com/photo-1605000797499-95a51c5269ae?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2071&q=80")
            no-repeat center center/cover;
    color: #fff;
    text-align: center;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.hot-deal {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.hot-deal .hot-deal-countdown {
    margin: 0 auto 40px;
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.hot-deal .hot-deal-countdown li {
    position: relative;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 90px;
    height: 90px;
    background: rgba(209, 0, 36, 0.9);
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hot-deal .hot-deal-countdown li:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    background: rgba(209, 0, 36, 1);
}

.hot-deal .hot-deal-countdown > li > div {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 15px 0;
}

.hot-deal .hot-deal-countdown > li > div h3 {
    color: #fff;
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 2px 0;
    line-height: 1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    font-family: "Montserrat", sans-serif;
}

.hot-deal .hot-deal-countdown > li > div span {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 1px;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.hot-deal h2 {
    color: #fff;
    font-size: 36px;
    font-weight: 800;
    margin: 0 0 15px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hot-deal p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 30px 0;
    font-weight: 400;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.hot-deal .cta-btn {
    display: inline-block;
    background: var(--primary-yellow-orange);
    color: #fff;
    padding: 12px 35px;
    border-radius: 50px;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-yellow-orange);
    margin-top: 20px;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(209, 0, 36, 0.3);
}

.hot-deal .cta-btn:hover {
    background: transparent;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(209, 0, 36, 0.4);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    #hot-deal.section {
        padding: 70px 0;
        margin: 40px 0;
    }

    .hot-deal h2 {
        font-size: 28px;
    }

    .hot-deal p {
        font-size: 18px;
        margin-bottom: 25px;
    }

    .hot-deal .hot-deal-countdown li {
        width: 75px;
        height: 75px;
    }

    .hot-deal .hot-deal-countdown > li > div h3 {
        font-size: 22px;
    }

    .hot-deal .hot-deal-countdown > li > div span {
        font-size: 10px;
    }
}

/*=========================================================
	06 -> PRODUCT
===========================================================*/

/*----------------------------*\
	product
\*----------------------------*/

.product {
    position: relative;
    margin: 15px 0px;
    -webkit-box-shadow: 0px 0px 0px 0px #e4e7ed, 0px 0px 0px 1px #e4e7ed;
    box-shadow: 0px 0px 0px 0px #e4e7ed, 0px 0px 0px 1px #e4e7ed;
    -webkit-transition: 0.2s all;
    transition: 0.2s all;
}

.product:hover {
    -webkit-box-shadow: 0px 0px 6px 0px #e4e7ed, 0px 0px 0px 2px var(--primary-yellow-orange);
    box-shadow: 0px 0px 6px 0px #e4e7ed, 0px 0px 0px 2px var(--primary-yellow-orange);
}

.product .product-img {
    position: relative;
    height: 300px;
}

.product .product-img > img {
    width: 100%;
}

.product .product-img .product-label {
    position: absolute;
    top: 15px;
    right: 15px;
}

.product .product-img .product-label > span {
    border: 2px solid;
    padding: 2px 10px;
    font-size: 12px;
}

.product .product-img .product-label > span.sale {
    background-color: #fff;
    border-color: var(--primary-yellow-orange);
    color: var(--primary-yellow-orange);
}

.product .product-img .product-label > span.new {
    background-color: var(--primary-yellow-orange);
    border-color: var(--primary-yellow-orange);
    color: #fff;
}

.product .product-body {
    position: relative;
    padding: 15px;
    background-color: #fff;
    text-align: center;
    z-index: 20;
}

.product .product-body .product-category {
    text-transform: uppercase;
    font-size: 12px;
    color: #8d99ae;
}

.product .product-body .product-name {
    text-transform: uppercase;
    font-size: 14px;
    height: 30px;
}

.product .product-body .product-name > a {
    font-weight: 700;
}

.product .product-body .product-name > a:hover,
.product .product-body .product-name > a:focus {
    color: var(--primary-yellow-orange);
}

.product .product-body .product-price {
    color: var(--primary-yellow-orange);
    font-size: 18px;
}

.product .product-body .product-price .product-old-price {
    font-size: 70%;
    font-weight: 400;
    color: #8d99ae;
}

.product .product-body .product-rating {
    position: relative;
    margin: 15px 0px 10px;
    height: 20px;
}

.product .product-body .product-rating > i {
    position: relative;
    width: 14px;
    margin-right: -4px;
    background: #fff;
    color: #e4e7ed;
    z-index: 10;
}

.product .product-body .product-rating > i.fa-star {
    color: var(--accent-orange);
}

.product .product-body .product-rating:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    height: 1px;
    background-color: #e4e7ed;
}

.product .product-body .product-btns > button {
    position: relative;
    width: 40px;
    height: 40px;
    line-height: 40px;
    background: transparent;
    border: none;
    -webkit-transition: 0.2s all;
    transition: 0.2s all;
}

.product .product-body .product-btns > button:hover {
    background-color: #e4e7ed;
    color: var(--primary-yellow-orange);
    border-radius: 50%;
}

.product .product-body .product-btns > button .tooltipp {
    position: absolute;
    bottom: 100%;
    left: 50%;
    -webkit-transform: translate(-50%, -15px);
    -ms-transform: translate(-50%, -15px);
    transform: translate(-50%, -15px);
    width: 150px;
    padding: 10px;
    font-size: 12px;
    line-height: 10px;
    background: var(--steel-grey);
    color: #fff;
    text-transform: uppercase;
    z-index: 10;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.2s all;
    transition: 0.2s all;
}

.product .product-body .product-btns > button:hover .tooltipp {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translate(-50%, -5px);
    -ms-transform: translate(-50%, -5px);
    transform: translate(-50%, -5px);
}

.product .add-to-cart {
    position: absolute;
    left: 1px;
    right: 1px;
    bottom: 1px;
    padding: 15px;
    background: var(--steel-grey);
    text-align: center;
    -webkit-transform: translateY(0%);
    -ms-transform: translateY(0%);
    transform: translateY(0%);
    -webkit-transition: 0.2s all;
    transition: 0.2s all;
    z-index: 2;
}

.product:hover .add-to-cart {
    -webkit-transform: translateY(100%);
    -ms-transform: translateY(100%);
    transform: translateY(100%);
}

.product .add-to-cart .add-to-cart-btn {
    position: relative;
    border: 2px solid transparent;
    height: 40px;
    padding: 0px 30px;
    background: var(--brand-gradient);
    color: #fff;
    text-transform: uppercase;
    font-weight: 700;
    border-radius: 40px;
    -webkit-transition: 0.2s all;
    transition: 0.2s all;
}

.product .add-to-cart .add-to-cart-btn > i {
    position: absolute;
    left: 0;
    top: 0;
    width: 40px;
    height: 40px;
    line-height: 40px;
    color: var(--white);
    opacity: 0;
    visibility: hidden;
}

.product .add-to-cart .add-to-cart-btn:hover {
    background: var(--brand-gradient-hover);
    padding: 0px 30px 0px 50px;
}

.product .add-to-cart .add-to-cart-btn:hover > i {
    opacity: 1;
    visibility: visible;
}

/*----------------------------*\
	Widget product
\*----------------------------*/

.product-widget {
    position: relative;
}

.product-widget + .product-widget {
    margin: 30px 0px;
}

.product-widget .product-img {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 70px;
}

.product-widget .product-img > img {
    width: 100%;
}

.product-widget .product-body {
    padding-left: 75px;
    min-height: 60px;
}

.product-widget .product-body .product-category {
    text-transform: uppercase;
    font-size: 10px;
    color: #8d99ae;
}

.product-widget .product-body .product-name {
    text-transform: uppercase;
    font-size: 12px;
}

.product-widget .product-body .product-name > a {
    font-weight: 700;
}

.product-widget .product-body .product-name > a:hover,
.product-widget .product-body .product-name > a:focus {
    color: var(--primary-yellow-orange);
}

.product-widget .product-body .product-price {
    font-size: 14px;
    color: var(--primary-yellow-orange);
}

.product-widget .product-body .product-price .product-old-price {
    font-size: 70%;
    font-weight: 400;
    color: #8d99ae;
}

.product-widget .product-body .product-price .qty {
    font-weight: 400;
    margin-right: 10px;
}

.product-widget .delete {
    position: absolute;
    top: 0;
    left: 0;
    height: 14px;
    width: 14px;
    text-align: center;
    font-size: 10px;
    padding: 0;
    background: var(--steel-grey);
    border: none;
    color: #fff;
}

/*----------------------------*\
	Products slick
\*----------------------------*/

.products-slick .slick-list {
    padding-bottom: 60px;
    margin-bottom: -60px;
    z-index: 2;
}

.products-slick .product.slick-slide {
    margin: 15px;
}

.products-tabs > .tab-pane {
    display: block;
    height: 0;
    opacity: 0;
    visibility: hidden;
    overflow-y: hidden;
    padding-bottom: 60px;
    margin-bottom: -60px;
}

.products-tabs > .tab-pane.active {
    opacity: 1;
    visibility: visible;
    height: auto;
}

.products-slick-nav {
    position: absolute;
    right: 15px;
    z-index: 10;
}

.products-slick-nav .slick-prev,
.products-slick-nav .slick-next {
    position: static;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    width: 20px;
    height: 20px;
    display: inline-block !important;
    margin: 0px 2px;
}

.products-slick-nav .slick-prev:before,
.products-slick-nav .slick-next:before {
    font-size: 14px;
}

/*=========================================================
	07 -> PRODUCTS PAGE
===========================================================*/

/*----------------------------*\
	Aside
\*----------------------------*/

.aside + .aside {
    margin-top: 30px;
}

.aside > .aside-title {
    text-transform: uppercase;
    font-size: 18px;
    margin: 15px 0px 30px;
}

/*-- checkbox Filter --*/

.checkbox-filter > div + div {
    margin-top: 10px;
}

.checkbox-filter .input-radio label,
.checkbox-filter .input-checkbox label {
    font-size: 12px;
}

.checkbox-filter .input-radio label small,
.checkbox-filter .input-checkbox label small {
    color: #8d99ae;
}

/*-- Price Filter --*/

#price-slider {
    margin-bottom: 15px;
}

.noUi-target {
    background-color: #fff;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: 1px solid #e4e7ed;
    border-radius: 0px;
}

.noUi-connect {
    background-color: var(--primary-yellow-orange);
}

.noUi-horizontal {
    height: 6px;
}

.noUi-horizontal .noUi-handle {
    width: 12px;
    height: 12px;
    left: -6px;
    top: -4px;
    border: none;
    background: var(--primary-yellow-orange);
    -webkit-box-shadow: none;
    box-shadow: none;
    border-radius: 50%;
}

.noUi-handle:before,
.noUi-handle:after {
    display: none;
}

.price-filter .input-number {
    display: inline-block;
    width: 90%;
}

/* Styles pour les filtres de prix améliorés */
.price-inputs-container {
    display: flex;
    margin-bottom: 15px;
}

.price-input-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.price-label {
    font-size: 12px;
    font-weight: 500;
    color: #666;
    text-transform: uppercase;
    margin: 0;
}

.price-separator {
    text-align: center;
    font-weight: 500;
    color: #999;
    font-size: 14px;
    margin: 5px 0;
}

.price-range-info {
    text-align: center;
    margin-bottom: 15px;
    padding: 8px;
    background-color: #f8f9fa;
    border-radius: 4px;
    border-left: 3px solid var(--primary-yellow-orange);
}

.filter-buttons {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.btn-filter {
    background-color: var(--primary-yellow-orange);
    border-color: var(--primary-yellow-orange);
    color: white;
    padding: 10px 15px;
    font-weight: 500;
    border-radius: 25px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 12px;
}

.btn-filter:hover {
    background-color: var(--accent-orange);
    border-color: var(--accent-orange);
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(209, 0, 36, 0.3);
}

.btn-reset {
    background-color: transparent;
    border: 1px solid #6c757d;
    color: #6c757d;
    padding: 8px 15px;
    font-weight: 500;
    border-radius: 20px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 11px;
    text-decoration: none;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.btn-reset:hover {
    background-color: #6c757d;
    color: white;
    text-decoration: none;
    transform: translateY(-1px);
}

.btn-filter i,
.btn-reset i {
    margin-right: 5px;
    font-size: 11px;
}

/* Responsive pour les filtres */
@media (max-width: 768px) {
    .price-inputs-container {
        gap: 10px;
    }
    
    .filter-buttons {
        flex-direction: row;
        gap: 10px;
    }
    
    .btn-filter,
    .btn-reset {
        flex: 1;
        font-size: 11px;
        padding: 8px 10px;
    }
}

/*----------------------------*\
	Store
\*----------------------------*/

.store-filter {
    margin-bottom: 15px;
    margin-top: 15px;
}

/*-- Store Sort --*/

.store-sort {
    display: inline-block;
}

.store-sort label {
    font-weight: 500;
    font-size: 12px;
    text-transform: uppercase;
    margin-right: 15px;
}

/*-- Store Grid --*/

.store-grid {
    float: right;
}

.store-grid li {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    background-color: #fff;
    border: 1px solid #e4e7ed;
    text-align: center;
    -webkit-transition: 0.2s all;
    transition: 0.2s all;
}

.store-grid li + li {
    margin-left: 5px;
}

.store-grid li:hover {
    background-color: #e4e7ed;
    color: var(--primary-yellow-orange);
}

.store-grid li.active {
    background-color: var(--primary-yellow-orange);
    border-color: var(--primary-yellow-orange);
    color: #fff;
    cursor: default;
}

.store-grid li a {
    display: block;
}

/*-- Store Pagination --*/

.store-pagination {
    float: right;
}

.store-pagination li {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background-color: #fff;
    border: 1px solid #e4e7ed;
    -webkit-transition: 0.2s all;
    transition: 0.2s all;
}

.store-pagination li + li {
    margin-left: 5px;
}

.page-link:hover {
    background-color: #e4e7ed;
    color: var(--primary-yellow-orange);
}

.active>.page-link, .page-link.active {
    z-index: 1 !important;
    color: var(--pure-white) !important;
    background-color: var(--primary-yellow-orange) !important;
    border-color: var(--primary-yellow-orange) !important;
}

.store-pagination li a {
    display: block;
}

.store-qty {
    margin-right: 30px;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 12px;
}

/*=========================================================
	08 -> PRODUCT DETAILS PAGE
===========================================================*/

/*----------------------------*\
	Product view
\*----------------------------*/

#product-main-img .slick-prev {
    -webkit-transform: translateX(-15px);
    -ms-transform: translateX(-15px);
    transform: translateX(-15px);
    left: 15px;
}

#product-main-img .slick-next {
    -webkit-transform: translateX(15px);
    -ms-transform: translateX(15px);
    transform: translateX(15px);
    right: 15px;
}

#product-main-img .slick-prev,
#product-main-img .slick-next {
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.2s all;
    transition: 0.2s all;
}

#product-main-img:hover .slick-prev,
#product-main-img:hover .slick-next {
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
    opacity: 1;
    visibility: visible;
}

#product-main-img .zoomImg {
    background-color: #fff;
}

#product-imgs .product-preview {
    margin: 0px 5px;
    border: 1px solid #e4e7ed;
}

#product-imgs .product-preview.slick-current {
    border-color: var(--primary-yellow-orange);
}

#product-imgs .slick-prev {
    top: -20px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}

#product-imgs .slick-next {
    top: calc(100% - 20px);
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}

#product-imgs .slick-prev:before {
    content: "\f106";
}

#product-imgs .slick-next:before {
    content: "\f107";
}

.product-preview img {
    width: 100%;
}

/*----------------------------*\
	Product details
\*----------------------------*/

.product-details .product-name {
    text-transform: uppercase;
    font-size: 18px;
}

.product-details .product-rating {
    display: inline-block;
    margin-right: 15px;
}

.product-details .product-rating > i {
    color: #e4e7ed;
}

.product-details .product-rating > i.fa-star {
    color: var(--primary-yellow-orange);
}

.product-details .review-link {
    font-size: 12px;
}

.product-details .product-price {
    display: inline-block;
    font-size: 24px;
    margin-top: 10px;
    margin-bottom: 15px;
    color: var(--primary-yellow-orange);
}

.product-details .product-price .product-old-price {
    font-size: 70%;
    font-weight: 400;
    color: #8d99ae;
}

.product-details .product-available {
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 700;
    margin-left: 30px;
    color: var(--primary-yellow-orange);
}

.product-details .product-options {
    margin-top: 30px;
    margin-bottom: 30px;
}

.product-details .product-options label {
    font-weight: 500;
    font-size: 12px;
    text-transform: uppercase;
    margin-right: 15px;
    margin-bottom: 0px;
}

/* Make dropdown menus only as wide as their parent menu item */
.dropdown-menu.mega-menu {
    min-width: 180px;
    max-width: 260px;
    width: auto;
    left: 0;
    right: auto;
    margin: 0;
    padding: 10px 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Remove forced width from inner columns */
.dropdown-menu.mega-menu .col-md-3 {
    width: 100%;
    max-width: 100%;
}

/* Optional: align dropdown below parent */
.main-nav > .dropdown .dropdown-menu {
    left: 0;
    right: auto;
    transform: none;
}

/* Mega Menu Styling */
.mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(15px) scale(0.98);
    width: 85%;
    max-width: 850px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    border-top: 3px solid var(--primary-yellow-orange);
    opacity: 0;
    visibility: hidden;
    transform-origin: top center;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 1000;
    padding: 15px 0;
    border-radius: 0 0 10px 10px;
    will-change: transform, opacity;
}

.navbar-nav > li:hover > .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.mega-menu .container {
    max-width: 50px;
    margin: 0 auto;
    padding: 0px;
}

.mega-menu-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 8px;
}

.mega-menu-links li {
    margin-bottom: 4px;
    position: relative;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.mega-menu-links li:hover {
    transform: translateX(3px);
}

.mega-menu-links a {
    color: #2c3e50;
    text-decoration: none;
    font-size: 13.5px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: block;
    padding: 6px 0;
    position: relative;
    letter-spacing: 0.2px;
}

.mega-menu-links a:after {
    content: "";
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-yellow-orange), #ff3a4e);
    transition: width 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.mega-menu-links a:hover {
    color: var(--primary-yellow-orange);
}

.mega-menu-links a:hover:after {
    width: 100%;
}

/* Category Headers */
.mega-menu-category {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 2px solid #f0f0f0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .mega-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none !important;
        width: 100% !important;
        max-width: 100% !important;
        left: 0 !important;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        padding: 0;
        display: none;
        background: #fff;
        backdrop-filter: none;
        border-radius: 0;
    }

    .mega-menu.active {
        display: block;
        animation: slideDown 0.4s ease-out;
    }

    .mega-menu .container {
        padding: 0;
    }

    .mega-menu-links {
        display: block;
        padding: 10px 0;
    }

    .mega-menu-links li {
        padding: 12px 20px;
        margin: 0;
        border-bottom: 1px solid #f5f5f5;
        transition: all 0.3s ease;
    }

    .mega-menu-links li:active {
        background-color: #f9f9f9;
    }

    .mega-menu-category {
        margin: 0 20px;
        padding: 15px 0 8px;
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-details .product-options .input-select {
    width: 90px;
}

.product-details .add-to-cart {
    margin-bottom: 30px;
}

.product-details .add-to-cart .add-to-cart-btn {
    position: relative;
    border: 2px solid transparent;
    height: 40px;
    padding: 0 30px;
    background-color: var(--accent-orange);
    color: #fff;
    text-transform: uppercase;
    font-weight: 700;
    border-radius: 40px;
    -webkit-transition: 0.2s all;
    transition: 0.2s all;
}

.product-details .add-to-cart .add-to-cart-btn > i {
    position: absolute;
    left: 0;
    top: 0;
    width: 40px;
    height: 40px;
    line-height: 38px;
    color: var(--primary-yellow-orange);
    opacity: 0;
    visibility: hidden;
}

.product-details .add-to-cart .add-to-cart-btn:hover {
    background-color: #fff;
    color: var(--primary-yellow-orange);
    border-color: var(--primary-yellow-orange);
    padding: 0px 30px 0px 50px;
}

.product-details .add-to-cart .add-to-cart-btn:hover > i {
    opacity: 1;
    visibility: visible;
}

.product-details .add-to-cart .qty-label {
    display: inline-block;
    font-weight: 500;
    font-size: 12px;
    text-transform: uppercase;
    margin-right: 15px;
    margin-bottom: 0px;
}

.product-details .add-to-cart .qty-label .input-number {
    width: 90px;
    display: inline-block;
}

.product-details .product-btns li {
    display: inline-block;
    text-transform: uppercase;
    font-size: 12px;
}

.product-details .product-btns li + li {
    margin-left: 15px;
}

.product-details .product-links {
    margin-top: 15px;
}

.product-details .product-links li {
    display: inline-block;
    text-transform: uppercase;
    font-size: 12px;
}

.product-details .product-links li + li {
    margin-left: 10px;
}

/*----------------------------*\
	 Product tab
\*----------------------------*/

#product-tab {
    margin-top: 60px;
}

#product-tab .tab-nav {
    position: relative;
    text-align: center;
    padding: 15px 0px;
    margin-bottom: 30px;
}

#product-tab .tab-nav:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    height: 1px;
    background-color: #e4e7ed;
    z-index: -1;
}

#product-tab .tab-nav li {
    display: inline-block;
    background: #fff;
    padding: 0px 15px;
}

#product-tab .tab-nav li + li {
    margin-left: 15px;
}

#product-tab .tab-nav li a {
    display: block;
    font-weight: 700;
    color: #8d99ae;
}

#product-tab .tab-nav li.active a {
    color: var(--primary-yellow-orange);
}

#product-tab .tab-nav li a:after {
    content: "";
    display: block;
    width: 0%;
    height: 2px;
    background-color: var(--primary-yellow-orange);
    -webkit-transition: 0.2s all;
    transition: 0.2s all;
}

#product-tab .tab-nav li a:hover:after,
#product-tab .tab-nav li a:focus:after,
#product-tab .tab-nav li.active a:after {
    width: 100%;
}

/*-- Rating --*/

.rating-avg {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.rating-avg .rating-stars {
    margin-left: 10px;
}

.rating-avg .rating-stars,
.rating .rating-stars {
    display: inline-block;
}

.rating-avg .rating-stars > i,
.rating .rating-stars > i {
    color: #e4e7ed;
}

.rating-avg .rating-stars > i.fa-star,
.rating .rating-stars > i.fa-star {
    color: var(--primary-yellow-orange);
}

.rating li {
    margin: 5px 0px;
}

.rating .rating-progress {
    position: relative;
    display: inline-block;
    height: 9px;
    background-color: #e4e7ed;
    width: 120px;
    margin: 0px 10px;
    border-radius: 5px;
}

.rating .rating-progress > div {
    background-color: var(--primary-yellow-orange);
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    border-radius: 5px;
}

.rating .sum {
    display: inline-block;
    font-size: 12px;
    color: #8d99ae;
}

/*-- Reviews --*/

.reviews li {
    position: relative;
    padding-left: 145px;
    margin-bottom: 30px;
}

.reviews .review-heading {
    position: absolute;
    width: 130px;
    left: 0;
    top: 0;
    height: 70px;
}

.reviews .review-body {
    min-height: 70px;
}

.reviews .review-heading .name {
    margin-bottom: 5px;
    margin-top: 0px;
}

.reviews .review-heading .date {
    color: #8d99ae;
    font-size: 10px;
    margin: 0;
}

.reviews .review-heading .review-rating {
    margin-top: 5px;
}

.reviews .review-heading .review-rating > i {
    color: #e4e7ed;
}

.reviews .review-heading .review-rating > i.fa-star {
    color: var(--primary-yellow-orange);
}

.reviews-pagination {
    text-align: center;
}

.reviews-pagination li {
    display: inline-block;
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    background-color: #fff;
    border: 1px solid #e4e7ed;
    -webkit-transition: 0.2s all;
    transition: 0.2s all;
}

.reviews-pagination li:hover {
    background-color: #e4e7ed;
    color: var(--primary-yellow-orange);
}

.reviews-pagination li.active {
    background-color: var(--primary-yellow-orange);
    border-color: var(--primary-yellow-orange);
    color: #fff;
    cursor: default;
}

.reviews-pagination li a {
    display: block;
}

/*-- Review Form --*/

.review-form .input {
    margin-bottom: 15px;
}

.review-form .input-rating {
    margin-bottom: 15px;
}

.review-form .input-rating .stars {
    display: inline-block;
    vertical-align: top;
}

.review-form .input-rating .stars input[type="radio"] {
    display: none;
}

.review-form .input-rating .stars > label {
    float: right;
    cursor: pointer;
    padding: 0px 3px;
    margin: 0px;
}

.review-form .input-rating .stars > label:before {
    content: "\f006";
    font-family: FontAwesome;
    color: #e4e7ed;
    -webkit-transition: 0.2s all;
    transition: 0.2s all;
}

.review-form .input-rating .stars > label:hover:before,
.review-form .input-rating .stars > label:hover ~ label:before {
    color: var(--primary-yellow-orange);
}

.review-form .input-rating .stars > input:checked label:before,
.review-form .input-rating .stars > input:checked ~ label:before {
    content: "\f005";
    color: var(--primary-yellow-orange);
}

/*=========================================================
	09 -> CHECKOUT PAGE
===========================================================*/

.billing-details {
    margin-bottom: 30px;
}

.shiping-details {
    margin-bottom: 30px;
}

.order-details {
    position: relative;
    padding: 0px 30px 30px;
    border-right: 1px solid #e4e7ed;
    border-left: 1px solid #e4e7ed;
    border-bottom: 1px solid #e4e7ed;
}

.order-details:before {
    content: "";
    position: absolute;
    left: -1px;
    right: -1px;
    top: -15px;
    height: 30px;
    border-top: 1px solid #e4e7ed;
    border-left: 1px solid #e4e7ed;
    border-right: 1px solid #e4e7ed;
}

.order-summary {
    margin: 15px 0px;
}

.order-summary .order-col {
    display: table;
    width: 100%;
}

.order-summary .order-col:after {
    content: "";
    display: block;
    clear: both;
}

.order-summary .order-col > div {
    display: table-cell;
    padding: 10px 0px;
}

.order-summary .order-col > div:first-child {
    width: calc(100% - 150px);
}

.order-summary .order-col > div:last-child {
    width: 150px;
    text-align: right;
}

.order-summary .order-col .order-total {
    font-size: 24px;
    color: var(--primary-yellow-orange);
}

.order-details .payment-method {
    margin: 30px 0px;
}

.order-details .order-submit {
    display: block;
    margin-top: 30px;
}

/*=========================================================
	10 -> NEWSLETTER
===========================================================*/

#newsletter.section {
    border-top: 2px solid #e4e7ed;
    border-bottom: 3px solid var(--primary-yellow-orange);
    margin-top: 30px;
}

.newsletter {
    text-align: center;
}

.newsletter p {
    font-size: 24px;
}

.newsletter form {
    position: relative;
    max-width: 520px;
    margin: 30px auto;
}

.newsletter form:after {
    content: "\f003";
    font-family: FontAwesome;
    position: absolute;
    font-size: 160px;
    color: #e4e7ed;
    top: 15px;
    -webkit-transform: translateY(-50%) rotate(15deg);
    -ms-transform: translateY(-50%) rotate(15deg);
    transform: translateY(-50%) rotate(15deg);
    z-index: -1;
    left: -90px;
}

.newsletter form .input {
    width: calc(100% - 160px);
    margin-right: -4px;
    border-radius: 40px 0px 0px 40px;
}

.newsletter form .newsletter-btn {
    width: 160px;
    height: 40px;
    font-weight: 700;
    background: var(--primary-yellow-orange);
    color: #fff;
    border: none;
    border-radius: 0px 40px 40px 0px;
}

.newsletter .newsletter-follow {
    text-align: center;
}

.newsletter .newsletter-follow li {
    display: inline-block;
    margin-right: 5px;
}

.newsletter .newsletter-follow li:last-child {
    margin-right: 0px;
}

.newsletter .newsletter-follow li a {
    position: relative;
    display: block;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    border: 1px solid #e4e7ed;
    background-color: #fff;
    -webkit-transition: 0.2s all;
    transition: 0.2s all;
}

.newsletter .newsletter-follow li a:hover,
.newsletter .newsletter-follow li a:focus {
    background-color: #e4e7ed;
    color: var(--primary-yellow-orange);
}

/*=========================================================
	11 -> FOOTER
===========================================================*/

#footer {
    background: var(--steel-grey);
    color: #b9babc;
}

#bottom-footer {
    background: var(--steel-grey);
}

.footer {
    margin: 30px 0px;
}

.footer .footer-title {
    color: #fff;
    text-transform: uppercase;
    font-size: 18px;
    margin: 0px 0px 30px;
}

.footer-links li + li {
    margin-top: 15px;
}

.footer-links li a {
    color: #b9babc;
}

.footer-links li i {
    margin-right: 15px;
    color: var(--primary-yellow-orange);
    width: 14px;
    text-align: center;
}

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

.copyright {
    margin-top: 30px;
    display: block;
    font-size: 12px;
}

.footer-payments li {
    display: inline-block;
    margin-right: 5px;
}

.footer-payments li a {
    color: var(--steel-grey);
    font-size: 36px;
}

/* ====================
   NAVIGATION
   ==================== */
#navigation {
    background: var(--steel-grey);
    border-bottom: 2px solid var(--primary-yellow-orange);
    height: 60px;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1000;
}

#navigation .container {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
    box-sizing: border-box;
}

/* Navigation List */
.main-nav {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    height: 100%;
    align-items: center;
    gap: 15px;
}

.main-nav > li {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.main-nav > li > a {
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    text-decoration: none;
    padding: 0 12px;
    height: 100%;
    display: flex;
    align-items: center;
    transition: color 0.3s ease;
    white-space: nowrap;
    position: relative;
    z-index: 1;
}

/* Dropdown Caret */
.main-nav > li > a .fa-caret-down {
    margin-left: 5px;
    font-size: 12px;
    transition: transform 0.3s ease;
}

/* Hover Effects */
.main-nav > li > a:hover,
.main-nav > li:hover > a {
    color: var(--primary-yellow-orange);
}

.main-nav > li:hover > a .fa-caret-down {
    transform: rotate(180deg);
}

.main-nav > li > a:hover,
.main-nav > li.active > a,
.main-nav > li > a:focus {
    background: var(--primary-yellow-orange);
    color: #fff;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 240px;
    padding: 10px 0;
    margin: 0;
    list-style: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.25s ease;
    pointer-events: none;
    display: block !important;
}

/* Show dropdown on hover */
.dropdown:hover > .dropdown-menu,
.dropdown:focus-within > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

/* Keep dropdown open when hovering over it */
.dropdown-menu:hover {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
    pointer-events: auto !important;
}

/* Dropdown Links */
.dropdown-menu a {
    display: block;
    padding: 8px 20px;
    color: #2b2d42;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.dropdown-menu a:hover {
    background-color: #f8f9fa;
    color: var(--primary-yellow-orange);
    padding-left: 25px;
}

/* Show dropdown on hover for desktop */
@media (min-width: 992px) {
    .dropdown:hover > .dropdown-menu,
    .dropdown:focus-within > .dropdown-menu {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
        visibility: visible;
    }
}

/* Mega Menu */
.mega-menu {
    position: absolute !important;
    width: 100%;
    left: 0 !important;
    right: 0 !important;
    padding: 20px 0 !important;
    transform: translateY(10px) !important;
    border-radius: 0;
    border-top: 1px solid #eee;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

/* Show mega menu on hover */
.dropdown:hover > .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) !important;
}

.mega-menu .container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 15px;
}

.mega-menu .row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.mega-menu .col-md-3 {
    padding: 0 15px;
}

.mega-menu h4 {
    color: var(--primary-yellow-orange);
    font-size: 15px;
    font-weight: 600;
    margin: 0 0 15px 0;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
    text-transform: uppercase;
}

.mega-menu-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.mega-menu-links li {
    margin-bottom: 8px;
    width: 100%;
}

.mega-menu-links a {
    color: #2b2d42;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s ease;
    display: block;
    padding: 8px 15px;
    border-radius: 4px;
}

.mega-menu-links a:hover {
    color: var(--primary-yellow-orange);
    background-color: #f8f9fa;
    padding-left: 20px;
}

/* Mobile Navigation */
@media (max-width: 991px) {
    #header {
        height: auto;
        padding: 10px 0;
    }

    #header .container {
        flex-wrap: wrap;
    }

    #navigation {
        order: 3;
        width: 100%;
        height: auto;
        border-top: 1px solid #2a2b38;
        margin-top: 10px;
    }

    .main-nav {
        flex-direction: column;
        gap: 0;
        width: 100%;
    }

    .main-nav > li {
        width: 100%;
        border-bottom: 1px solid #2a2b38;
    }

    .main-nav > li > a {
        padding: 12px 15px;
        height: auto;
        justify-content: space-between;
    }

    .dropdown-menu {
        position: static !important;
        width: 100% !important;
        max-width: 100% !important;
        box-shadow: none;
        border: none;
        padding: 0;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        background: var(--steel-grey);
    }

    .dropdown-menu.show {
        display: block !important;
    }

    .dropdown-menu a {
        padding: 10px 25px !important;
        color: #b9babc !important;
    }

    .mega-menu .row {
        flex-direction: column;
        margin: 0;
    }

    .mega-menu .col-md-3 {
        padding: 0;
        margin-bottom: 15px;
    }

    .mega-menu h4 {
        color: #fff;
        border-bottom-color: #2a2b38;
        margin-top: 15px;
    }
}

/* ====================
   Main Header
   ==================== */
#header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1000;
}

#header .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    align-items: center;
    height: 80px;
    position: relative;
}

/* Navigation Logo */
.main-nav .nav-logo {
    margin-right: 20px;
    display: flex;
    align-items: center;
}

.main-nav .nav-logo .logo {
    display: flex;
    align-items: center;
    padding: 0;
    height: 100%;
}

.main-nav .nav-logo img {
    height: 30px;
    width: auto;
    transition: transform 0.3s ease;
}

.main-nav .nav-logo:hover img {
    transform: scale(1.1);
}

/* Navigation */
.main-nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-nav li {
    margin: 0 8px;
    position: relative;
}

.main-nav a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    font-size: 13px;
    padding: 8px 10px;
    display: block;
    position: relative;
    transition: all 0.3s ease;
    white-space: nowrap;
    margin: 0 3px;
}

.main-nav a:hover {
    color: var(--primary-yellow-orange);
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    margin-left: auto;
}

/* Search */
.header-search {
    position: relative;
    margin-right: 20px;
}

.search-toggle {
    background: none;
    border: none;
    color: #666;
    font-size: 18px;
    cursor: pointer;
    padding: 5px;
    transition: color 0.2s;
}

.search-toggle:hover {
    color: var(--primary-yellow-orange);
}

.search-box {
    position: absolute;
    top: 100%;
    right: 0;
    width: 300px;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 20px;
    display: none;
    z-index: 1000;
}

.search-box form {
    display: flex;
    position: relative;
}

.search-box input[type="search"] {
    width: 100%;
    padding: 10px 40px 10px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

.search-submit {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
}

/* Account */
.header-account {
    margin: 0 20px;
}

.account-link {
    display: flex;
    flex-direction: column;
    color: #666;
    text-decoration: none;
    font-size: 13px;
    text-align: center;
}

.account-link i {
    font-size: 20px;
    margin-bottom: 3px;
}

.account-text {
    color: #333;
    font-weight: 500;
}

/* Cart */
.header-cart {
    position: relative;
}

.cart-link {
    display: flex;
    align-items: center;
    color: #666;
    text-decoration: none;
    font-size: 13px;
}

.cart-link i {
    font-size: 20px;
    margin-right: 5px;
}

.cart-count {
    background: var(--primary-yellow-orange);
    color: #fff;
    font-size: 11px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -8px;
    right: -8px;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    background: none;
    border: none;
    padding: 0;
    margin-left: 5px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: #333;
    transition: all 0.3s;
}

/* Responsive */
@media (max-width: 991px) {
    .main-nav {
        display: none;
    }

    .header-search {
        margin-left: auto;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .header-account {
        display: none;
    }
}

.header-logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.header-logo img {
    height: 40px;
    width: auto;
    margin-right: 10px;
}

.logo-text {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Search Bar */
.header-search {
    flex: 1;
    max-width: 600px;
    margin: 0 30px;
}

.header-search form {
    display: flex;
    position: relative;
    width: 100%;
}

.input-select {
    width: 160px;
    height: 40px;
    padding: 0 15px;
    background: var(--steel-grey);
    border: 1px solid #2a2b38;
    color: #b9babc;
    border-radius: 4px 0 0 4px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23B9BABC' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 16px;
    padding-right: 35px;
}

.input {
    flex: 1;
    height: 40px;
    padding: 0 15px;
    background: var(--steel-grey);
    border: 1px solid #2a2b38;
    border-left: none;
    color: #fff;
    outline: none;
}

.search-btn {
    width: 100px;
    height: 40px;
    background: var(--primary-yellow-orange);
    color: #fff;
    border: none;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.search-btn:hover {
    background: var(--accent-orange);
}

/* Header Icons */
.header-ctn {
    display: flex;
    align-items: center;
    margin-left: auto;
    gap: 20px;
}

.header-ctn > div {
    position: relative;
}

.header-ctn a {
    color: #b9babc;
    text-decoration: none;
    display: flex;
    align-items: center;
    font-size: 14px;
    transition: color 0.3s ease;
}

.header-ctn a:hover {
    color: #fff;
}

.header-ctn i {
    font-size: 18px;
    margin-right: 5px;
}

.qty {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 18px;
    height: 18px;
    background: var(--primary-yellow-orange);
    color: #fff;
    border-radius: 50%;
    font-size: 10px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

/* Dropdown Toggle */
.dropdown-toggle::after {
    display: none;
}

/* Responsive */
@media (max-width: 991px) {
    #header .container {
        height: auto;
        padding: 10px 15px;
        flex-wrap: wrap;
    }

    .header-search {
        order: 3;
        margin: 15px 0 0;
        max-width: 100%;
        flex: 0 0 100%;
    }

    .header-ctn {
        margin-left: auto;
    }
}

#header .header-logo a span {
    color: var(--primary-yellow-orange);
}

/* Navigation */
#navigation {
    flex: 1 1 auto;
    height: 100%;
    display: flex;
    align-items: center;
}

#responsive-nav {
    width: 100%;
    height: 100%;
}

/* Search */
#header .header-search {
    flex: 0 0 300px;
    position: relative;
    margin: 0 20px;
}

#header .header-search input {
    background: var(--steel-grey);
    border: none;
    border-radius: 40px;
    height: 40px;
    width: 100%;
    color: #fff;
    padding: 0 45px 0 20px;
    font-size: 14px;
    box-sizing: border-box;
}

#header .header-search button {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--primary-yellow-orange);
    font-size: 16px;
    cursor: pointer;
    padding: 0;
    line-height: 1;
}

/* CTA Button */
#header .header-cta {
    flex: 0 0 auto;
    margin-left: 15px;
}

#header .header-cta a {
    display: inline-block;
    background: var(--primary-yellow-orange);
    color: #fff;
    border: 2px solid var(--primary-yellow-orange);
}

.primary-btn:hover {
    background-color: var(--accent-orange);
    border-color: var(--accent-orange);
    color: #fff;
}

.secondary-btn {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.secondary-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.hero-stats {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-yellow-orange);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .hero-section {
        padding: 60px 0;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 18px;
        padding: 0 15px;
    }

    .hero-features {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .hero-stats {
        gap: 20px;
    }

    .stat-number {
        font-size: 28px;
    }
}

/*=========================================================
	12 -> SLICK STYLE
===========================================================*/

/*----------------------------*\
	Arrows
\*----------------------------*/

.slick-prev,
.slick-next {
    width: 40px;
    height: 40px;
    border: 1px solid #e4e7ed;
    background-color: #fff;
    border-radius: 50%;
    z-index: 22;
    -webkit-transition: 0.2s all;
    transition: 0.2s all;
}

.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
    background-color: var(--primary-yellow-orange);
    border-color: var(--primary-yellow-orange);
}

.slick-prev:before,
.slick-next:before {
    font-family: FontAwesome;
    color: #2b2d42;
}

.slick-prev:before {
    content: "\f104";
}

.slick-next:before {
    content: "\f105";
}

.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
    color: #fff;
}

.slick-prev {
    left: -20px;
}

.slick-next {
    right: -20px;
}

/*----------------------------*\
	Dots
\*----------------------------*/

.slick-dots li,
.slick-dots li button,
.slick-dots li button:before {
    width: 10px;
    height: 10px;
}

.slick-dots li button:before {
    content: "";
    opacity: 1;
    background: #e4e7ed;
    border-radius: 50%;
}

.slick-dots li.slick-active button:before {
    background-color: var(--primary-yellow-orange);
}

.custom-dots .slick-dots {
    position: static;
    margin: 15px 0px;
}

/*=========================================================
	13 -> RESPONSIVE
===========================================================*/

@media only screen and (max-width: 1201px) {
}

@media only screen and (max-width: 991px) {
    #top-header .header-links.pull-left {
        float: none !important;
    }
    #top-header .header-links.pull-right {
        float: none !important;
        margin-top: 5px;
    }
    .header-logo {
        float: none;
        text-align: center;
    }
    .header-logo .logo {
        display: inline-block;
    }
    #product-imgs {
        margin-bottom: 60px;
        margin-top: 15px;
    }
    #rating {
        text-align: center;
    }
    #reviews {
        margin-top: 30px;
        margin-bottom: 30px;
    }
}

@media only screen and (max-width: 767px) {
    .section-title .section-nav {
        float: none;
        margin-top: 10px;
    }
    .section-tab-nav li {
        margin-top: 10px;
    }
}

@media only screen and (max-width: 480px) {
    [class*="col-xs"] {
        width: 100%;
    }
    .store-grid {
        float: none;
        margin-top: 10px;
    }
    .store-pagination {
        float: none;
        margin-top: 10px;
    }
}

/* Softer, more transparent dropdown borders */
.dropdown-menu,
.mega-menu {
    border: 1px solid rgba(44, 45, 66, 0.12) !important; /* subtle, semi-transparent border */
    border-radius: 8px !important; /* slightly rounded corners for a softer look */
    box-shadow: 0 8px 32px rgba(44, 45, 66, 0.1) !important; /* keep shadow soft */
    background: rgba(255, 255, 255, 0.97) !important;
}
