:root {

    /* COLORS */
    --primary: #fccd14;
    --primary-dark: #b6256d;
    --secondary: #fff0f6;

    --text-dark: #222;
    --text-light: #666;
    --border: #f1f1f1;

    --white: #fff;
    --bg-light: #fafafa;

    /* SHADOWS */
    --shadow-sm: 0 2px 10px rgba(0,0,0,0.04);
    --shadow-md: 0 8px 25px rgba(0,0,0,0.08);

    /* RADIUS */
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 30px;

    /* TRANSITION */
    --transition: all 0.3s ease;

}
body {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-light);
    background: var(--white);
    overflow-x: hidden;
}

h1,h2,h3,h4,h5,h6 {
    color: var(--text-dark);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 15px;
}

h1 {
    font-size: 42px;
}

h2 {
    font-size: 40px;
}

h3 {
    font-size: 30px;
}

h4 {
    font-size: 22px;
}

p {
    margin-bottom: 15px;
}

a {
    text-decoration: none !important;
    transition: var(--transition);
}
.primary-btn {

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 14px 28px;

    background: var(--primary);
    color: #fff !important;

    border-radius: 50px;
    border: none;

    font-size: 14px;
    font-weight: 600;

    transition: var(--transition);

    box-shadow: var(--shadow-sm);
}

.primary-btn:hover {

    background: var(--primary-dark);

    transform: translateY(-2px);

    box-shadow: var(--shadow-md);
}

.section_gap {
    padding: 90px 0;
}

@media (max-width: 991px) {

    .section_gap {
        padding: 70px 0;
    }

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

.section-title h1 {

    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
}

.section-title p {

    max-width: 650px;
    margin: auto;
    color: var(--text-light);
}

.top-marquee {

    background: #fff0f6;
    color: var(--primary);

    height: 42px;

    display: flex;
    align-items: center;

    overflow: hidden;

    border-bottom: 1px solid #ffe3ef;
}

.marquee-content {

    white-space: nowrap;

    animation: marquee 20s linear infinite;

    font-size: 14px;
    font-weight: 600;
}

@keyframes marquee {

    from {
        transform: translateX(100%);
    }

    to {
        transform: translateX(-100%);
    }

}
.card,
.product-card,
.single-product {

    border: none;
    border-radius: 20px;

    overflow: hidden;

    transition: var(--transition);

    box-shadow: var(--shadow-sm);

    background: #fff;
}

.card:hover,
.product-card:hover,
.single-product:hover {

    transform: translateY(-6px);

    box-shadow: var(--shadow-md);
}
input,
textarea,
select {

    border: 1px solid #eee !important;

    border-radius: 12px !important;

    height: 52px;

    padding: 12px 18px;

    box-shadow: none !important;
}

textarea {
    height: auto;
}
@media (max-width: 768px) {

    h1 {
        font-size: 38px;
    }

    h2 {
        font-size: 30px;
    }

    .section-title h1 {
        font-size: 32px;
    }

    .primary-btn {
        width: 100%;
    }

}
.single-gallery-image {

    margin-top: 24px;

    height: 240px;

    border-radius: 20px;

    overflow: hidden;

    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;

    transition: var(--transition);

    box-shadow: var(--shadow-sm);
}

.single-gallery-image:hover {

    transform: translateY(-5px);

    box-shadow: var(--shadow-md);
}
/* =========================
   LISTS
========================= */

.unordered-list li {

    position: relative;

    padding-left: 28px;

    margin-bottom: 12px;

    color: var(--text-light);
}

.unordered-list li::before {

    content: "";

    width: 10px;
    height: 10px;

    border-radius: 50%;

    background: var(--primary);

    position: absolute;

    left: 0;
    top: 9px;
}

/* ORDERED LIST */

.ordered-list,
.ordered-list-alpha,
.ordered-list-roman {

    padding-left: 22px;
}

.ordered-list li,
.ordered-list-alpha li,
.ordered-list-roman li {

    margin-bottom: 12px;

    color: var(--primary);

    font-weight: 600;
}

.ordered-list li span,
.ordered-list-alpha li span,
.ordered-list-roman li span {

    color: var(--text-light);

    font-weight: 400;
}
/* =========================
   INPUTS
========================= */

.single-input,
.single-textarea {

    width: 100%;

    border: 1px solid #eee;

    background: #fff;

    border-radius: 14px;

    padding: 14px 18px;

    font-size: 14px;

    transition: var(--transition);

    box-shadow: none;
}

.single-input {

    height: 52px;
}

.single-textarea {

    min-height: 140px;

    resize: vertical;
}

.single-input:focus,
.single-textarea:focus {

    border-color: var(--primary);

    box-shadow: 0 0 0 4px rgba(214,51,132,0.08);

    outline: none;
}
.input-group-icon {

    position: relative;
}

.input-group-icon .icon {

    position: absolute;

    left: 18px;
    top: 50%;

    transform: translateY(-50%);

    color: #999;

    z-index: 2;
}

.input-group-icon .single-input {

    padding-left: 48px;
}
/* =========================
   MODERN SWITCH
========================= */

.modern-switch {

    position: relative;

    width: 52px;
    height: 28px;
}

.modern-switch input {

    display: none;
}

.modern-switch label {

    position: absolute;

    width: 100%;
    height: 100%;

    background: #e9e9e9;

    border-radius: 50px;

    cursor: pointer;

    transition: var(--transition);
}

.modern-switch label::after {

    content: "";

    position: absolute;

    width: 22px;
    height: 22px;

    background: #fff;

    border-radius: 50%;

    top: 3px;
    left: 3px;

    transition: var(--transition);

    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.modern-switch input:checked + label {

    background: var(--primary);
}

.modern-switch input:checked + label::after {

    transform: translateX(24px);
}
/* =========================
   MODERN CHECKBOX
========================= */

.modern-checkbox {

    position: relative;

    width: 22px;
    height: 22px;
}

.modern-checkbox input {

    display: none;
}

.modern-checkbox label {

    width: 100%;
    height: 100%;

    border-radius: 6px;

    border: 2px solid #ddd;

    display: block;

    cursor: pointer;

    transition: var(--transition);

    position: relative;
}

.modern-checkbox label::after {

    content: "✓";

    position: absolute;

    top: 50%;
    left: 50%;

    transform: translate(-50%, -50%) scale(0);

    color: #fff;

    font-size: 12px;
    font-weight: bold;

    transition: var(--transition);
}

.modern-checkbox input:checked + label {

    background: var(--primary);

    border-color: var(--primary);
}

.modern-checkbox input:checked + label::after {

    transform: translate(-50%, -50%) scale(1);
}

/* =========================
   MODERN PRIMARY RADIO
========================= */

.primary-radio {

    position: relative;

    width: 22px;
    height: 22px;
}

.primary-radio input {

    position: absolute;

    width: 100%;
    height: 100%;

    opacity: 0;

    cursor: pointer;

    z-index: 2;
}

.primary-radio label {

    width: 100%;
    height: 100%;

    display: block;

    border-radius: 50%;

    border: 2px solid #dcdcdc;

    background: #fff;

    cursor: pointer;

    position: relative;

    transition: all 0.3s ease;
}

/* INNER DOT */

.primary-radio label::after {

    content: "";

    position: absolute;

    top: 50%;
    left: 50%;

    width: 10px;
    height: 10px;

    border-radius: 50%;

    background: #fccd14;

    transform: translate(-50%, -50%) scale(0);

    transition: all 0.3s ease;
}

/* ACTIVE */

.primary-radio input:checked + label {

    border-color: #fccd14;

    box-shadow: 0 0 0 4px rgba(214, 51, 132, 0.12);
}

.primary-radio input:checked + label::after {

    transform: translate(-50%, -50%) scale(1);
}

/* HOVER */

.primary-radio:hover label {

    border-color: #fccd14;
}

/* =========================
   MODERN CONFIRM RADIO
========================= */

.confirm-radio {

    position: relative;

    width: 22px;
    height: 22px;
}

.confirm-radio input {

    position: absolute;

    width: 100%;
    height: 100%;

    opacity: 0;

    cursor: pointer;

    z-index: 2;
}

.confirm-radio label {

    width: 100%;
    height: 100%;

    display: block;

    border-radius: 50%;

    border: 2px solid #dcdcdc;

    background: #fff;

    position: relative;

    cursor: pointer;

    transition: all 0.3s ease;
}

/* INNER DOT */

.confirm-radio label::after {

    content: "";

    position: absolute;

    top: 50%;
    left: 50%;

    width: 10px;
    height: 10px;

    border-radius: 50%;

    background: #22c55e;

    transform: translate(-50%, -50%) scale(0);

    transition: all 0.3s ease;
}

/* ACTIVE */

.confirm-radio input:checked + label {

    border-color: #22c55e;

    box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.12);
}

.confirm-radio input:checked + label::after {

    transform: translate(-50%, -50%) scale(1);
}

/* HOVER */

.confirm-radio:hover label {

    border-color: #22c55e;
}




/* =========================
   MODERN DISABLED RADIO
========================= */

.disabled-radio {

    position: relative;

    width: 22px;
    height: 22px;

    opacity: 0.6;
}

.disabled-radio input {

    position: absolute;

    width: 100%;
    height: 100%;

    opacity: 0;

    cursor: not-allowed;

    z-index: 2;
}

.disabled-radio label {

    width: 100%;
    height: 100%;

    display: block;

    border-radius: 50%;

    border: 2px solid #d6d6d6;

    background: #f3f4f6;

    position: relative;

    cursor: not-allowed;
}

/* INNER DOT */

.disabled-radio label::after {

    content: "";

    position: absolute;

    top: 50%;
    left: 50%;

    width: 10px;
    height: 10px;

    border-radius: 50%;

    background: #9ca3af;

    transform: translate(-50%, -50%) scale(0);
}

/* CHECKED */

.disabled-radio input:checked + label::after {

    transform: translate(-50%, -50%) scale(1);
}
/* =========================
   MODERN DEFAULT SELECT
========================= */

.default-select {

    width: 100%;
}

.default-select .nice-select {

    width: 100%;

    height: 52px;

    line-height: 52px;

    border-radius: 14px;

    border: 1px solid #e5e7eb;

    background: #fff;

    padding: 0 18px;

    font-size: 14px;

    font-weight: 500;

    color: #374151;

    box-shadow: none;

    transition: all 0.3s ease;
}

/* HOVER */

.default-select .nice-select:hover {

    border-color: #fccd14;
}

/* FOCUS */

.default-select .nice-select:focus,
.default-select .nice-select.open {

    border-color: #fccd14;

    box-shadow: 0 0 0 4px rgba(214, 51, 132, 0.08);
}

/* CURRENT TEXT */

.default-select .current {

    font-weight: 500;

    color: #374151;
}

/* DROPDOWN */

.default-select .nice-select .list {

    width: 100%;

    margin-top: 10px;

    padding: 10px;

    border: none;

    border-radius: 16px;

    background: #fff;

    box-shadow: 0 12px 35px rgba(0,0,0,0.08);

    overflow: hidden;
}

/* OPTIONS */

.default-select .nice-select .list .option {

    min-height: 44px;

    line-height: 44px;

    padding: 0 16px;

    border-radius: 10px;

    font-size: 14px;

    font-weight: 500;

    color: #4b5563;

    transition: all 0.25s ease;
}

/* HOVER */

.default-select .nice-select .list .option:hover {

    background: rgba(214, 51, 132, 0.08);

    color: #fccd14;
}

/* SELECTED */

.default-select .nice-select .list .option.selected {

    background: rgba(214, 51, 132, 0.12);

    color: #fccd14;

    font-weight: 600;
}

/* ARROW */

.default-select .nice-select::after {

    width: 8px;
    height: 8px;

    border-bottom: 2px solid #888;

    border-right: 2px solid #888;

    right: 18px;

    margin-top: -5px;
}





/* =========================
   MODERN FORM SELECT
========================= */

.form-select {

    width: 100%;
}

.form-select .nice-select {

    width: 100%;

    height: 54px;

    line-height: 54px;

    border-radius: 14px;

    border: 1px solid #e5e7eb;

    background: #fff;

    padding-left: 48px;

    padding-right: 18px;

    font-size: 14px;

    font-weight: 500;

    color: #374151;

    transition: all 0.3s ease;
}

/* FOCUS */

.form-select .nice-select:focus,
.form-select .nice-select.open {

    border-color: #fccd14;

    box-shadow: 0 0 0 4px rgba(214, 51, 132, 0.08);
}

/* DROPDOWN */

.form-select .nice-select .list {

    width: 100%;

    margin-top: 10px;

    padding: 10px;

    border: none;

    border-radius: 16px;

    background: #fff;

    box-shadow: 0 12px 35px rgba(0,0,0,0.08);
}

/* OPTIONS */

.form-select .nice-select .list .option {

    min-height: 44px;

    line-height: 44px;

    padding-left: 48px;

    border-radius: 10px;

    font-size: 14px;

    transition: all 0.25s ease;
}

.form-select .nice-select .list .option:hover {

    background: rgba(214, 51, 132, 0.08);

    color: #fccd14;
}

.form-select .nice-select .list .option.selected {

    background: rgba(214, 51, 132, 0.12);

    color: #fccd14;

    font-weight: 600;
}

/* ARROW */

.form-select .nice-select::after {

    width: 8px;
    height: 8px;

    border-bottom: 2px solid #888;

    border-right: 2px solid #888;

    right: 18px;

    margin-top: -5px;
}





/* =========================
   MODERN STICKY HEADER
========================= */

.is-sticky .header_area .main_menu .main_box {

    max-width: 100%;

    margin-top: 0;

    background: rgba(255,255,255,0.92);

    backdrop-filter: blur(12px);

    box-shadow: 0 8px 30px rgba(0,0,0,0.06);

    border-radius: 0;

    transition: all 0.3s ease;
}






/* =========================
   STICKY WRAPPER
========================= */

.sticky-wrapper {

    position: absolute;

    top: 40px;

    width: 100%;

    z-index: 999;
}

@media (max-width: 991px) {

    .sticky-wrapper {

        top: 0;
    }
}









/* =========================
   MODERN RESPONSIVE HEADER
========================= */

.header_area {

    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
      transition: all 0.3s ease;
}

/* NAV CONTAINER */

.header_area .main_menu .main_box {

    max-width: 1240px;
    margin: auto;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(12px);
    border-radius: 20px;
    padding: 0 24px;
    box-shadow: 0 10px 35px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}

/* NAVBAR */

.header_area .navbar {
    background: transparent;
    border: none;
}

/* LOGO */

.header_area .navbar-brand img {
   max-height: 58px;
    width: auto;
}

/* NAV MENU */

.header_area .navbar .nav .nav-item {
    margin-right: 34px;
    position: relative;
}

.header_area .navbar .nav .nav-item:last-child {
    margin-right: 0;
}

/* NAV LINKS */

.header_area .navbar .nav .nav-item .nav-link {
    position: relative;
    padding: 10px 0;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    color: #010a29;
    transition: all 0.3s ease;
}

/* UNDERLINE EFFECT */

.header_area .navbar .nav .nav-item .nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    background: #fcce14c2;
    border-radius: 10px;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

/* ACTIVE + HOVER */

.header_area .navbar .nav .nav-item:hover .nav-link,
.header_area .navbar .nav .nav-item.active .nav-link {
    color: #fccd14;
}

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

/* =========================
   DROPDOWN MENU
========================= */

.header_area .navbar .nav .nav-item.submenu {
    position: relative;
}

.header_area .navbar .nav .nav-item.submenu ul {
    position: absolute;
    top: 120%;
    left: 0;
    min-width: 220px;
    padding: 12px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    -ms-border-radius: 16px;
    -o-border-radius: 16px;
    -webkit-transform: translateY(10px);
    -moz-transform: translateY(10px);
    -ms-transform: translateY(10px);
    -o-transform: translateY(10px);
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

/* SHOW DROPDOWN */

.header_area .navbar .nav .nav-item.submenu:hover ul {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
}

/* DROPDOWN ITEMS */

.header_area .navbar .nav .nav-item.submenu ul .nav-item {
    margin: 0;
}

.header_area .navbar .nav .nav-item.submenu ul .nav-link {
    display: block;
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 14px;
    color: #444;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

/* DROPDOWN HOVER */

.header_area .navbar .nav .nav-item.submenu ul .nav-link:hover {
    background: rgba(214,51,132,0.08);
    color: #fccd14;
}

/* =========================
   RIGHT SIDE MENU
========================= */

.header_area .navbar .navbar-right {
    display: flex;
    align-items: center;
}

.header_area .navbar .navbar-right li {
    margin-left: 18px;
}

/* ICONS */

.header_area .navbar .navbar-right span {
    font-size: 20px;
    color: #222;
    transition: all 0.3s ease;
    -webkit-transition:;
    -moz-transition:;
    -ms-transition:;
    -o-transition:;
}

.header_area .navbar .navbar-right a:hover span {
    color: #fccd14;
}

/* =========================
   MOBILE TOGGLER
========================= */

.header_area .navbar-toggler {
    border: none;
    padding: 0;
    outline: none;
}

.header_area .navbar-toggler .icon-bar {
    width: 24px;
    height: 2px;
    background: #222;
    display: block;
    margin: 5px 0;
    border-radius: 20px;
    transition: all 0.3s ease;
    -webkit-border-radius:;
    -moz-border-radius:;
    -ms-border-radius:;
    -o-border-radius:;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

/* =========================
   MOBILE MENU
========================= */

@media (max-width: 991px) {

    .header_area {

        padding: 10px 12px;
    }

    .header_area .main_menu .main_box {

        border-radius: 16px;

        padding: 0 18px;
    }

    .header_area .navbar {

        padding: 12px 0;
    }

    .header_area .navbar-collapse {

        margin-top: 18px;

        padding-top: 18px;

        border-top: 1px solid #eee;
    }

    .header_area .navbar .nav {

        padding-bottom: 10px;
    }

    .header_area .navbar .nav .nav-item {

        margin-right: 0;

        margin-bottom: 12px;
    }

    .header_area .navbar .nav .nav-item .nav-link {

        display: block;

        padding: 12px 14px;

        border-radius: 12px;

        background: #f9fafb;
    }

    .header_area .navbar .nav .nav-item .nav-link::after {

        display: none;
    }

    .header_area .navbar .nav .nav-item .nav-link:hover {

        background: rgba(214,51,132,0.08);
    }

    /* MOBILE DROPDOWN */

    .header_area .navbar .nav .nav-item.submenu ul {

        position: relative;

        top: 10px;

        opacity: 1;

        visibility: visible;

        transform: none;

        box-shadow: none;

        padding: 10px;

        margin-top: 10px;

        border-radius: 12px;

        background: #f8f9fa;

        display: none;
    }

    .header_area .navbar .nav .nav-item.submenu.show ul {

        display: block;
    }

    .header_area .navbar .navbar-right {

        margin-top: 12px;

        padding-top: 16px;

        border-top: 1px solid #eee;
    }
}


/* =========================
   MODERN SEARCH BOX
========================= */

#search_input_box {

    position: fixed;

    top: 24px;
    left: 50%;

    transform: translateX(-50%);

    width: calc(100% - 30px);

    max-width: 700px;

    z-index: 9999;

    padding: 14px 18px;

    background: rgba(255,255,255,0.95);

    backdrop-filter: blur(14px);

    border-radius: 20px;

    box-shadow: 0 15px 40px rgba(0,0,0,0.12);

    border: 1px solid rgba(255,255,255,0.4);

    transition: all 0.3s ease;
}

/* SEARCH INPUT */

#search_input_box .form-control {

    height: 52px;

    border: none;

    background: #f8f9fb;

    border-radius: 14px;

    padding: 0 20px;

    font-size: 15px;

    font-weight: 500;

    color: #222;

    box-shadow: none;
}

/* FOCUS */

#search_input_box .form-control:focus {

    background: #fff;

    border-color: #fccd14;

    box-shadow: 0 0 0 4px rgba(214, 51, 132, 0.08);

    outline: none;
}

/* PLACEHOLDER */

#search_input_box .form-control::placeholder {

    color: #9ca3af;

    font-size: 14px;

    font-weight: 400;
}

/* BUTTON */

#search_input_box .btn {

    width: 52px;
    height: 52px;

    border-radius: 14px;

    border: none;

    background: linear-gradient(135deg, #fccd14, #ec4899);

    color: #fff;

    display: flex;

    align-items: center;

    justify-content: center;

    cursor: pointer;

    transition: all 0.3s ease;
}

/* BUTTON HOVER */

#search_input_box .btn:hover {

    transform: translateY(-2px);

    box-shadow: 0 10px 20px rgba(214, 51, 132, 0.2);
}

/* CLOSE ICON */

#search_input_box .lnr-cross {

    width: 42px;
    height: 42px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 12px;

    background: #f3f4f6;

    color: #444;

    font-size: 16px;

    cursor: pointer;

    transition: all 0.3s ease;
}

/* CLOSE HOVER */

#search_input_box .lnr-cross:hover {

    background: #fee2e2;

    color: #dc2626;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 767px) {

    #search_input_box {

        top: 12px;

        width: calc(100% - 20px);

        padding: 12px;

        border-radius: 16px;
    }

    #search_input_box .form-control {

        height: 48px;

        font-size: 14px;
    }

    #search_input_box .btn {

        width: 48px;
        height: 48px;
    }

    #search_input_box .lnr-cross {

        width: 38px;
        height: 38px;

        font-size: 14px;
    }
}

/* =========================
   CONTAINER FIX
========================= */

@media (max-width: 575px) {

    .navbar-expand-lg > .container,
    .navbar-expand-lg > .container-fluid {

        padding-left: 16px;
        padding-right: 16px;
    }
}






/*========================================
 HERO SECTION
========================================*/

.banner-area {
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    isolation: isolate;
}
.obanner-area {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    isolation: isolate;
}

/* Background Slider */

.banner-bg-slider {
    position: absolute;
    inset: 0;
    z-index: -2;
}

.banner-bg-slider .bg-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.08);

    transition:
        opacity 1.5s ease,
        transform 7s ease;
}

.banner-bg-slider .bg-slide.active {
    opacity: 1;
    transform: scale(1);
}

/* Dark Overlay */

.banner-area::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(0, 0, 0, 0.65),
            rgba(0, 0, 0, 0.55));
    z-index: -1;
}

/*========================================
 SLIDE
========================================*/

.single-slide {
    min-height: 100vh;
    display: flex;
    align-items: center;
}

/*========================================
 CONTENT
========================================*/

.banner-content {
    max-width: 620px;
    animation: fadeUp .9s ease;
}

.sub-title {
    display: inline-block;
    margin-bottom: 18px;
    color: #ffba00;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.banner-content h1 {
    font-size: 52px;
    line-height: 1.08;
    font-weight: 800;
    color: #fff;
    margin-bottom: 24px;
    letter-spacing: -2px;
}

.banner-content p {
    font-size: 18px;
    line-height: 1.9;
    color: rgba(255,255,255,.88);
    margin-bottom: 35px;
    max-width: 550px;
}
/* Desktop only */
@media (min-width: 992px) {

    .header_area {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 9999;

        transform: translateY(-100%);
        opacity: 0;

        transition: all 0.4s ease;
    }

    .header_area.show-navbar {
        transform: translateY(0);
        opacity: 1;
    }

    /* Prevent white gap */
    body {
        padding-top: 0 !important;
    }

    /* Banner full height */
    .banner-area {
        padding-top: 0;
        margin-top: 0;
        min-height: 100vh;
    }
}

/* Mobile keep navbar visible */
@media (max-width: 991px) {

    .header_area {
        transform: translateY(0) !important;
        opacity: 1 !important;
    }
}
/*========================================
 BUTTON
========================================*/

.primary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 38px;
    border-radius: 60px;
    background: linear-gradient(135deg, #ffba00, #ff6c00);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: .35s ease;
    box-shadow: 0 15px 40px rgba(255, 108, 0, .3);
}

.primary-btn:hover {
    transform: translateY(-5px);
    color: #fff;
    box-shadow: 0 20px 45px rgba(255, 108, 0, .45);
}

/*========================================
 BANNER IMAGE
========================================*/
.banner-img {
    position: relative;
    text-align: center;
    overflow: hidden;
}


.banner-img img {
    width: 100%;
    max-width: 650px;
    transform-origin: center center;
    animation: zoomPulse 6s ease-in-out infinite;
    filter: drop-shadow(0 30px 45px rgba(141, 141, 141, 0));
    transition: all .5s ease;
    -webkit-filter: drop-shadow(0 30px 45px rgba(243, 237, 157, 0));
}
@keyframes zoomPulse {

    0% {
        transform: scale(1);
    }

    25% {
        transform: scale(1.05);
    }

    50% {
        transform: scale(1.09);
    }

    75% {
        transform: scale(1.04);
    }

    100% {
        transform: scale(1);
    }
}
.single-slide.active .banner-content {
    animation: contentFadeUp 1s ease;
}

.single-slide.active .banner-img img {
    animation:
        zoomPulse 6s ease-in-out infinite,
        imageEntrance 1.2s ease;
}

@keyframes imageEntrance {
    from {
        opacity: 0;
        transform: scale(.85);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes contentFadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Floating Animation */

/* @keyframes floatImage {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-18px) rotate(1deg);
    }

    100% {
        transform: translateY(0px) rotate(0deg);
    }
} */

/* Glow Animation */
/* 
@keyframes imageGlow {
    0% {
        filter: drop-shadow(0 25px 35px rgba(255,186,0,.15));
    }

    50% {
        filter: drop-shadow(0 35px 55px rgba(255,186,0,.35));
    }

    100% {
        filter: drop-shadow(0 25px 35px rgba(255,186,0,.15));
    }
} */

/*========================================
 TEXT ANIMATION
========================================*/

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(45px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/*========================================
 OWL NAVIGATION
========================================*/

.active-banner-slider .owl-nav {
    position: absolute;
    right: 40px;
    bottom: 40px;
    display: flex;
    gap: 14px;
}

.active-banner-slider .owl-prev,
.active-banner-slider .owl-next {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.18);
    background: rgba(255,255,255,.08);
    backdrop-filter: blur(10px);
    color: #fff !important;
    transition: .3s ease;
}

.active-banner-slider .owl-prev:hover,
.active-banner-slider .owl-next:hover {
    background: linear-gradient(135deg, #ffba00, #ff6c00);
    transform: translateY(-4px);
}

/*========================================
 RESPONSIVE
========================================*/

@media (max-width: 991px) {

    .banner-area,
    .single-slide {
        min-height: auto;
        padding: 120px 0 80px;
    }

    .banner-content {
        text-align: center;
        margin: auto;
    }

    .banner-content h1 {
        font-size: 52px;
    }

    .banner-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .banner-img {
        margin-top: 50px;
    }

    .banner-img img {
        max-width: 480px;
    }

    .active-banner-slider .owl-nav {
        right: 50%;
        transform: translateX(50%);
        bottom: -20px;
    }
}

@media (max-width: 767px) {

    .banner-content h1 {
        font-size: 40px;
        line-height: 1.2;
    }

    .banner-content p {
        font-size: 15px;
        line-height: 1.8;
    }

    .primary-btn {
        padding: 14px 28px;
        font-size: 13px;
    }

    .banner-img img {
        max-width: 100%;
    }
}

@media (max-width: 480px) {

    .banner-content h1 {
        font-size: 32px;
    }

    .sub-title {
        font-size: 12px;
        letter-spacing: 1px;
    }

    .banner-content p {
        font-size: 14px;
    }

    .active-banner-slider .owl-prev,
    .active-banner-slider .owl-next {
        width: 45px;
        height: 45px;
    }
}
/*========================================
  ADD TO BAG SECTION
========================================*/

.add-bag {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 35px;
}

.add-bag .add-btn {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ffba00, #ff6c00);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 30px rgba(255, 108, 0, 0.3);
    transition: all .35s ease;
}

.add-bag .add-btn:hover {
    transform: rotate(90deg) scale(1.08);
}

.add-bag .add-btn span {
    font-size: 20px;
    color: #fff;
    transform: rotate(45deg);
}

.add-bag .add-text {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    letter-spacing: .5px;
    text-transform: uppercase;
}

/*========================================
  BREADCRUMB AREA
========================================*/

.organic-breadcrumb {
    position: relative;
    overflow: hidden;
    padding: 160px 0 100px;
    background:
        linear-gradient(rgba(241, 227, 34, 0.363),
        rgba(255, 255, 255, 0)),
        url(../img/banner/common-banner.jpg)
        center center/cover no-repeat;
}

.breadcrumb-banner {
    text-align: center;
}

.breadcrumb-banner h1 {
    font-size: 52px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
}

.breadcrumb-banner p {
    font-size: 16px;
    color: rgba(255,255,255,0.85);
    margin-bottom: 18px;
}

.breadcrumb-banner nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.breadcrumb-banner nav a {
    color: rgba(255,255,255,0.85);
    font-size: 14px;
    font-weight: 500;
    transition: all .3s ease;
}

.breadcrumb-banner nav a:hover {
    color: #ffba00;
}

.breadcrumb-banner nav a span {
    margin-left: 10px;
    opacity: .6;
}

/*========================================
  RESPONSIVE DESIGN
========================================*/

@media (max-width: 1200px) {

    .banner-area .banner-content h1 {
        font-size: 56px;
    }
}

@media (max-width: 991px) {

    .banner-area {
        min-height: auto;
        padding: 120px 0 80px;
        text-align: center;
    }

    .banner-area .banner-content {
        margin: auto;
    }

    .banner-area .banner-content h1 {
        font-size: 46px;
    }

    .banner-area .banner-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .banner-area .banner-img {
        margin-top: 50px;
    }

    .banner-area .active-banner-slider .owl-nav {
        display: none;
    }

    .add-bag {
        justify-content: center;
    }

    .organic-breadcrumb {
        padding: 130px 0 80px;
    }
}

@media (max-width: 767px) {

    .banner-area .banner-content h1 {
        font-size: 36px;
        line-height: 1.25;
    }

    .banner-area .banner-content p {
        font-size: 15px;
    }

    .banner-area .primary-btn {
        height: 50px;
        padding: 0 28px;
        font-size: 13px;
    }

    .breadcrumb-banner h1 {
        font-size: 34px;
    }

    .breadcrumb-banner p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {

    .banner-area {
        padding: 100px 0 70px;
    }

    .banner-area .banner-content h1 {
        font-size: 30px;
    }

    .banner-area .banner-content p {
        font-size: 14px;
        line-height: 1.7;
    }

    .add-bag .add-btn {
        width: 50px;
        height: 50px;
    }

    .organic-breadcrumb {
        padding: 110px 0 70px;
    }

    .breadcrumb-banner h1 {
        font-size: 28px;
    }
}



/*========================================
  FEATURES AREA
========================================*/

.features-area {
    position: relative;
    padding: 80px 0;
    background: #f9fafc;
}

.features-inner {
    background: #ffffff;
    border-radius: 24px;
    padding: 50px 35px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

/*----------------------------------------
  SINGLE FEATURE CARD
----------------------------------------*/

.single-features {
    position: relative;
    text-align: center;
    padding: 35px 25px;
    height: 100%;
    background: #fff;
    border-radius: 20px;
    transition: all 0.35s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.single-features::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 1px;
    background: linear-gradient(135deg, #ffba00, #ff6c00);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    opacity: 0;
    transition: all .35s ease;
}

.single-features:hover::before {
    opacity: 1;
}

.single-features:hover {
    transform: translateY(-10px);
    box-shadow: 0 18px 40px rgba(255, 108, 0, 0.12);
}

/*----------------------------------------
  FEATURE ICON
----------------------------------------*/

.single-features .f-icon {
    width: 85px;
    height: 85px;
    margin: 0 auto 25px;
    border-radius: 50%;
    background: linear-gradient(135deg,
            rgba(255,186,0,0.12),
            rgba(255,108,0,0.12));
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .35s ease;
}

.single-features .f-icon img {
    max-width: 42px;
    transition: all .35s ease;
}

.single-features:hover .f-icon {
    background: linear-gradient(135deg, #ffba00, #ff6c00);
    transform: rotateY(180deg);
}

.single-features:hover .f-icon img {
    transform: scale(1.1);
    filter: brightness(0) invert(1);
}

/*----------------------------------------
  FEATURE CONTENT
----------------------------------------*/

.single-features h6 {
    font-size: 18px;
    font-weight: 700;
    color: #222;
    margin-bottom: 12px;
}

.single-features p {
    font-size: 14px;
    line-height: 1.8;
    color: #777;
    margin-bottom: 0;
}

/*========================================
  CATEGORY / DEAL AREA
========================================*/

.single-deal {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    margin-bottom: 30px;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.single-deal img {
    width: 100%;
    display: block;
    transition: transform .6s ease;
}

/*----------------------------------------
  DARK OVERLAY
----------------------------------------*/

.single-deal .overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to top,
        rgba(0,0,0,0.72),
        rgba(0,0,0,0.15));
    opacity: 0;
    visibility: hidden;
    transition: all .4s ease;
}

/*----------------------------------------
  DEAL CONTENT
----------------------------------------*/

.single-deal .deal-details {
    position: absolute;
    left: 50%;
    top: 60%;
    width: 100%;
    padding: 20px;
    text-align: center;
    transform: translate(-50%, -50%);
    opacity: 0;
    visibility: hidden;
    transition: all .4s ease;
    z-index: 2;
}

.single-deal .deal-details h6 {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.single-deal .deal-details p {
    color: rgba(255,255,255,0.85);
    font-size: 14px;
    margin-bottom: 18px;
}

.single-deal .deal-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 50px;
    background: linear-gradient(135deg, #ffba00, #ff6c00);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    transition: all .35s ease;
}

.single-deal .deal-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(255,108,0,0.3);
}

/*----------------------------------------
  HOVER EFFECTS
----------------------------------------*/

.single-deal:hover img {
    transform: scale(1.08);
}

.single-deal:hover .overlay {
    opacity: 1;
    visibility: visible;
}

.single-deal:hover .deal-details {
    top: 50%;
    opacity: 1;
    visibility: visible;
}

/*========================================
  RESPONSIVE DESIGN
========================================*/

@media (max-width: 991px) {

    .features-area {
        padding: 70px 0;
    }

    .features-inner {
        padding: 40px 25px;
    }

    .single-features {
        margin-bottom: 25px;
    }

    .single-deal .deal-details h6 {
        font-size: 20px;
    }
}

@media (max-width: 767px) {

    .features-area {
        padding: 60px 0;
    }

    .features-inner {
        padding: 30px 20px;
        border-radius: 18px;
    }

    .single-features {
        padding: 30px 20px;
    }

    .single-features .f-icon {
        width: 75px;
        height: 75px;
    }

    .single-features h6 {
        font-size: 17px;
    }

    .single-deal {
        border-radius: 18px;
    }

    .single-deal .deal-details h6 {
        font-size: 18px;
    }

    .single-deal .deal-details p {
        font-size: 13px;
    }
}

@media (max-width: 575px) {

    .features-area {
        padding: 50px 0;
    }

    .features-inner {
        padding: 25px 15px;
    }

    .single-features {
        padding: 25px 18px;
    }

    .single-features .f-icon {
        width: 68px;
        height: 68px;
        margin-bottom: 20px;
    }

    .single-features .f-icon img {
        max-width: 36px;
    }

    .single-features h6 {
        font-size: 16px;
    }

    .single-features p {
        font-size: 13px;
    }

    .single-deal .deal-details {
        padding: 15px;
    }

    .single-deal .deal-details h6 {
        font-size: 16px;
    }

    .single-deal .deal-btn {
        padding: 10px 22px;
        font-size: 12px;
    }
}

/*========================================
  PRODUCT AREA
========================================*/

.active-product-area {
    position: relative;
    padding: 90px 0 70px;
    background: #f9fafc;
    overflow: hidden;
}

/*========================================
  OWL NAVIGATION
========================================*/

.active-product-area .owl-nav {
    position: absolute;
    top: -80px;
    right: 0;
    display: flex;
    align-items: center;
    gap: 14px;
}

/*----------------------------------------
  NAV BUTTONS
----------------------------------------*/

.active-product-area .owl-nav div {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);

    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;
    opacity: 1;

    transition: all 0.35s ease;
}

/* Hover Effect */
.active-product-area .owl-nav div:hover {
    background: linear-gradient(135deg, #ffba00, #ff6c00);
    transform: translateY(-4px);
    box-shadow: 0 14px 30px rgba(255, 108, 0, 0.28);
}

/* Icons */
.active-product-area .owl-nav div span,
.active-product-area .owl-nav div i {
    font-size: 18px;
    color: #222;
    transition: all 0.3s ease;
}

.active-product-area .owl-nav div:hover span,
.active-product-area .owl-nav div:hover i {
    color: #fff;
}

/* Remove Old Positioning */
.active-product-area .owl-nav .owl-prev,
.active-product-area .owl-nav .owl-next {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    margin: 0;
}

/*========================================
  PRODUCT SLIDER ITEMS
========================================*/

.active-product-area .single-product {
    transition: all .35s ease;
}

.active-product-area .single-product:hover {
    transform: translateY(-8px);
}

/*========================================
  RESPONSIVE DESIGN
========================================*/

@media (max-width: 1200px) {

    .active-product-area {
        padding: 80px 0 60px;
    }

    .active-product-area .owl-nav {
        top: -70px;
    }
}

@media (max-width: 991px) {

    .active-product-area {
        padding: 70px 0 55px;
    }

    .active-product-area .owl-nav {
        position: relative;
        top: auto;
        right: auto;
        justify-content: center;
        margin-bottom: 35px;
    }

    .active-product-area .owl-nav div {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 767px) {

    .active-product-area {
        padding: 60px 0 50px;
    }

    .active-product-area .owl-nav {
        gap: 12px;
        margin-bottom: 28px;
    }

    .active-product-area .owl-nav div {
        width: 46px;
        height: 46px;
    }

    .active-product-area .owl-nav div span,
    .active-product-area .owl-nav div i {
        font-size: 16px;
    }
}

@media (max-width: 480px) {

    .active-product-area {
        padding: 50px 0 40px;
    }

    .active-product-area .owl-nav {
        gap: 10px;
        margin-bottom: 24px;
    }

    .active-product-area .owl-nav div {
        width: 42px;
        height: 42px;
    }

    .active-product-area .owl-nav div span,
    .active-product-area .owl-nav div i {
        font-size: 14px;
    }
}


/*========================================
  SINGLE PRODUCT CARD
========================================*/

.single-product {
    position: relative;
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    margin-bottom: 35px;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0,0,0,0.04);
}

.single-product:hover {
    transform: translateY(-10px);
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.12);
}

/*========================================
  PRODUCT IMAGE
========================================*/

.single-product .product-img {
    position: relative;
    overflow: hidden;
    background: #f8f9fc;
}

.single-product img {
    width: 100%;
    display: block;
    transition: transform 0.5s ease;
}

.single-product:hover img {
    transform: scale(1.08);
}

/* Optional Image Overlay */
.single-product .product-img::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(0,0,0,0.15),
            transparent);
    opacity: 0;
    transition: all .35s ease;
    z-index: 1;
}

.single-product:hover .product-img::before {
    opacity: 1;
}

/*========================================
  PRODUCT DETAILS
========================================*/

.single-product .product-details {
    padding: 24px;
}

.single-product .product-details h6 {
    font-size: 17px;
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 12px;
    color: #222;
    text-transform: capitalize;
    transition: color .3s ease;
}

.single-product:hover .product-details h6 {
    color: #ff6c00;
}

/*========================================
  PRICE AREA
========================================*/

.single-product .product-details .price {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.single-product .product-details .price h6 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    color: #ff6c00;
}

.single-product .product-details .price .l-through {
    font-size: 14px;
    color: #999;
    text-decoration: line-through;
    margin: 0;
}

/*========================================
  PRODUCT ACTION BUTTONS
========================================*/

.single-product .product-details .prd-bottom {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 18px;
}

/*----------------------------------------
  ACTION BUTTON
----------------------------------------*/

.single-product .product-details .prd-bottom .social-info {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;

    min-width: 46px;
    height: 46px;
    padding: 0 16px;

    border-radius: 50px;
    background: #f8f9fc;
    overflow: hidden;

    transition: all 0.35s ease;
    cursor: pointer;
    border: 1px solid rgba(0,0,0,0.05);
}

.single-product .product-details .prd-bottom .social-info:hover {
    background: linear-gradient(135deg, #ffba00, #ff6c00);
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(255, 108, 0, 0.25);
}

/*----------------------------------------
  ICON
----------------------------------------*/

.single-product .product-details .prd-bottom .social-info span {
    width: 34px;
    height: 34px;
    min-width: 34px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    background: #828bb2;
    color: #fff;
    font-size: 14px;

    transition: all 0.35s ease;
}

.single-product .product-details .prd-bottom .social-info:hover span {
    background: rgba(255,255,255,0.18);
    color: #fff;
    transform: rotate(360deg);
}

/* Remove old after effect */
.single-product .product-details .prd-bottom .social-info span::after {
    display: none;
}

/*----------------------------------------
  HOVER TEXT
----------------------------------------*/

.single-product .product-details .prd-bottom .social-info .hover-text {
    position: relative;
    left: 0;
    top: 0;

    opacity: 1;
    visibility: visible;

    font-size: 13px;
    font-weight: 600;
    letter-spacing: .3px;
    white-space: nowrap;
    text-transform: uppercase;

    color: #222;
    transition: all 0.35s ease;
}

.single-product .product-details .prd-bottom .social-info:hover .hover-text {
    color: #fff;
}

/*========================================
  PRODUCT BADGE (OPTIONAL)
========================================*/

.single-product .product-badge {
    position: absolute;
    top: 18px;
    left: 18px;
    z-index: 5;

    padding: 7px 14px;
    border-radius: 50px;

    font-size: 11px;
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;

    background: linear-gradient(135deg, #ffba00, #ff6c00);
    color: #fff;

    box-shadow: 0 8px 18px rgba(255, 108, 0, 0.3);
}

/*========================================
  RESPONSIVE DESIGN
========================================*/

@media (max-width: 991px) {

    .single-product .product-details {
        padding: 22px;
    }

    .single-product .product-details h6 {
        font-size: 16px;
    }

    .single-product .product-details .price h6 {
        font-size: 17px;
    }
}

@media (max-width: 767px) {

    .single-product {
        border-radius: 20px;
    }

    .single-product .product-details {
        padding: 20px;
    }

    .single-product .product-details .prd-bottom {
        gap: 10px;
    }

    .single-product .product-details .prd-bottom .social-info {
        height: 42px;
        padding: 0 14px;
    }

    .single-product .product-details .prd-bottom .social-info span {
        width: 30px;
        height: 30px;
        min-width: 30px;
        font-size: 13px;
    }

    .single-product .product-details .prd-bottom .social-info .hover-text {
        font-size: 12px;
    }
}

@media (max-width: 480px) {

    .single-product {
        margin-bottom: 25px;
    }

    .single-product .product-details {
        padding: 18px;
    }

    .single-product .product-details h6 {
        font-size: 15px;
    }

    .single-product .product-details .price {
        gap: 8px;
    }

    .single-product .product-details .price h6 {
        font-size: 16px;
    }

    .single-product .product-details .prd-bottom {
        justify-content: space-between;
    }

    .single-product .product-details .prd-bottom .social-info {
        flex: 1;
        justify-content: center;
        padding: 0 10px;
    }

    .single-product .product-details .prd-bottom .social-info .hover-text {
        display: none;
    }
}



/* end product area css
============================================================================================ */
.exclusive-deal-area {
  background: linear-gradient(to bottom, #f9f9ff, #ffffff);
  overflow: hidden;
}

.exclusive-deal-area .exclusive-left {
  position: relative;
  background: url(../img/exclusive.jpg) center center/cover no-repeat;
  text-align: center;
  padding: 180px 40px;
  z-index: 1;
}

.exclusive-deal-area .exclusive-left::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: -1;
}

.exclusive-deal-area .exclusive-left .clock_sec {
  max-width: 650px;
  margin: 0 auto;
}

.exclusive-deal-area .exclusive-left .clock_sec h1 {
  font-size: 42px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 15px;
  line-height: 1.3;
}

.exclusive-deal-area .exclusive-left .clock_sec p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 15px;
  margin-bottom: 40px;
}

.exclusive-deal-area .exclusive-left .clock-wrap {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  padding: 25px 15px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.exclusive-deal-area .exclusive-left .clock-wrap .clockinner {
  min-width: 100px;
  padding: 10px 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.exclusive-deal-area .exclusive-left .clock-wrap .clockinner:last-child {
  border-right: none;
}

.exclusive-deal-area .exclusive-left .clock-wrap .clockinner h1 {
  font-size: 34px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 5px;
}

.exclusive-deal-area .exclusive-left .clock-wrap .clockinner span {
  color: rgba(255, 255, 255, 0.75);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.exclusive-deal-area .exclusive-left .primary-btn {
  margin-top: 40px;
}

.exclusive-deal-area .exclusive-right {
  text-align: center;
  padding: 100px 20px;
}

.exclusive-deal-area .exclusive-right .active-exclusive-product-slider {
  position: relative;
  max-width: 650px;
  margin: 0 auto;
}

.exclusive-deal-area .exclusive-right .single-exclusive-slider img {
  max-width: 100%;
  transition: transform 0.4s ease;
}

.exclusive-deal-area .exclusive-right .single-exclusive-slider:hover img {
  transform: scale(1.03);
}

.exclusive-deal-area .exclusive-right .owl-nav div {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s ease;
  opacity: 0.8;
}

.exclusive-deal-area .exclusive-right .owl-nav div:hover {
  background: #ffba00;
  color: #fff;
  opacity: 1;
}

.exclusive-deal-area .exclusive-right .owl-nav .owl-prev {
  left: -20px;
}

.exclusive-deal-area .exclusive-right .owl-nav .owl-next {
  right: -20px;
}

.exclusive-deal-area .exclusive-right .product-details {
  margin-top: 35px;
}

.exclusive-deal-area .exclusive-right .product-details h4 {
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 15px;
  color: #222;
}

.exclusive-deal-area .exclusive-right .product-details .price {
  margin-bottom: 20px;
}

.exclusive-deal-area .exclusive-right .product-details .price h6 {
  display: inline-block;
  font-size: 20px;
  font-weight: 700;
  color: #ff6c00;
  margin-right: 10px;
}

.exclusive-deal-area .exclusive-right .product-details .price .l-through {
  color: #aaa;
  text-decoration: line-through;
  font-size: 16px;
}

.exclusive-deal-area .exclusive-right .product-details .add-bag {
  margin-top: 25px;
}

.exclusive-deal-area .exclusive-right .product-details .add-bag .add-btn {
  width: 45px;
  height: 45px;
  line-height: 45px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffba00, #ff6c00);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 20px rgba(255, 108, 0, 0.25);
  transition: all 0.3s ease;
}

.exclusive-deal-area .exclusive-right .product-details .add-bag .add-btn:hover {
  transform: translateY(-4px) scale(1.05);
}

.exclusive-deal-area .exclusive-right .product-details .add-bag .add-btn span {
  transform: rotate(0deg);
  font-size: 16px;
}

@media (max-width: 1199px) {
  .exclusive-deal-area .exclusive-left,
  .exclusive-deal-area .exclusive-right {
    padding: 100px 30px;
  }
}

@media (max-width: 991px) {
  .exclusive-deal-area .exclusive-left {
    padding: 80px 20px;
  }

  .exclusive-deal-area .exclusive-right {
    padding: 70px 20px;
  }

  .exclusive-deal-area .exclusive-left .clock_sec h1 {
    font-size: 34px;
  }

  .exclusive-deal-area .exclusive-right .owl-nav {
    display: none;
  }
}

@media (max-width: 767px) {
  .exclusive-deal-area .exclusive-left .clock-wrap {
    gap: 15px;
  }

  .exclusive-deal-area .exclusive-left .clock-wrap .clockinner {
    min-width: 80px;
    border-right: none;
    padding: 10px;
  }

  .exclusive-deal-area .exclusive-left .clock_wrap .clockinner h1 {
    font-size: 26px;
  }

  .exclusive-deal-area .exclusive-right .product-details h4 {
    font-size: 22px;
  }
}

@media (max-width: 575px) {
  .exclusive-deal-area .exclusive-left,
  .exclusive-deal-area .exclusive-right {
    padding: 60px 15px;
  }

  .exclusive-deal-area .exclusive-left .clock_sec h1 {
    font-size: 28px;
  }

  .exclusive-deal-area .exclusive-left .clock_sec p {
    font-size: 14px;
  }

  .exclusive-deal-area .exclusive-left .clock-wrap {
    padding: 20px 10px;
  }

  .exclusive-deal-area .exclusive-right .product-details h4 {
    font-size: 20px;
  }
}
.single-img {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background: #fff;
}

@media (max-width: 767px) {
  .single-img {
    min-width: 48%;
  }
}

.single-img img {
  width: 100%;
  display: block;
  opacity: 0.75;
  border-radius: 18px;
  transition: all 0.4s ease;
}

@media (max-width: 800px) {
  .single-img img {
    margin-bottom: 20px;
  }
}

.single-img:hover img {
  opacity: 1;
  transform: scale(1.05);
}

/* Related Product */

.single-related-product {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 16px;
  margin-bottom: 20px;
  background: #fff;
  border-radius: 18px;
  border: 1px solid #f1f1f1;
  transition: all 0.35s ease;
}

.single-related-product:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.single-related-product img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 14px;
}

.single-related-product .desc {
  margin: 0;
  flex: 1;
}

.single-related-product a {
  color: #222;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
  transition: color 0.3s ease;
}

.single-related-product:hover .desc a {
  color: #ffba00;
}

.single-related-product .price {
  margin-top: 10px;
}

.single-related-product .price h6 {
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  color: #ff6c00;
  margin-right: 8px;
  margin-bottom: 0;
}

.single-related-product .price .l-through {
  color: #aaa;
  text-decoration: line-through;
  font-size: 14px;
}

/* Category Right */

@media (max-width: 991px) {
  .ctg-right {
    display: none;
  }
}

/* Details Tabs */

.details-tab-navigation {
  background: #f9fafc;
  padding: 15px;
  border-radius: 20px 20px 0 0;
}

.details-tab-navigation .nav-tabs {
  border: none;
  gap: 10px;
}

.details-tab-navigation .nav-link {
  border: 1px solid #e8e8e8;
  background: #fff;
  color: #222;
  padding: 12px 28px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.details-tab-navigation .nav-link:hover,
.details-tab-navigation .nav-link.active {
  background: linear-gradient(135deg, #ffba00, #ff6c00);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 8px 20px rgba(255, 108, 0, 0.2);
}

/* Description */

.description {
  padding: 35px;
  background: #fff;
  border: 1px solid #eee;
  border-top: 0;
  border-radius: 0 0 18px 18px;
  line-height: 1.8;
  color: #666;
}

/* Specification Table */

.specification-table {
  padding: 35px;
  background: #fff;
  border: 1px solid #eee;
  border-top: 0;
  border-radius: 0 0 18px 18px;
}

.specification-table .single-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid #f1f1f1;
}

.specification-table .single-row:last-child {
  border-bottom: none;
}

.specification-table .single-row span {
  width: 50%;
  font-size: 14px;
}

.specification-table .single-row span:first-child {
  font-weight: 600;
  color: #222;
  margin-left: 0;
}

.specification-table .single-row span:last-child {
  color: #666;
}

/* Review Section */

.review-wrapper {
  padding: 35px;
  background: #fff;
  border: 1px solid #eee;
  border-top: 0;
  border-radius: 0 0 18px 18px;
}

.review-overall {
  width: 240px;
  padding: 35px 25px;
  border-radius: 20px;
  background: linear-gradient(135deg, #fff8e8, #fff);
  border: 1px solid #f3f3f3;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

.review-overall h3 {
  font-weight: 600;
  color: #222;
}

.review-overall .main-review {
  color: #ffba00;
  font-size: 52px;
  font-weight: 700;
  padding: 12px 0;
  line-height: 1;
}

.review-count {
  margin-left: 35px;
}

.review-count h4 {
  margin-bottom: 10px;
  font-weight: 600;
}

.single-review-count {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.single-review-count .total-star {
  margin: 0 12px;
  color: #ffba00;
}

.single-review-count span {
  font-size: 14px;
  color: #666;
}

/* Responsive */

@media (max-width: 767px) {
  .single-related-product {
    flex-direction: column;
    text-align: center;
  }

  .single-related-product img {
    width: 100%;
    height: auto;
  }

  .details-tab-navigation {
    padding: 10px;
  }

  .details-tab-navigation .nav-link {
    width: 100%;
    text-align: center;
  }

  .description,
  .specification-table,


  
  .review-wrapper {
    padding: 25px 20px;
  }

  .specification-table .single-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }

  .specification-table .single-row span {
    width: 100%;
  }

  .review-overall {
    width: 100%;
    margin-bottom: 30px;
  }

  .review-count {
    margin-left: 0;
  }
}

.total-star {
  display: flex;
  align-items: center;
  gap: 4px;
}

.total-star i {
  font-size: 15px;
  color: #d6d6d6;
  transition: color 0.3s ease, transform 0.3s ease;
}

.total-star.five-star i:nth-child(-n + 5),
.total-star.four-star i:nth-child(-n + 4),
.total-star.three-star i:nth-child(-n + 3),
.total-star.two-star i:nth-child(-n + 2),
.total-star.one-star i:nth-child(-n + 1) {
  color: #ffba00;
}

.total-star:hover i {
  transform: scale(1.08);
}

/* Comments Section */

.total-comment {
  margin-top: 40px;
}

.total-comment .single-comment {
  padding: 25px;
  margin-bottom: 25px;
  background: #fff;
  border: 1px solid #f1f1f1;
  border-radius: 20px;
  transition: all 0.35s ease;
}

.total-comment .single-comment:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06);
}

.total-comment .single-comment .user-details {
  display: flex;
  align-items: center;
}

.total-comment .single-comment .user-details img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 18px;
  border: 3px solid #fff3d1;
  box-shadow: 0 6px 16px rgba(255, 186, 0, 0.15);
}

.total-comment .single-comment .user-details .user-name h5 {
  font-size: 17px;
  font-weight: 600;
  color: #222;
  margin-bottom: 6px;
}

.total-comment .single-comment .user-details .user-name p {
  font-size: 13px;
  color: #888;
  margin: 0;
}

.total-comment .single-comment .user-comment {
  margin-top: 18px;
  color: #666;
  line-height: 1.8;
  font-size: 15px;
}

/* Add Review */

.add-review {
  margin-top: 50px;
}

.add-review h3 {
  margin-bottom: 25px;
  font-size: 28px;
  font-weight: 700;
  color: #222;
}

/* Form */

.main-form {
  text-align: right;
  background: #fff;
  padding: 35px;
  border-radius: 20px;
  border: 1px solid #f1f1f1;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.main-form .view-btn {
  border: none;
  cursor: pointer;
  margin-top: 20px;
  padding: 14px 34px;
  border-radius: 50px;
  background: linear-gradient(135deg, #ffba00, #ff6c00);
  color: #fff;
  font-weight: 600;
  transition: all 0.3s ease;
}

.main-form .view-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(255, 108, 0, 0.25);
}

/* Inputs */

.common-input,
.common-textarea {
  width: 100%;
  border: 1px solid #e9e9e9;
  background: #fafafa;
  border-radius: 14px;
  padding: 0 22px;
  font-size: 14px;
  color: #444;
  transition: all 0.3s ease;
}

.common-input {
  height: 52px;
  margin-top: 14px;
}

.common-input.mt-20 {
  margin-top: 20px;
}

.common-textarea {
  height: 140px;
  padding: 18px 22px;
  resize: none;
  margin-top: 14px;
}

.common-input:focus,
.common-textarea:focus {
  outline: none;
  border-color: #ffba00;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(255, 186, 0, 0.1);
}

.common-input::placeholder,
.common-textarea::placeholder {
  color: #999;
}

/* Reply Comment */

.reply-comment {
  margin-left: 60px;
  margin-top: 20px;
}

/* Quick View Carousel */

.quick-view-carousel-details {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: #f9f9f9;
}

.quick-view-carousel-details .item {
  height: 650px;
  border-radius: 24px;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  background-position: center center !important;
  transition: transform 0.5s ease;
}

.quick-view-carousel-details:hover .item {
  transform: scale(1.02);
}

/* Carousel Dots */

.quick-view-carousel-details .owl-controls {
  position: absolute;
  bottom: 25px;
  right: 25px;
}

.quick-view-carousel-details .owl-controls .owl-dots {
  display: flex;
  align-items: center;
  gap: 12px;
}

.quick-view-carousel-details .owl-controls .owl-dots .owl-dot {
  width: 65px;
  height: 65px;
  border-radius: 14px;
  overflow: hidden;
  background-repeat: no-repeat !important;
  background-position: center center !important;
  background-size: cover !important;
  border: 2px solid transparent;
  opacity: 0.7;
  cursor: pointer;
  transition: all 0.35s ease;
}

.quick-view-carousel-details .owl-controls .owl-dots .owl-dot:hover {
  opacity: 1;
  transform: translateY(-3px);
}

.quick-view-carousel-details .owl-controls .owl-dots .owl-dot:nth-child(1) {
  background-image: url(../img/ob1.jpg);
}

.quick-view-carousel-details .owl-controls .owl-dots .owl-dot:nth-child(2) {
  background-image: url(../img/ob2.jpg);
}

.quick-view-carousel-details .owl-controls .owl-dots .owl-dot:nth-child(3) {
  background-image: url(../img/ob3.jpg);
}

.quick-view-carousel-details .owl-controls .owl-dots .owl-dot.active {
  opacity: 1;
  border-color: #ffba00;
  transform: scale(1.05);
  box-shadow: 0 10px 24px rgba(255, 186, 0, 0.2);
  position: relative;
}

.quick-view-carousel-details .owl-controls .owl-dots .owl-dot.active::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 186, 0, 0.15);
  border-radius: 12px;
}

/* Responsive */

@media (max-width: 991px) {
  .quick-view-carousel-details .item {
    height: 500px;
  }

  .main-form {
    padding: 25px;
  }
}

@media (max-width: 767px) {
  .reply-comment {
    margin-left: 20px;
  }

  .total-comment .single-comment {
    padding: 20px;
  }

  .total-comment .single-comment .user-details {
    flex-direction: column;
    align-items: flex-start;
  }

  .total-comment .single-comment .user-details img {
    margin-bottom: 15px;
  }

  .quick-view-carousel-details .item {
    height: 400px;
  }

  .quick-view-carousel-details .owl-controls {
    right: 15px;
    bottom: 15px;
  }

  .quick-view-carousel-details .owl-controls .owl-dots .owl-dot {
    width: 50px;
    height: 50px;
  }

  .main-form {
    padding: 20px;
  }
}

@media (max-width: 575px) {
  .quick-view-carousel-details .item {
    height: 320px;
  }

  .add-review h3 {
    font-size: 24px;
  }

  .main-form .view-btn {
    width: 100%;
  }
}


.organic-body .quick-view-carousel .owl-controls .owl-dots .owl-dot:nth-child(1) {
  background: url(../img/organic-food/ob1.jpg) center/cover no-repeat;
  margin-left: 0;
}

.organic-body .quick-view-carousel .owl-controls .owl-dots .owl-dot:nth-child(2) {
  background: url(../img/organic-food/ob2.jpg) center/cover no-repeat;
}

.organic-body .quick-view-carousel .owl-controls .owl-dots .owl-dot:nth-child(3) {
  background: url(../img/organic-food/ob3.jpg) center/cover no-repeat;
}

.organic-body .organic span {
  color: #fff;
  font-weight: 500;
}

/* =============================
   Organic Product Top
================================ */
.organic-product-top .single-product-top {
  position: relative;
  min-height: 500px;
  padding: 40px;
  border-radius: 24px;
  overflow: hidden;
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: all 0.35s ease;
}

.organic-product-top .single-product-top::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.65),
    rgba(0, 0, 0, 0.1)
  );
  z-index: 1;
}

.organic-product-top .single-product-top > * {
  position: relative;
  z-index: 2;
}

.organic-product-top .single-product-top.middle {
  min-height: 235px;
}

.organic-product-top .single-product-top:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
}

.organic-product-top .single-product-top .product-title {
  margin-bottom: 12px;
  text-transform: uppercase;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  line-height: 1.4;
}

.organic-product-top .single-product-top p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0;
}

/* =============================
   Tabs Navigation
================================ */
.tab-navigation {
  margin-bottom: 25px;
}

.tab-navigation .nav-tabs {
  border: none;
  gap: 10px;
}

.tab-navigation .nav-link {
  border: none;
  background: #f8fafc;
  padding: 12px 24px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  color: #444;
  transition: all 0.3s ease;
}

.tab-navigation .nav-link:hover,
.tab-navigation .nav-link.active {
  background: linear-gradient(135deg, #ffba00, #ff6c00);
  color: #fff;
  box-shadow: 0 10px 25px rgba(255, 108, 0, 0.25);
}

/* =============================
   Category Product List
================================ */
.category-list .single-product {
  margin-top: 30px;
}

/* =============================
   Labels
================================ */
label {
  margin-bottom: 8px;
  font-weight: 500;
  color: #222;
}

/* =============================
   Buttons
================================ */
.view-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 170px;
  height: 50px;
  padding: 0 30px;
  border-radius: 14px;
  border: 1px solid #e5e7eb;
  background: #fff;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.3s ease;
}

.view-btn span {
  position: relative;
  z-index: 2;
  font-weight: 600;
  color: #222;
  transition: color 0.3s ease;
}

.view-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #ffba00, #ff6c00);
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 1;
}

.view-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(255, 108, 0, 0.2);
  border-color: transparent;
}

.view-btn:hover::after {
  opacity: 1;
}

.view-btn:hover span {
  color: #fff;
}

.view-btn.color-2::after {
  border-radius: 14px;
}

/* =============================
   Billing Form Page
================================ */
.billing-form-page .common-input,
.billing-form-page .common-textarea {
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  background: #fff;
  transition: all 0.3s ease;
}

.billing-form-page .common-input {
  height: 50px;
  padding: 0 18px;
}

.billing-form-page .common-textarea {
  padding: 15px 18px;
}

.billing-form-page .common-input:focus,
.billing-form-page .common-textarea:focus {
  border-color: #ffba00;
  box-shadow: 0 0 0 4px rgba(255, 186, 0, 0.12);
}

.billing-form-page .view-btn {
  border-radius: 14px;
}

/* =============================
   Checkout Login
================================ */
.checkput-login {
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.06);
}

.checkput-login .top-title {
  padding: 16px 20px;
  background: linear-gradient(135deg, #ffba00, #ff6c00);
}

.checkput-login .top-title p {
  margin: 0;
  color: #fff;
  font-size: 15px;
}

.checkput-login .top-title p a {
  color: #fff;
  text-decoration: underline;
  font-weight: 600;
}

.checkout-login-collapse {
  padding: 25px;
}

/* =============================
   Checkbox
================================ */
.pixel-checkbox + label {
  margin-left: 10px;
  cursor: pointer;
}

/* =============================
   Billing Title
================================ */
.billing-title {
  font-size: 22px;
  font-weight: 700;
  color: #222;
  border-bottom: 1px solid #e5e7eb;
  padding-bottom: 12px;
  margin-bottom: 10px;
}

.billing-title.pl-15 {
  padding-left: 15px;
}

/* =============================
   Billing Form
================================ */
.billing-form .common-input {
  margin-top: 20px;
}

.billing-form .sorting {
  margin-top: 20px;
  margin-right: 0;
}

.billing-form .sorting .nice-select {
  width: 100%;
  height: 50px;
  line-height: 48px;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  background: #fff;
  padding-left: 18px;
  transition: all 0.3s ease;
}

.billing-form .sorting .nice-select:hover,
.billing-form .sorting .nice-select.open {
  border-color: #ffba00;
  box-shadow: 0 0 0 4px rgba(255, 186, 0, 0.12);
}

.billing-form .sorting .nice-select .list {
  width: 100%;
  border-radius: 12px;
  border: 1px solid #eee;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  margin-top: 8px;
}

.billing-form .sorting .nice-select .option {
  padding: 10px 18px;
  transition: all 0.25s ease;
}

.billing-form .sorting .nice-select .option:hover,
.billing-form .sorting .nice-select .option.selected {
  background: rgba(255, 186, 0, 0.1);
  color: #ff6c00;
}

/* =============================
   Responsive
================================ */
@media (max-width: 991px) {
  .organic-product-top .single-product-top {
    min-height: 400px;
    padding: 30px;
  }

  .organic-product-top .single-product-top.middle {
    min-height: 220px;
  }

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

@media (max-width: 767px) {
  .organic-product-top .single-product-top {
    min-height: 320px;
    padding: 25px;
    border-radius: 18px;
  }

  .organic-product-top .single-product-top.middle {
    min-height: 200px;
  }

  .organic-product-top .single-product-top .product-title {
    font-size: 18px;
  }

  .tab-navigation .nav-tabs {
    flex-wrap: wrap;
  }

  .tab-navigation .nav-link {
    width: 100%;
    text-align: center;
  }

  .view-btn {
    width: 100%;
  }

  .checkout-login-collapse {
    padding: 20px;
  }
}

@media (max-width: 575px) {
  .organic-product-top .single-product-top {
    min-height: 280px;
    padding: 20px;
  }

  .billing-title {
    font-size: 18px;
  }

  .billing-form-page .common-input,
  .billing-form .sorting .nice-select {
    height: 46px;
  }
}




/* =========================================
   Order Wrapper
========================================= */
.order-wrapper {
  background: #ffffff;
  padding: 30px 25px;
  border-radius: 24px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.06);
  border: 1px solid #f1f1f1;
}

.order-wrapper .list-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0;
  border-bottom: 1px solid #f0f0f0;
}

.order-wrapper .list-row:last-child {
  border-bottom: none;
}

.order-wrapper .list-row h6 {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  color: #222;
}

.order-wrapper .list-row .total {
  font-weight: 700;
  color: #111827;
  font-size: 16px;
}

.order-wrapper .bold-lable {
  font-weight: 700;
  text-transform: uppercase;
  color: #111827;
  letter-spacing: 0.5px;
}

.order-wrapper .payment-info {
  margin-top: 25px;
  padding: 20px;
  border-radius: 16px;
  background: #f8fafc;
  border: 1px solid #edf2f7;
}

.order-wrapper .terms-link {
  color: #22c55e;
  font-weight: 600;
  transition: all 0.3s ease;
}

.order-wrapper .terms-link:hover {
  color: #16a34a;
  text-decoration: underline;
}

.order-wrapper .pixel-checkbox {
  margin-top: 5px;
}

/* =========================================
   Cart Title
========================================= */
.cart-title {
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 2px solid #f3f4f6;
}

/* =========================================
   Cart Item
========================================= */
.cart-single-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  padding: 25px 0;
  border-top: 1px solid #f1f1f1;
}

.cart-single-item .product-item {
  display: flex;
  align-items: center;
  gap: 18px;
}

.cart-single-item .product-item img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.cart-single-item .product-item h6 {
  margin: 0;
  color: #111827;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
}

.cart-single-item .price,
.cart-single-item .total {
  font-size: 18px;
  font-weight: 700;
  color: #111827;
}

/* =========================================
   Quantity Container
========================================= */
.cart-single-item .quantity-container,
.quantity-container {
  display: flex;
  align-items: center;
}

.cart-single-item .quantity-container .quantity-amount,
.quantity-container .quantity-amount {
  width: 60px;
  height: 44px;
  border: 1px solid #e5e7eb;
  border-right: 0;
  border-radius: 14px 0 0 14px;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  color: #111827;
  background: #fff;
}

.cart-single-item .quantity-container .arrow-btn,
.quantity-container .arrow-btn {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  border-left: 0;
  border-radius: 0 14px 14px 0;
  background: #fff;
}

.quantity-container .arrow {
  width: 42px;
  height: 21px;
  border: none;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}

.quantity-container .arrow:hover {
  background: #f3f4f6;
}

.quantity-container .arrow span {
  font-size: 11px;
  color: #444;
}

.quantity-container .arrow:focus {
  outline: none;
}

/* =========================================
   Coupon Area
========================================= */
.cupon-area {
  padding: 25px 0;
  border-top: 1px solid #f1f1f1;
  border-bottom: 1px solid #f1f1f1;
}

.cupon-area .view-btn {
  border-radius: 14px;
  border: 1px solid #e5e7eb;
  padding: 0 28px;
  height: 46px;
  background: #fff;
  transition: all 0.3s ease;
}

.cupon-area .view-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(255, 108, 0, 0.15);
}

.cupon-area .cupon-code {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.cupon-area .cupon-code input {
  height: 46px;
  width: 240px;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 0 16px;
  transition: all 0.3s ease;
}

.cupon-area .cupon-code input:focus {
  border-color: #ffba00;
  box-shadow: 0 0 0 4px rgba(255, 186, 0, 0.12);
  outline: none;
}

.cupon-area .cupon-code button {
  border: none;
  background: transparent;
  cursor: pointer;
}

/* =========================================
   Subtotal Area
========================================= */
.subtotal-area {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 25px 0;
  border-bottom: 1px solid #f1f1f1;
}

.subtotal-area .subtotal {
  font-size: 22px;
  font-weight: 700;
  color: #111827;
}

/* =========================================
   Shipping Area
========================================= */
.shipping-area {
  padding: 30px 0;
  border-bottom: 1px solid #f1f1f1;
}

.shipping-area .filter-list label {
  margin-right: 12px;
  font-weight: 500;
}

.shipping-area .calculate {
  margin-right: 20px;
}

.shipping-area .view-btn {
  width: 180px;
  height: 48px;
  border-radius: 14px;
  border: 1px solid #e5e7eb;
}

.shipping-area .sorting {
  width: 100%;
  max-width: 320px;
}

.shipping-area .sorting .nice-select {
  width: 100%;
  height: 48px;
  line-height: 46px;
  border-radius: 14px;
  border: 1px solid #e5e7eb;
  padding-left: 18px;
  transition: all 0.3s ease;
}

.shipping-area .sorting .nice-select:hover,
.shipping-area .sorting .nice-select.open {
  border-color: #ffba00;
  box-shadow: 0 0 0 4px rgba(255, 186, 0, 0.12);
}

.shipping-area .sorting .list {
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
}

.shipping-area .common-input {
  padding: 0 16px;
  height: 48px;
  border-radius: 14px;
  border: 1px solid #e5e7eb;
}

/* =========================================
   Order Table
========================================= */
.order-rable {
  width: 100%;
  padding: 0;
  border-collapse: collapse;
}

.order-rable tr {
  border-bottom: 1px solid #f1f1f1;
}

.order-rable tr:last-child {
  border-bottom: none;
}

.order-rable tr td {
  padding: 15px 0;
  width: 50%;
  font-size: 15px;
}

.order-rable tr td:last-child {
  color: #111827;
  font-weight: 700;
  text-align: right;
}

/* =========================================
   Login Form
========================================= */
.login-form {
  padding: 35px;
  background: #ffffff;
  border-radius: 24px;
  height: 100%;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.06);
}

.login-form a {
  transition: all 0.3s ease;
}

.login-form a:hover {
  color: #22c55e;
}

/* =========================================
   Register Form
========================================= */
.register-form {
  padding: 40px 35px 60px;
  border-radius: 24px;
  background: linear-gradient(135deg, #ffba00, #ff6c00);
  box-shadow: 0 15px 40px rgba(255, 108, 0, 0.25);
}

.register-form .billing-title {
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.register-form p {
  color: rgba(255, 255, 255, 0.92);
}

.register-form .common-input {
  height: 50px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  padding: 0 18px;
  backdrop-filter: blur(6px);
  transition: all 0.3s ease;
}

.register-form .common-input:focus {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.15);
}

.register-form ::placeholder {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 300;
}

/* =========================================
   Responsive
========================================= */
@media (max-width: 991px) {
  .cart-single-item {
    align-items: flex-start;
  }

  .shipping-area .sorting {
    max-width: 100%;
  }
}

@media (max-width: 767px) {
  .order-wrapper,
  .login-form,
  .register-form {
    padding: 25px 20px;
  }

  .cart-single-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .cart-single-item .product-item {
    width: 100%;
  }

  .subtotal-area {
    justify-content: space-between;
  }

  .cupon-area .cupon-code {
    flex-direction: column;
    align-items: stretch;
  }

  .cupon-area .cupon-code input {
    width: 100%;
  }

  .shipping-area .view-btn,
  .cupon-area .view-btn {
    width: 100%;
  }
}

@media (max-width: 575px) {
  .cart-single-item .product-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .cart-single-item .product-item img {
    width: 100%;
    height: auto;
  }

  .order-wrapper .list-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .subtotal-area .subtotal {
    font-size: 18px;
  }
}
.order-tracking {
  padding: 40px;
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid #f1f1f1;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.06);
}

@media (max-width: 767px) {
  .order-tracking {
    padding: 25px 20px;
  }
}

.tracking_form .primary-btn {
  border: none;
  border-radius: 12px;
  line-height: 48px;
  min-height: 48px;
  padding: 0 30px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.tracking_form .primary-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

.load-product {
  display: none;
}

/* Cart Button */
.cart-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 180px;
  height: 50px;
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid #eeeeee;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  text-transform: uppercase;
  font-weight: 700;
  transition: all 0.3s ease;
}

.cart-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.cart-btn span {
  color: #222222;
  font-size: 14px;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.cart-btn .cart,
.cart-btn .lnr-cart {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.35s ease;
}

.cart-btn .cart {
  top: 50%;
  transform: translate(-50%, -50%);
}

.cart-btn .lnr-cart {
  top: 120%;
  font-size: 18px;
}

.cart-btn:hover .cart {
  top: -50%;
}

.cart-btn:hover .lnr-cart {
  top: 50%;
  transform: translate(-50%, -50%);
}

/* Mini Cart Shared */
.mini-cart,
.mini-cart-2a {
  width: 320px;
  background: #ffffff;
  position: absolute;
  top: 60px;
  right: 0;
  z-index: 999;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid #f1f1f1;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
  display: none;
  animation: cartFade 0.3s ease;
}

@keyframes cartFade {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mini-cart.showing,
.mini-cart-2a.showing {
  display: block;
}

@media (max-width: 575px) {
  .mini-cart,
  .mini-cart-2a {
    width: 100%;
    max-width: 320px;
    right: 50%;
    transform: translateX(50%);
  }
}

.mini-cart .mini-border,
.mini-cart-2a .mini-border {
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #ffba00, #ff6c00);
}

/* Total Amount */
.mini-cart .total-amount,
.mini-cart-2a .total-amount {
  padding: 22px;
  background: #fafbff;
  border-bottom: 1px solid #f0f0f0;
}

.mini-cart .total-amount .title span,
.mini-cart-2a .total-amount .title span {
  color: #888;
  font-size: 14px;
}

.mini-cart .total-amount .amount,
.mini-cart-2a .total-amount .amount {
  font-size: 26px;
  font-weight: 700;
  color: #222222;
  margin-top: 6px;
}

/* Cart Item */
.mini-cart .single-cart-item,
.mini-cart-2a .single-cart-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 22px;
  border-bottom: 1px solid #f5f5f5;
  transition: background 0.3s ease;
}

.mini-cart .single-cart-item:hover,
.mini-cart-2a .single-cart-item:hover {
  background: #fafafa;
}

.mini-cart .single-cart-item img,
.mini-cart-2a .single-cart-item img {
  width: 65px;
  height: 65px;
  object-fit: cover;
  border-radius: 12px;
}

.mini-cart .single-cart-item .middle,
.mini-cart-2a .single-cart-item .middle {
  flex: 1;
  padding: 0;
}

.mini-cart .single-cart-item .middle h5,
.mini-cart-2a .single-cart-item .middle h5 {
  margin-bottom: 6px;
}

.mini-cart .single-cart-item .middle h5 a,
.mini-cart-2a .single-cart-item .middle h5 a {
  font-size: 15px;
  font-weight: 600;
  color: #222222;
  text-decoration: none;
  transition: color 0.3s ease;
  background: none;
  -webkit-text-fill-color: initial;
}

.mini-cart .single-cart-item .middle h5 a:hover,
.mini-cart-2a .single-cart-item .middle h5 a:hover {
  color: #ff6c00;
}

.mini-cart .single-cart-item .middle h6,
.mini-cart-2a .single-cart-item .middle h6 {
  font-size: 15px;
  font-weight: 700;
  color: #111;
  margin: 0;
}

/* Remove Button */
.mini-cart .single-cart-item .cross,
.mini-cart-2a .single-cart-item .cross {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mini-cart .single-cart-item .cross:hover,
.mini-cart-2a .single-cart-item .cross:hover {
  background: #ffeded;
  color: #ff4d4d;
}

.mini-cart .single-cart-item .cross span,
.mini-cart-2a .single-cart-item .cross span {
  background: none;
  -webkit-text-fill-color: initial;
  color: #777;
  font-size: 14px;
}

/* Proceed Button */
.mini-cart .proceed-btn,
.mini-cart-2a .proceed-btn {
  padding: 22px;
  background: #fff;
}

.mini-cart .proceed-btn .view-btn,
.mini-cart-2a .proceed-btn .view-btn {
  width: 100%;
  min-height: 48px;
  border-radius: 12px;
  border: none;
  text-align: center;
  font-weight: 600;
  transition: all 0.3s ease;
}

.mini-cart .proceed-btn .view-btn:hover,
.mini-cart-2a .proceed-btn .view-btn:hover {
  transform: translateY(-2px);
}

/* Position Fix */
.mini-cart.mini-cart-4,
.mini-cart-2a.mini-cart-4 {
  right: 0;
}

.item-cart {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  height: 48px;
  padding: 0 30px;
  border-radius: 50px;
  background: linear-gradient(135deg, #ffba00, #ff6c00);
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 12px 25px rgba(255, 108, 0, 0.25);
  z-index: 5;
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s ease;
}

.item-cart:hover {
  color: #ffffff;
  transform: translate(-50%, -50%) translateY(-3px);
  box-shadow: 0 16px 35px rgba(255, 108, 0, 0.35);
}

.item-cart i,
.item-cart span {
  position: relative;
  z-index: 2;
}

/* Submit Button */
.submit-btn {
  position: absolute;
  top: 0;
  right: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 38px;
  border: none;
  border-radius: 50px;
  background: linear-gradient(135deg, #ffba00, #ff6c00);
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  cursor: pointer;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(255, 108, 0, 0.22);
  transition: all 0.35s ease;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(255, 108, 0, 0.35);
}

.submit-btn:active {
  transform: scale(0.98);
}

/* View Button */
.view-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 36px;
  background: #ffffff;
  border: 1px solid #f0f0f0;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 700;
  overflow: hidden;
  transition: all 0.35s ease;
}

.view-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #ffba00, #ff6c00);
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: 1;
}

.view-btn span,
.view-btn i {
  position: relative;
  z-index: 2;
  color: #222222;
  transition: all 0.35s ease;
}

.view-btn:hover {
  transform: translateY(-3px);
  border-color: transparent;
  box-shadow: 0 15px 35px rgba(255, 108, 0, 0.2);
}

.view-btn:hover::after {
  opacity: 1;
}

.view-btn:hover span,
.view-btn:hover i {
  color: #ffffff;
}

/* Reply Button Variant */
.view-btn.reply {
  min-height: 42px;
  padding: 0 28px;
  border-radius: 50px;
  text-transform: capitalize;
  font-size: 14px;
  font-weight: 500;
  background: #ffffff;
  border: 1px solid #e8e8e8;
  box-shadow: none;
}

.view-btn.reply span {
  margin-left: 4px;
  font-weight: 500;
}

.view-btn.reply::after {
  border-radius: 50px;
}

.view-btn.reply:hover {
  border-color: transparent;
  box-shadow: 0 10px 25px rgba(255, 108, 0, 0.18);
}

/* Mobile Responsive */
@media (max-width: 767px) {
  .item-cart,
  .submit-btn,
  .view-btn {
    width: 100%;
    min-width: 100%;
  }

  .submit-btn {
    position: relative;
    right: auto;
    top: auto;
  }

  .view-btn {
    padding: 0 24px;
    font-size: 12px;
  }
}

.furniture-section-title {
  position: relative;
  margin-bottom: 40px;
  padding-bottom: 18px;
  border-bottom: 1px solid #f1f1f1;
}

.furniture-section-title::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 90px;
  height: 3px;
  border-radius: 20px;
  background: linear-gradient(90deg, #ffba00, #ff6c00);
}

.furniture-section-title h3 {
  font-size: 30px;
  font-weight: 700;
  color: #222222;
  margin: 0;
  letter-spacing: 0.5px;
}

@media (max-width: 767px) {
  .furniture-section-title h3 {
    font-size: 24px;
  }
}

/* Jewellery Section */
.jewellery-section-title {
  text-align: center;
  margin-bottom: 45px;
}

.jewellery-section-title img {
  margin-bottom: 15px;
  max-width: 60px;
}

.jewellery-section-title h3 {
  position: relative;
  display: inline-block;
  margin-bottom: 0;
  padding: 0 40px;
  font-size: 30px;
  font-weight: 700;
  color: #222222;
}

.jewellery-section-title h3::before,
.jewellery-section-title h3::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #dddddd);
  transform: translateY(-50%);
}

.jewellery-section-title h3::before {
  left: -60px;
}

.jewellery-section-title h3::after {
  right: -60px;
  background: linear-gradient(90deg, #dddddd, transparent);
}

@media (max-width: 575px) {
  .jewellery-section-title h3 {
    padding: 0 15px;
    font-size: 24px;
  }

  .jewellery-section-title h3::before,
  .jewellery-section-title h3::after {
    display: none;
  }
}

/* Testimonial Section */
.testimonial-section-title {
  position: relative;
  margin-bottom: 40px;
  padding-right: 0;
}

.testimonial-section-title img {
  margin-bottom: 15px;
  max-width: 60px;
}

.testimonial-section-title h3 {
  position: relative;
  display: inline-block;
  margin-bottom: 0;
  font-size: 30px;
  font-weight: 700;
  color: #222222;
}

.testimonial-section-title h3::after {
  content: "";
  position: absolute;
  left: calc(100% + 25px);
  top: 50%;
  width: 180px;
  height: 2px;
  background: linear-gradient(90deg, #ffba00, transparent);
  transform: translateY(-50%);
}

@media (max-width: 767px) {
  .testimonial-section-title h3 {
    font-size: 24px;
  }

  .testimonial-section-title h3::after {
    display: none;
  }
}

/* Organic Section */
.organic-section-title {
  position: relative;
  overflow: hidden;
  margin-bottom: 45px;
  text-align: center;
}

.organic-section-title h3 {
  position: relative;
  display: inline-block;
  padding: 0 25px;
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  color: #222222;
  background: #fff;
  z-index: 2;
}

.organic-section-title h3::before,
.organic-section-title h3::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 500px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #ffba00, transparent);
  transform: translateY(-50%);
}

.organic-section-title h3::before {
  right: 100%;
  margin-right: 25px;
}

.organic-section-title h3::after {
  left: 100%;
  margin-left: 25px;
}

@media (max-width: 767px) {
  .organic-section-title h3 {
    font-size: 24px;
  }
}

/* Organic Left Section */
.organic-section-title-left {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
  margin-bottom: 40px;
  overflow: hidden;
}

.organic-section-title-left::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: #eeeeee;
}

.organic-section-title-left h3 {
  position: relative;
  display: inline-block;
  margin: 0;
  padding-left: 22px;
  font-size: 30px;
  font-weight: 700;
  text-transform: uppercase;
  color: #222222;
}

.organic-section-title-left h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 8px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(180deg, #ffba00, #ff6c00);
  transform: translateY(-50%);
}

/* Carousel Controls */
.organic-section-title-left .carousel-trigger {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  position: relative;
  z-index: 2;
}

.organic-section-title-left .carousel-trigger .prev-trigger,
.organic-section-title-left .carousel-trigger .next-trigger {
  position: relative;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid #f0f0f0;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.35s ease;
}

.organic-section-title-left .carousel-trigger .prev-trigger::after,
.organic-section-title-left .carousel-trigger .next-trigger::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #ffba00, #ff6c00);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.organic-section-title-left .carousel-trigger .prev-trigger span,
.organic-section-title-left .carousel-trigger .next-trigger span {
  position: relative;
  z-index: 2;
  font-size: 15px;
  color: #222222;
  transition: all 0.35s ease;
}

.organic-section-title-left .carousel-trigger .prev-trigger:hover,
.organic-section-title-left .carousel-trigger .next-trigger:hover {
  transform: translateY(-3px);
  border-color: transparent;
  box-shadow: 0 14px 30px rgba(255, 108, 0, 0.22);
}

.organic-section-title-left .carousel-trigger .prev-trigger:hover::after,
.organic-section-title-left .carousel-trigger .next-trigger:hover::after {
  opacity: 1;
}

.organic-section-title-left .carousel-trigger .prev-trigger:hover span,
.organic-section-title-left .carousel-trigger .next-trigger:hover span {
  color: #ffffff;
}

@media (max-width: 767px) {
  .organic-section-title-left {
    flex-direction: column;
    align-items: flex-start;
  }

  .organic-section-title-left h3 {
    font-size: 24px;
  }

  .organic-section-title-left .carousel-trigger {
    margin-top: 10px;
  }
}


/* =========================================================
   Banner Discount
========================================================= */
.banner-discount {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 95px;
  height: 95px;
  border-radius: 50%;
  background: url(../img/logo/discount-shape.svg) center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(-15deg);
  z-index: 5;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
  animation: floatBadge 3s ease-in-out infinite;
}

.banner-discount .offer {
  text-align: center;
  color: #fff;
  line-height: 1.2;
}

.banner-discount .offer b {
  display: block;
  font-size: 24px;
  font-weight: 700;
}

.banner-discount .offer span {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
}

@keyframes floatBadge {
  0%, 100% {
    transform: rotate(-15deg) translateY(0);
  }
  50% {
    transform: rotate(-15deg) translateY(-6px);
  }
}

@media (max-width: 575px) {
  .banner-discount {
    width: 75px;
    height: 75px;
    top: 12px;
    left: 12px;
  }

  .banner-discount .offer b {
    font-size: 18px;
  }

  .banner-discount .offer span {
    font-size: 10px;
  }
}

/* =========================================================
   Search Product Card
========================================================= */
.single-search-product {
  position: relative;
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 18px 0;
  transition: all 0.35s ease;
}

.single-search-product img {
  width: 75px;
  height: 75px;
  object-fit: cover;
  border-radius: 12px;
  flex-shrink: 0;
  transition: transform 0.35s ease;
}

.single-search-product .desc {
  flex: 1;
  margin: 0;
}

.single-search-product .desc .title {
  display: inline-block;
  margin-bottom: 8px;
  font-size: 15px;
  font-weight: 600;
  color: #222;
  transition: color 0.3s ease;
}

.single-search-product .desc .price {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 700;
  color: #111;
}

.single-search-product .desc .price span {
  color: #111;
}

.single-search-product .desc .price del {
  color: #999;
  font-size: 13px;
  font-weight: 500;
}

.single-search-product::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: #eee;
}

.single-search-product::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #ff6c00, #ffba00);
  transition: width 0.4s ease;
  z-index: 2;
}

.single-search-product:hover {
  transform: translateY(-3px);
}

.single-search-product:hover::before {
  width: 100%;
}

.single-search-product:hover img {
  transform: scale(1.05);
}

.single-search-product:hover .desc .title {
  color: #ff6c00;
}

@media (max-width: 575px) {
  .single-search-product {
    gap: 12px;
    padding: 15px 0;
  }

  .single-search-product img {
    width: 65px;
    height: 65px;
  }

  .single-search-product .desc .title {
    font-size: 14px;
  }

  .single-search-product .desc .price {
    font-size: 14px;
  }
}

/* =========================================================
   Organic Product Card
========================================================= */
.single-organic-product {
  position: relative;
  overflow: hidden;
  margin-top: 30px;
  padding: 30px 20px 0;
  text-align: center;
  border-radius: 18px;
  background: #fff;
  transition: all 0.35s ease;
  border: 1px solid #f3f3f3;
}

.single-organic-product::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 4px;
  background: linear-gradient(90deg, #ff6c00, #ffba00);
  transition: width 0.35s ease;
}

.single-organic-product img {
  max-width: 100%;
  transition: transform 0.4s ease;
}

.single-organic-product .text {
  transition: all 0.3s ease;
}

.single-organic-product h5,
.single-organic-product h6 {
  margin-top: 15px;
  font-weight: 600;
}

.single-organic-product .price {
  margin: 10px 0;
  font-size: 16px;
  font-weight: 700;
  color: #111;
}

.single-organic-product .price del {
  margin-left: 8px;
  color: #999;
  font-size: 14px;
  font-weight: 500;
}

.single-organic-product .discount {
  position: absolute;
  top: 18px;
  right: 18px;
  min-width: 58px;
  padding: 6px 10px;
  border-radius: 10px;
  background: #fff;
  color: #222;
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.35s ease;
  z-index: 5;
}

.single-organic-product .bottom {
  width: 170px;
  height: 45px;
  margin: 20px auto 0;
  border-radius: 25px 25px 0 0;
  overflow: hidden;
  transform: translateY(100%);
  opacity: 0;
  transition: all 0.35s ease;
}

.single-organic-product .bottom a {
  width: 25%;
  line-height: 45px;
  display: inline-block;
  color: #fff;
  transition: all 0.3s ease;
}

.single-organic-product .bottom a:hover {
  background: #fff;
}

.single-organic-product .bottom a:hover span {
  color: #222;
}

.single-organic-product:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.1);
}

.single-organic-product:hover img {
  transform: scale(1.08);
}

.single-organic-product:hover::after {
  width: 100%;
}

.single-organic-product:hover .bottom {
  transform: translateY(0);
  opacity: 1;
}

.single-organic-product:hover .discount {
  background: linear-gradient(90deg, #ff6c00, #ffba00);
  color: #fff;
}

.single-organic-product:hover .text {
  opacity: 0.15;
}

@media (max-width: 767px) {
  .single-organic-product {
    padding: 25px 15px 0;
  }

  .single-organic-product .bottom {
    width: 100%;
  }
}

/* =========================================================
   Furniture Product Card
========================================================= */
.single-furniture-product {
  position: relative;
  overflow: hidden;
  margin-top: 30px;
  border-radius: 18px;
  background: #fff;
  transition: all 0.35s ease;
  border: 1px solid #f2f2f2;
}

.single-furniture-product .thumb {
  position: relative;
  overflow: hidden;
  border-radius: 18px 18px 0 0;
  background: #f9fafc;
  padding: 15px;
  transition: all 0.35s ease;
}

.single-furniture-product .thumb img {
  width: 100%;
  transition: transform 0.4s ease;
}

.single-furniture-product .desc {
  padding: 20px;
  transition: all 0.35s ease;
}

.single-furniture-product .desc h4,
.single-furniture-product .desc h5 {
  margin-bottom: 10px;
  font-weight: 600;
}

.single-furniture-product .desc p {
  margin-bottom: 12px;
  color: #777;
  font-size: 14px;
}

.single-furniture-product .price {
  font-size: 18px;
  font-weight: 700;
}

.single-furniture-product .price del {
  margin-left: 10px;
  font-size: 14px;
  color: #aaa;
}

.single-furniture-product .discount {
  position: absolute;
  top: 18px;
  right: 18px;
  min-width: 58px;
  padding: 6px 10px;
  border-radius: 10px;
  background: #fff;
  color: #222;
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.35s ease;
  z-index: 4;
}

.single-furniture-product .bottom {
  width: 170px;
  height: 45px;
  margin: 20px auto 0;
  border-radius: 25px;
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.35s ease;
}

.single-furniture-product .bottom a {
  display: inline-block;
  width: 25%;
  line-height: 45px;
  text-align: center;
  color: #fff;
  transition: all 0.3s ease;
}

.single-furniture-product .bottom a:hover {
  background: #fff;
  box-shadow: inset 0 0 0 1px #eee;
}

.single-furniture-product .bottom a:hover span {
  color: #222;
}

.single-furniture-product:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.1);
}

.single-furniture-product:hover .thumb img {
  transform: scale(1.08);
}

.single-furniture-product:hover .desc {
  padding-bottom: 28px;
}

.single-furniture-product:hover .bottom {
  opacity: 1;
  transform: translateY(0);
}

.single-furniture-product:hover .discount {
  background: linear-gradient(90deg, #ff6c00, #ffba00);
  color: #fff;
}

@media (max-width: 767px) {
  .single-furniture-product .bottom {
    width: 100%;
  }

  .single-furniture-product .desc {
    padding: 18px 15px;
  }
}
/* =========================================================
   Jewellery Product Card
========================================================= */
.jewellery-single-product {
  position: relative;
  margin-top: 30px;
  overflow: hidden;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  transition: all 0.35s ease;
}

.jewellery-single-product .top {
  padding: 35px 35px 20px;
  text-align: center;
  overflow: hidden;
}

.jewellery-single-product .top img {
  max-width: 100%;
  transition: transform 0.4s ease;
}

.jewellery-single-product .desc {
  text-align: center;
  padding: 0 20px 30px;
}

.jewellery-single-product .desc h6 {
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #777;
  margin-bottom: 8px;
}

.jewellery-single-product .desc h5 {
  font-family: "Roboto", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #222;
  margin-bottom: 10px;
  transition: color 0.3s ease;
}

.jewellery-single-product .desc h5 del {
  margin-left: 8px;
  color: #bdbdbd;
  font-size: 13px;
  font-weight: 400;
}

.jewellery-single-product .desc .icon-group {
  display: flex;
  justify-content: center;
  gap: 4px;
}

.jewellery-single-product .desc .icon-group span {
  color: #7b1fe0;
  font-size: 14px;
}

.jewellery-single-product .bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f9fafc;
  border-top: 1px solid #f1f1f1;
}

.jewellery-single-product .bottom a {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #222;
  border-right: 1px solid #ececec;
  transition: all 0.3s ease;
}

.jewellery-single-product .bottom a:last-child {
  border-right: none;
}

.jewellery-single-product .bottom a:hover {
  background: linear-gradient(135deg, #8421e1, #b84cff);
  color: #fff;
}

.jewellery-single-product .discount {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 60px;
  height: 60px;
  z-index: 5;
}

.jewellery-single-product .discount .st0 {
  fill: #fff;
  transition: all 0.3s ease;
}

.jewellery-single-product .discount .st1 {
  fill: none;
  stroke: #68489d;
  stroke-miterlimit: 10;
  transition: all 0.3s ease;
}

.jewellery-single-product .discount span {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: #68489d;
  transition: all 0.3s ease;
}

.jewellery-single-product:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.12);
}

.jewellery-single-product:hover .top img {
  transform: scale(1.08);
}

.jewellery-single-product:hover .desc h5 {
  color: #8421e1;
}

.jewellery-single-product:hover .discount .st0 {
  fill: #8421e1;
}

.jewellery-single-product:hover .discount .st1 {
  stroke: #fff;
}

.jewellery-single-product:hover .discount span {
  color: #fff;
}

@media (max-width: 767px) {
  .jewellery-single-product .top {
    padding: 25px 20px 15px;
  }

  .jewellery-single-product .desc {
    padding: 0 15px 25px;
  }

  .jewellery-single-product .desc h5 {
    font-size: 18px;
  }
}

/* =========================================================
   Small Banner
========================================================= */
.single-small-banner {
  position: relative;
  overflow: hidden;
  margin-top: 30px;
  padding: 25px 20px;
  width: 32.2%;
  min-height: 140px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  transition: all 0.35s ease;
}

.single-small-banner::before,
.single-small-banner::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%) rotate(25deg);
  width: 35px;
  height: 220px;
  background: rgba(255, 255, 255, 0.12);
}

.single-small-banner::before {
  left: 20px;
}

.single-small-banner::after {
  left: 70px;
}

.single-small-banner.color-1 {
  background: linear-gradient(135deg, #31c8ff, #5ce1ff);
}

.single-small-banner.color-2 {
  background: linear-gradient(135deg, #ffcc00, #ffdf5e);
}

.single-small-banner.color-3 {
  background: linear-gradient(135deg, #e10101, #ff4a4a);
}

.single-small-banner img {
  max-width: 110px;
  transition: transform 0.35s ease;
  z-index: 2;
}

.single-small-banner .desc {
  position: relative;
  z-index: 2;
  margin-left: 15px;
  color: #fff;
}

.single-small-banner .desc h5 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.18);
}

.single-small-banner .desc p {
  margin: 0;
  font-size: 14px;
  opacity: 0.95;
}

.single-small-banner:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.12);
}

.single-small-banner:hover img {
  transform: scale(1.08);
}

@media (max-width: 991px) {
  .single-small-banner {
    width: 48%;
  }
}

@media (max-width: 767px) {
  .single-small-banner {
    width: 100%;
    min-height: 120px;
  }

  .single-small-banner img {
    max-width: 90px;
  }

  .single-small-banner .desc h5 {
    font-size: 16px;
  }
}

/* =========================================================
   Sidebar Product
========================================================= */
.single-sidebar-product {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.single-sidebar-product img {
  width: 75px;
  height: 75px;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.35s ease;
}

.single-sidebar-product .desc {
  flex: 1;
  margin: 0;
}

.single-sidebar-product .desc .title {
  display: inline-block;
  margin-bottom: 8px;
  font-size: 15px;
  font-weight: 600;
  color: #333;
  transition: color 0.3s ease;
}

.single-sidebar-product .desc .price {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 700;
  color: #111;
}

.single-sidebar-product .desc .price del {
  font-size: 13px;
  color: #aaa;
  font-weight: 500;
}

.single-sidebar-product::after,
.single-sidebar-product::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
}

.single-sidebar-product::after {
  width: 100%;
  background: #eee;
}

.single-sidebar-product::before {
  width: 0%;
  background: linear-gradient(90deg, #ff6c00, #ffba00);
  z-index: 2;
  transition: width 0.4s ease;
}

.single-sidebar-product:hover::before {
  width: 100%;
}

.single-sidebar-product:hover img {
  transform: scale(1.05);
}

.single-sidebar-product:hover .desc .title {
  color: #ff6c00;
}

.single-sidebar-product .dot-bottom {
  position: absolute;
  left: 0;
  bottom: 0;
  display: flex;
  gap: 6px;
  z-index: 5;
}

.single-sidebar-product .dot-bottom span,
.single-sidebar-product .dot-bottom span::before,
.single-sidebar-product .dot-bottom span::after {
  width: 3px;
  height: 1px;
  background: #fff;
  content: "";
  display: inline-block;
}

.single-sidebar-product .dot-bottom span {
  position: relative;
  background: transparent;
}

.single-sidebar-product .dot-bottom span::before {
  position: absolute;
  left: -3px;
  top: 0;
}

.single-sidebar-product .dot-bottom span::after {
  position: absolute;
  left: 3px;
  top: 0;
}

@media (max-width: 575px) {
  .single-sidebar-product {
    gap: 12px;
  }

  .single-sidebar-product img {
    width: 65px;
    height: 65px;
  }

  .single-sidebar-product .desc .title {
    font-size: 14px;
  }
}

/* =========================================
   JEWELLERY TAB AREA - MODERN & RESPONSIVE
========================================= */

.jewellery-tab-area {
  position: relative;
}

/* ---------- Tabs ---------- */
.jewellery-tab-area ul.tabs {
  margin: 0;
  padding: 0;
  list-style: none;
  height: 100%;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.jewellery-tab-area ul.tabs li {
  flex: 1;
  min-height: 95px;
  padding: 20px;
  background: #f8f9fc;
  border-radius: 10px 0 0 10px;
  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  font-size: 15px;
  font-weight: 600;
  color: #222;

  transition: all 0.3s ease;
  border-left: 4px solid transparent;
}

.jewellery-tab-area ul.tabs li:hover {
  background: #ffffff;
  color: #6f0fce;
  transform: translateX(4px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}

.jewellery-tab-area ul.tabs li.current {
  background: #ffffff;
  color: #6f0fce;
  border-left-color: #6f0fce;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

/* ---------- Tab Content ---------- */
.jewellery-tab-area .tab-content {
  display: none;
  background: #ffffff;
  border-radius: 0 14px 14px 14px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.jewellery-tab-area .tab-content.current {
  display: block;
}

/* ---------- First Content ---------- */
.jewellery-tab-area .first-tab-content {
  position: relative;
  min-height: 320px;
  background: linear-gradient(135deg, #f9fafc 0%, #ffffff 100%);
  border-radius: 0 14px 14px 14px;
  overflow: hidden;

  display: flex;
  align-items: center;

  padding: 40px;
}

/* ---------- Content Text ---------- */
.jewellery-tab-area .first-tab-content .text-btn {
  position: relative;
  z-index: 2;
  width: 55%;
  margin-left: 140px;
}

.jewellery-tab-area .first-tab-content .text-btn h2,
.jewellery-tab-area .first-tab-content .text-btn h3 {
  
    font-size: 60px;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    margin-bottom: 20px;
    color: #111;

}

.jewellery-tab-area .first-tab-content .text-btn p {
  font-size: 15px;
  line-height: 1.8;
  color: #666;
  margin-bottom: 25px;
}

/* ---------- Images ---------- */
.jewellery-tab-area .first-tab-content .left-img,
.jewellery-tab-area .first-tab-content .right-img {
  position: absolute;
  z-index: 1;
  transition: transform 0.4s ease;
}

.jewellery-tab-area .first-tab-content .left-img {
  top: 25px;
  left: 20px;
  max-width: 160px;
}

.jewellery-tab-area .first-tab-content .right-img {
  right: 20px;
  bottom: 20px;
  max-width: 180px;
}

.jewellery-tab-area .first-tab-content:hover .left-img {
  transform: translateY(-5px);
}

.jewellery-tab-area .first-tab-content:hover .right-img {
  transform: translateY(5px);
}

.jewellery-tab-area .first-tab-content img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

/* ---------- Button ---------- */
.jewellery-tab-area .view-btn {
  border-radius: 50px;
  padding: 0 32px;
  line-height: 46px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  box-shadow: 0 10px 25px rgba(111, 15, 206, 0.15);

  transition: all 0.3s ease;
}

.jewellery-tab-area .view-btn:hover {
  transform: translateY(-3px);
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 991px) {

  .jewellery-tab-area ul.tabs {
    flex-direction: row;
    min-height: auto;
    margin-bottom: 20px;
    overflow-x: auto;
  }

  .jewellery-tab-area ul.tabs li {
    min-width: 180px;
    min-height: 80px;
    border-radius: 10px;
    border-left: none;
    border-bottom: 3px solid transparent;
  }

  .jewellery-tab-area ul.tabs li.current {
    border-bottom-color: #6f0fce;
  }

  .jewellery-tab-area .first-tab-content {
    padding: 35px 30px;
  }

  .jewellery-tab-area .first-tab-content .text-btn {
    width: 100%;
    margin-left: 0;
  }

  .jewellery-tab-area .first-tab-content .left-img {
    opacity: 0.12;
  }

  .jewellery-tab-area .first-tab-content .right-img {
    opacity: 0.12;
  }
}

@media (max-width: 767px) {

  .jewellery-tab-area .first-tab-content {
    min-height: auto;
    padding: 30px 20px;
    text-align: center;
  }

  .jewellery-tab-area .first-tab-content .text-btn h2,
  .jewellery-tab-area .first-tab-content .text-btn h3 {
    font-size: 24px;
  }

  .jewellery-tab-area .first-tab-content .left-img,
  .jewellery-tab-area .first-tab-content .right-img {
    display: none;
  }

  .jewellery-tab-area ul.tabs li {
    min-width: 150px;
    font-size: 14px;
    padding: 16px;
  }
}

@media (max-width: 480px) {

  .jewellery-tab-area ul.tabs {
    gap: 10px;
  }

  .jewellery-tab-area ul.tabs li {
    min-width: 130px;
    min-height: 70px;
    padding: 14px;
    font-size: 13px;
  }

  .jewellery-tab-area .first-tab-content {
    padding: 25px 18px;
  }

  .jewellery-tab-area .first-tab-content .text-btn h2,
  .jewellery-tab-area .first-tab-content .text-btn h3 {
    font-size: 20px;
  }

  .jewellery-tab-area .first-tab-content .text-btn p {
    font-size: 14px;
  }

  .jewellery-tab-area .view-btn {
    width: 100%;
  }
}

/* =========================================
   FILTER BAR
========================================= */

.filter-bar {
  padding: 16px 20px;
  background: #f8f9fc;
  border: 1px solid #edf0f5;
  border-radius: 14px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;

  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
}

.filter-bar a,
.filter-bar i,
.main-categories a {
  color: #222;
  transition: all 0.3s ease;
}

.filter-bar a:hover,
.main-categories a:hover {
  color: #44b253;
}

/* =========================================
   GRID / LIST BUTTONS
========================================= */

.grid-btn,
.list-btn {
  width: 42px;
  height: 42px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border: 1px solid #e5e7eb;
  border-radius: 10px;
  background: #fff;

  cursor: pointer;

  transition: all 0.3s ease;
}

.grid-btn i,
.list-btn i {
  font-size: 15px;
  transition: all 0.3s ease;
}

.grid-btn:hover,
.list-btn:hover,
.grid-btn.active,
.list-btn.active {
  background: #44b253;
  border-color: #44b253;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(68, 178, 83, 0.2);
}

.grid-btn:hover i,
.list-btn:hover i,
.grid-btn.active i,
.list-btn.active i {
  color: #fff;
}

/* =========================================
   SORTING
========================================= */

.sorting {
  margin: 0;
}

.sorting .nice-select {
  min-width: 180px;
  height: 44px;
  line-height: 42px;

  border: 1px solid #e5e7eb;
  border-radius: 10px;

  padding: 0 45px 0 16px;

  background: #fff;
  font-size: 14px;

  transition: all 0.3s ease;
}

.sorting .nice-select:hover,
.sorting .nice-select:focus {
  border-color: #44b253;
  box-shadow: 0 8px 20px rgba(68, 178, 83, 0.1);
}

.sorting .nice-select:after {
  right: 16px;
}

.sorting .nice-select .list {
  width: 100%;
  border-radius: 10px;
  border: 1px solid #eee;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

/* =========================================
   PRODUCT LIST CARD
========================================= */

.single-organic-product-list {
  position: relative;
  overflow: hidden;

  padding: 30px;
  margin-bottom: 25px;

  border: 1px solid #edf0f5;
  border-radius: 18px;
  background: #fff;

  transition: all 0.35s ease;
}

/* Hover Background Layer */
.single-organic-product-list::after {
  content: "";
  position: absolute;
  inset: 0;

  background: linear-gradient(135deg, #44b253 0%, #2d9c5b 100%);

  opacity: 0;
  visibility: hidden;

  transition: all 0.35s ease;
  z-index: 1;
}

.single-organic-product-list:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.single-organic-product-list:hover::after {
  opacity: 1;
  visibility: visible;
}

/* =========================================
   COMMON CONTENT LAYER
========================================= */

.single-organic-product-list .product-thumb,
.single-organic-product-list .product-details,
.single-organic-product-list .price-wrap {
  position: relative;
  z-index: 2;
}

/* =========================================
   PRODUCT IMAGE
========================================= */

.single-organic-product-list .product-thumb {
  min-height: 220px;
  max-width: 400px;

  border-radius: 16px;
  overflow: hidden;

  border: 1px solid #eee;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;

  transition: all 0.35s ease;
}

.single-organic-product-list:hover .product-thumb {
  transform: scale(1.03);
}

/* =========================================
   PRODUCT DETAILS
========================================= */

.single-organic-product-list .product-details {
  padding: 10px 40px 10px 25px;
}

.single-organic-product-list .product-details h4 {
  margin: 5px 0 12px;
  font-size: 24px;
  font-weight: 700;

  transition: all 0.3s ease;
}

.single-organic-product-list .product-details p,
.single-organic-product-list .product-details span,
.single-organic-product-list .product-details li {
  transition: all 0.3s ease;
}

/* Ratings */
.single-organic-product-list .rattings {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px;

  margin-bottom: 18px;
}

.single-organic-product-list .rattings i {
  color: #fbd600;
  font-size: 14px;
}

.single-organic-product-list .rattings span {
  margin-left: 5px;
  font-size: 14px;
  color: #666;
}

/* Features */
.single-organic-product-list .collect-info {
  margin: 0;
  padding: 0;
  list-style: none;
}

.single-organic-product-list .collect-info li {
  margin-bottom: 10px;
  color: #555;

  transition: all 0.3s ease;
}

.single-organic-product-list .collect-info li i {
  margin-right: 10px;
  color: #44b253;
}

/* =========================================
   PRICE SECTION
========================================= */

.single-organic-product-list .price-wrap {
  padding: 10px 0;
}

.single-organic-product-list .avalability {
  padding-bottom: 10px;
  margin-bottom: 15px;

  border-bottom: 1px solid #eee;

  color: #666;
}

.single-organic-product-list .avalability span {
  font-weight: 600;
  color: #44b253;
}

.single-organic-product-list .price {
  margin: 20px 0;

  font-size: 30px;
  font-weight: 700;
  color: #222;
}

.single-organic-product-list .price del {
  font-size: 16px;
  color: #aaa;
  margin-left: 10px;
}

.single-organic-product-list .view-btn {
  width: 100%;
}

.single-organic-product-list .compare {
  margin-top: 18px;
}

.single-organic-product-list .compare p {
  margin: 0;
  color: #555;

  transition: all 0.3s ease;
}

.single-organic-product-list .compare p i {
  margin-right: 8px;
}

/* =========================================
   HOVER TEXT COLORS
========================================= */

.single-organic-product-list:hover h4,
.single-organic-product-list:hover p,
.single-organic-product-list:hover span,
.single-organic-product-list:hover li,
.single-organic-product-list:hover .price,
.single-organic-product-list:hover .compare p,
.single-organic-product-list:hover .avalability,
.single-organic-product-list:hover .avalability span,
.single-organic-product-list:hover .collect-info li i {
  color: #fff;
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 991px) {

  .single-organic-product-list {
    padding: 25px;
  }

  .single-organic-product-list .product-details {
    padding: 25px 0;
  }

  .single-organic-product-list .product-thumb {
    max-width: 100%;
  }
}

@media (max-width: 767px) {

  .filter-bar {
    flex-direction: column;
    align-items: stretch;
  }

  .sorting .nice-select {
    width: 100%;
  }

  .single-organic-product-list {
    padding: 20px;
    border-radius: 14px;
  }

  .single-organic-product-list .product-thumb {
    min-height: 220px;
  }

  .single-organic-product-list .product-details {
    padding: 20px 0;
  }

  .single-organic-product-list .product-details h4 {
    font-size: 20px;
  }

  .single-organic-product-list .price {
    font-size: 26px;
  }
}

@media (max-width: 480px) {

  .grid-btn,
  .list-btn {
    width: 38px;
    height: 38px;
  }

  .single-organic-product-list {
    padding: 18px;
  }

  .single-organic-product-list .product-thumb {
    min-height: 180px;
    border-radius: 12px;
  }

  .single-organic-product-list .price {
    font-size: 22px;
  }

  .single-organic-product-list .view-btn {
    width: 100%;
  }
}

/* =========================================
   SIDEBAR COMPONENTS
   Modern + Reduced Repetition
========================================= */

/* ---------- Shared Sidebar Header ---------- */
.sidebar-categories .head,
.sidebar-filter .top-filter-head {
  height: 60px;
  line-height: 60px;

  padding: 0 24px;

  border-radius: 14px 14px 0 0;

  background: linear-gradient(135deg, #828bb3 0%, #69749f 100%);

  color: #fff;
  font-size: 16px;
  font-weight: 600;

  letter-spacing: 0.3px;
}

/* =========================================
   SIDEBAR CATEGORY WRAPPER
========================================= */

.sidebar-categories {
  border-radius: 14px;
  overflow: hidden;

  background: #fff;

  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.06);
}

.sidebar-categories .main-categories {
  padding: 10px 20px 20px;
}

/* =========================================
   NAVIGATION LIST
========================================= */

.sidebar-categories .main-nav-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.sidebar-categories .main-nav-list a {
  position: relative;

  display: flex;
  align-items: center;
  justify-content: space-between;

  min-height: 52px;

  padding: 12px 10px;

  border-bottom: 1px solid #f1f1f1;

  color: #333;
  font-size: 14px;
  font-weight: 500;

  transition: all 0.3s ease;
}

/* Hover Effect */
.sidebar-categories .main-nav-list a:hover {
  color: #44b253;
  padding-left: 16px;
}

/* Active / Hover Indicator */
.sidebar-categories .main-nav-list a::before {
  content: "";

  position: absolute;
  left: 0;
  top: 50%;

  width: 4px;
  height: 0;

  border-radius: 10px;

  background: #44b253;

  transform: translateY(-50%);
  transition: all 0.3s ease;
}

.sidebar-categories .main-nav-list a:hover::before {
  height: 60%;
}

/* Numbers */
.sidebar-categories .main-nav-list .number {
  color: #aaa;
  font-size: 13px;
  transition: all 0.3s ease;
}

.sidebar-categories .main-nav-list a:hover .number {
  color: #44b253;
}

/* Icons */
.sidebar-categories .main-nav-list .lnr {
  margin-right: 10px;
  font-size: 13px;

  opacity: 0;
  visibility: hidden;

  transform: translateX(-5px);
  transition: all 0.3s ease;
}

.sidebar-categories .main-nav-list a:hover .lnr {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

/* Child Category */
.sidebar-categories .main-nav-list.child a {
  padding-left: 28px;
  font-size: 13px;
  color: #666;
}

/* =========================================
   SIDEBAR FILTER
========================================= */

.sidebar-filter {
  margin-top: 35px;

  border-radius: 14px;
  overflow: hidden;

  background: #fff;

  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.06);
}

/* Filter Inner Header */
.sidebar-filter .head {
  padding: 18px 24px 12px;

  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;

  color: #222;

  letter-spacing: 0.5px;
}

/* Filter Section */
.sidebar-filter .common-filter {
  padding: 0 24px 24px;
  border-bottom: 1px solid #f2f2f2;
}

.sidebar-filter .common-filter:last-child {
  border-bottom: none;
}

/* =========================================
   FILTER LIST
========================================= */

.filter-list {
  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 10px;

  padding: 10px 0;

  color: #555;
  font-size: 14px;

  transition: all 0.3s ease;
}

.filter-list:hover {
  color: #44b253;
}

/* Left Side */
.filter-list .left {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Icons */
.filter-list i {
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-list:hover i {
  color: #44b253;
}

/* Checkbox / Radio */
.filter-list input[type="checkbox"],
.filter-list input[type="radio"] {
  accent-color: #44b253;
  cursor: pointer;
}

/* Label */
.filter-list label {
  margin: 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* Product Count */
.filter-list .number {
  color: #aaa;
  font-size: 13px;
  transition: all 0.3s ease;
}

.filter-list:hover .number {
  color: #44b253;
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 991px) {

  .sidebar-categories,
  .sidebar-filter {
    margin-bottom: 30px;
  }

  .sidebar-categories .head,
  .sidebar-filter .top-filter-head {
    height: 54px;
    line-height: 54px;

    font-size: 15px;
  }

  .sidebar-filter .head {
    padding: 16px 20px 10px;
  }

  .sidebar-filter .common-filter {
    padding: 0 20px 20px;
  }
}

@media (max-width: 767px) {

  .sidebar-categories .main-categories {
    padding: 10px 16px 16px;
  }

  .sidebar-categories .main-nav-list a {
    min-height: 48px;
    padding: 10px 8px;
    font-size: 13px;
  }

  .sidebar-filter .common-filter {
    padding: 0 16px 18px;
  }

  .filter-list {
    font-size: 13px;
  }
}

@media (max-width: 480px) {

  .sidebar-categories .head,
  .sidebar-filter .top-filter-head {
    padding: 0 18px;
    font-size: 14px;
  }

  .sidebar-filter .head {
    font-size: 13px;
  }

  .sidebar-categories .main-nav-list.child a {
    padding-left: 20px;
  }
}

/* =========================================
   CUSTOM RADIO + RIPPLE EFFECT
========================================= */

@keyframes click-wave {
  from {
    transform: translate(-50%, -50%) scale(1);
    opacity: .35;
  }

  to {
    transform: translate(-50%, -50%) scale(3);
    opacity: 0;
  }
}

.pixel-radio {
  appearance: none;
  -webkit-appearance: none;

  position: relative;
  top: 5px;

  width: 20px;
  height: 20px;
  margin-right: 10px;

  border: 2px solid #dcdfe6;
  border-radius: 50%;
  background: #fff;

  cursor: pointer;
  outline: none;

  transition:
    border-color .25s ease,
    background-color .25s ease,
    transform .2s ease,
    box-shadow .25s ease;
}

.pixel-radio:hover {
  border-color: #ffba00;
  transform: scale(1.05);
}

.pixel-radio:checked {
  border: 6px solid #ffba00;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(255, 186, 0, 0.15);
}

.pixel-radio::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;

  width: 20px;
  height: 20px;

  border-radius: 50%;
  background: rgba(255, 186, 0, 0.4);

  transform: translate(-50%, -50%) scale(0);
  opacity: 0;

  pointer-events: none;
}

.pixel-radio:checked::after {
  animation: click-wave .6s ease-out;
}


/* =========================================
   PRICE RANGE AREA
========================================= */

.price-range-area {
  padding: 30px 30px 10px;
  background: #fff;
  border-radius: 14px;
}


/* =========================================
   NOUI SLIDER
========================================= */

.price-range-area .noUi-target {
  height: 6px;
  border: none;
  border-radius: 999px;
  background: #eceff4;
  box-shadow: none;
}

.price-range-area .noUi-connect {
  background: linear-gradient(90deg, #ffba00, #ffcf33);
  border-radius: 999px;
}

.price-range-area .noUi-horizontal {
  height: 6px;
}


/* =========================================
   SLIDER HANDLE
========================================= */

.price-range-area .noUi-horizontal .noUi-handle {
  width: 18px;
  height: 18px;

  top: -6px;
  right: -9px;

  border: 3px solid #ffba00;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 4px 14px rgba(255, 186, 0, 0.25);

  cursor: grab;

  transition:
    transform .2s ease,
    box-shadow .25s ease,
    border-color .25s ease;
}

.price-range-area .noUi-horizontal .noUi-handle:hover {
  transform: scale(1.12);
  box-shadow: 0 6px 18px rgba(255, 186, 0, 0.35);
}

.price-range-area .noUi-horizontal .noUi-handle:active {
  cursor: grabbing;
  transform: scale(1.08);
}

.price-range-area .noUi-horizontal .noUi-handle:focus {
  outline: none;
}

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


/* =========================================
   PRICE VALUE DISPLAY
========================================= */

.price-range-area .value-wrapper {
  margin-top: 22px;

  display: flex;
  align-items: center;
  gap: 8px;

  font-size: 14px;
  color: #777;
}

.price-range-area .value-wrapper .to {
  color: #bbb;
  font-weight: 500;
}

.price-range-area .price {
  font-weight: 600;
  color: #222;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 576px) {
  .price-range-area {
    padding: 20px;
  }

  .price-range-area .value-wrapper {
    flex-wrap: wrap;
    gap: 5px;
  }
}

/* =========================================
   FEATURE PRODUCT AREA
========================================= */

.feature_product_area .main_box,
.latest_product_area .main_box {
  position: relative;
  z-index: 10;

  background: #fff;
  border-radius: 20px;

  padding: 40px 35px;

  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.06);
}

.feature_product_area .main_box {
  margin: -50px 0;
}

.latest_product_area .main_box {
  padding-block: 100px;
}

.feature_product_area .hot_product_inner {
  margin-bottom: 80px;
}

.latest_product_inner {
  margin-bottom: -35px;
}


/* =========================================
   HOT PRODUCT ITEM
========================================= */

.hot_p_item {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
}

.hot_p_item img {
  width: 100%;
  display: block;

  transition:
    transform .5s ease,
    filter .4s ease;
}

.hot_p_item::before {
  content: "";
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      to top,
      rgba(0, 0, 0, 0.45),
      rgba(0, 0, 0, 0.05)
    );

  z-index: 1;
}

.hot_p_item .product_text {
  position: absolute;
  inset: 0;

  z-index: 2;

  display: flex;
  flex-direction: column;
  justify-content: space-between;

  padding: 28px;
}

.hot_p_item .product_text h4 {
  margin: 0;

  font-size: 30px;
  font-weight: 700;
  line-height: 1.3;

  color: #fff;
}

.hot_p_item .product_text a {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  width: fit-content;

  font-size: 14px;
  font-weight: 600;
  letter-spacing: .5px;
  text-transform: uppercase;

  color: #fff;

  transition:
    color .3s ease,
    transform .3s ease;
}

.hot_p_item .product_text a:hover {
  color: #ffba00;
  transform: translateX(4px);
}

.hot_p_item:hover img {
  transform: scale(1.06);
  filter: brightness(.95);
}


/* =========================================
   FEATURE PRODUCT SLIDER DOTS
========================================= */

.feature_p_slider .owl-dots {
  margin-top: 45px;
  text-align: center;
}

.feature_p_slider .owl-dots .owl-dot {
  width: 10px;
  height: 10px;

  margin: 0 6px;

  border-radius: 999px;
  background: #dbe2e8;

  transition:
    width .3s ease,
    background .3s ease,
    transform .3s ease;
}

.feature_p_slider .owl-dots .owl-dot:hover {
  transform: scale(1.15);
}

.feature_p_slider .owl-dots .owl-dot.active {
  width: 32px;
  background: #ffba00;
}


/* =========================================
   FEATURE PRODUCT CARD
========================================= */

.f_p_item {
  text-align: center;

  margin-bottom: 35px;
  padding: 18px;

  border-radius: 18px;
  background: #fff;

  transition:
    transform .35s ease,
    box-shadow .35s ease;
}

.f_p_item:hover {
  transform: translateY(-8px);

  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.08);
}


/* =========================================
   PRODUCT IMAGE
========================================= */

.f_p_item .f_p_img {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
}

.f_p_item .f_p_img img {
  width: 100%;
  display: block;

  transition:
    transform .45s ease;
}

.f_p_item:hover .f_p_img img {
  transform: scale(1.06);
}


/* =========================================
   PRODUCT ACTION ICONS
========================================= */

.f_p_item .f_p_img .p_icon {
  position: absolute;
  right: 15px;
  bottom: 20px;

  display: flex;
  flex-direction: column;
  gap: 8px;

  opacity: 0;
  visibility: hidden;
  transform: translateX(15px);

  transition:
    all .35s ease;
}

.f_p_item:hover .f_p_img .p_icon {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.f_p_item .f_p_img .p_icon a {
  width: 42px;
  height: 42px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 10px;
  background: rgba(255, 255, 255, 0.95);

  color: #222;

  box-shadow:
    0 8px 20px rgba(0, 0, 0, 0.08);

  transition:
    background .3s ease,
    color .3s ease,
    transform .3s ease;
}

.f_p_item .f_p_img .p_icon a:hover {
  background: #ffba00;
  color: #fff;
  transform: scale(1.08);
}


/* =========================================
   PRODUCT TEXT
========================================= */

.f_p_item h4 {
  margin: 18px 0 10px;

  font-size: 17px;
  font-weight: 600;
  line-height: 1.5;

  color: #222;

  transition: color .3s ease;
}

.f_p_item h4:hover {
  color: #ffba00;
}

.f_p_item h5 {
  margin: 0;

  font-size: 20px;
  font-weight: 700;

  color: #555;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 991px) {
  .feature_product_area .main_box,
  .latest_product_area .main_box {
    padding: 30px 20px;
  }

  .feature_product_area .main_box {
    margin: -30px 0;
  }

  .hot_p_item .product_text h4 {
    font-size: 24px;
  }
}

@media (max-width: 576px) {
  .hot_p_item .product_text {
    padding: 20px;
  }

  .hot_p_item .product_text h4 {
    font-size: 20px;
  }

  .f_p_item {
    padding: 14px;
  }

  .f_p_item h5 {
    font-size: 18px;
  }
}

/* =========================================
   MOST PRODUCT AREA
========================================= */

.most_product_area .main_box {
  position: relative;
  z-index: 10;

  margin: -50px 0;
  padding: 100px 40px;

  background: #fff;
  border-radius: 22px;

  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.06);
}

.most_product_inner {
  margin-bottom: -30px;
}


/* =========================================
   MOST PRODUCT LIST
========================================= */

.most_p_list .media {
  display: flex;
  align-items: center;
  gap: 20px;

  margin-bottom: 30px;
  padding: 18px;

  border-radius: 16px;
  background: #fff;

  transition:
    transform .3s ease,
    box-shadow .3s ease,
    background .3s ease;
}

.most_p_list .media:hover {
  transform: translateY(-4px);

  box-shadow:
    0 14px 35px rgba(0, 0, 0, 0.08);
}


/* =========================================
   PRODUCT IMAGE
========================================= */

.most_p_list .media .d-flex {
  flex-shrink: 0;
  padding-right: 0;
}

.most_p_list .media .d-flex img {
  width: 90px;
  height: 90px;

  object-fit: cover;

  border-radius: 14px;

  transition:
    transform .35s ease;
}

.most_p_list .media:hover .d-flex img {
  transform: scale(1.05);
}


/* =========================================
   PRODUCT CONTENT
========================================= */

.most_p_list .media .media-body {
  flex: 1;
  align-self: center;
}

.most_p_list .media .media-body h4,
.most_p_list .media .media-body h3 {
  margin: 0;
  transition: color .3s ease;
}

.most_p_list .media .media-body h4 {
  margin-bottom: 8px;

  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;

  color: #222;
}

.most_p_list .media:hover .media-body h4 {
  color: #ffba00;
}

.most_p_list .media .media-body h3 {
  font-size: 18px;
  font-weight: 700;

  color: #666;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 991px) {
  .most_product_area .main_box {
    padding: 70px 25px;
    margin: -30px 0;
  }
}

@media (max-width: 576px) {
  .most_product_area .main_box {
    padding: 50px 18px;
  }

  .most_p_list .media {
    gap: 14px;
    padding: 14px;
  }

  .most_p_list .media .d-flex img {
    width: 75px;
    height: 75px;
  }

  .most_p_list .media .media-body h4 {
    font-size: 14px;
  }

  .most_p_list .media .media-body h3 {
    font-size: 16px;
  }
}

/* =========================================
   MOST PRODUCT AREA
========================================= */

.most_product_area .main_box {
  position: relative;
  z-index: 10;

  margin: -50px 0;
  padding: 100px 40px;

  background: #fff;
  border-radius: 22px;

  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.06);
}

.most_product_inner {
  margin-bottom: -30px;
}


/* =========================================
   MOST PRODUCT LIST
========================================= */

.most_p_list .media {
  display: flex;
  align-items: center;
  gap: 20px;

  margin-bottom: 30px;
  padding: 18px;

  border-radius: 16px;
  background: #fff;

  transition:
    transform .3s ease,
    box-shadow .3s ease,
    background .3s ease;
}

.most_p_list .media:hover {
  transform: translateY(-4px);

  box-shadow:
    0 14px 35px rgba(0, 0, 0, 0.08);
}


/* =========================================
   PRODUCT IMAGE
========================================= */

.most_p_list .media .d-flex {
  flex-shrink: 0;
  padding-right: 0;
}

.most_p_list .media .d-flex img {
  width: 90px;
  height: 90px;

  object-fit: cover;

  border-radius: 14px;

  transition:
    transform .35s ease;
}

.most_p_list .media:hover .d-flex img {
  transform: scale(1.05);
}


/* =========================================
   PRODUCT CONTENT
========================================= */

.most_p_list .media .media-body {
  flex: 1;
  align-self: center;
}

.most_p_list .media .media-body h4,
.most_p_list .media .media-body h3 {
  margin: 0;
  transition: color .3s ease;
}

.most_p_list .media .media-body h4 {
  margin-bottom: 8px;

  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;

  color: #222;
}

.most_p_list .media:hover .media-body h4 {
  color: #ffba00;
}

.most_p_list .media .media-body h3 {
  font-size: 18px;
  font-weight: 700;

  color: #666;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 991px) {
  .most_product_area .main_box {
    padding: 70px 25px;
    margin: -30px 0;
  }
}

@media (max-width: 576px) {
  .most_product_area .main_box {
    padding: 50px 18px;
  }

  .most_p_list .media {
    gap: 14px;
    padding: 14px;
  }

  .most_p_list .media .d-flex img {
    width: 75px;
    height: 75px;
  }

  .most_p_list .media .media-body h4 {
    font-size: 14px;
  }

  .most_p_list .media .media-body h3 {
    font-size: 16px;
  }
}
/* =========================================================
   SINGLE PRODUCT AREA
========================================================= */

.product_image_area {
  padding-top: 120px;
}


/* =========================================================
   PRODUCT CAROUSEL
========================================================= */

.s_Product_carousel {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
}

.s_Product_carousel img {
  width: 100%;
  display: block;
}

.s_Product_carousel .owl-dots {
  position: absolute;
  top: 50%;
  right: 24px;

  transform: translateY(-50%);

  display: flex;
  flex-direction: column;
  gap: 10px;
}

.s_Product_carousel .owl-dots div {
  width: 22px;
  height: 6px;

  border-radius: 999px;
  background: rgba(255, 255, 255, 0.5);

  cursor: pointer;

  transition:
    width .3s ease,
    background .3s ease,
    transform .3s ease;
}

.s_Product_carousel .owl-dots div:hover {
  transform: scaleX(1.1);
}

.s_Product_carousel .owl-dots div.active {
  width: 34px;
  background: #ffba00;
}


/* =========================================================
   PRODUCT DETAILS
========================================================= */

.s_product_text {
  margin-top: 50px;
  padding-left: 10px;
}

.s_product_text h3,
.s_product_text h2 {
  color: #222;
  line-height: 1.4;
}

.s_product_text h3 {
  margin-bottom: 10px;

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

.s_product_text h2 {
  margin-bottom: 18px;

  font-size: 30px;
  font-weight: 800;

  color: #ffba00;
}


/* =========================================================
   PRODUCT META LIST
========================================================= */

.s_product_text .list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.s_product_text .list li {
  margin-bottom: 10px;
}

.s_product_text .list li:last-child {
  margin-bottom: 0;
}

.s_product_text .list li a {
  display: flex;
  align-items: center;

  font-size: 14px;
  color: #666;

  transition: color .3s ease;
}

.s_product_text .list li a:hover {
  color: #ffba00;
}

.s_product_text .list li a span {
  min-width: 95px;

  font-weight: 600;
  color: #222;
}

.s_product_text .list li a.active span {
  color: #ffba00;
}


/* =========================================================
   PRODUCT DESCRIPTION
========================================================= */

.s_product_text p {
  margin: 25px 0 50px;
  padding-top: 22px;

  border-top: 1px dashed #ddd;

  line-height: 1.8;
  color: #777;
}


/* =========================================================
   CARD ACTION AREA
========================================================= */

.s_product_text .card_area {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.s_product_text .card_area .primary-btn {
  padding: 0 40px;
  line-height: 44px;

  border-radius: 10px;

  text-transform: uppercase;
  font-weight: 600;
}


/* =========================================================
   ICON BUTTONS
========================================================= */

.s_product_text .card_area .icon_btn {
  width: 44px;
  height: 44px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  position: relative;
  overflow: hidden;

  border-radius: 50%;

  background: #eef1f6;
  color: #555;

  transition:
    background .3s ease,
    color .3s ease,
    transform .3s ease,
    box-shadow .3s ease;
}

.s_product_text .card_area .icon_btn:hover {
  transform: translateY(-3px);

  background: #ffba00;
  color: #fff;

  box-shadow:
    0 10px 20px rgba(255, 186, 0, 0.25);
}


/* =========================================================
   PRODUCT QUANTITY
========================================================= */

.product_count {
  display: inline-flex;
  align-items: center;
  gap: 14px;

  margin-bottom: 28px;
}

.product_count label {
  margin: 0;

  font-size: 14px;
  font-weight: 500;

  color: #555;
}

.product_count input {
  width: 80px;
  height: 44px;

  padding: 0 14px;

  border: 1px solid #e5e5e5;
  border-radius: 10px;

  font-weight: 600;
  color: #222;

  outline: none;

  transition:
    border-color .3s ease,
    box-shadow .3s ease;
}

.product_count input:focus {
  border-color: #ffba00;

  box-shadow:
    0 0 0 4px rgba(255, 186, 0, 0.12);
}

.product_count .qty-btns {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.product_count button {
  width: 24px;
  height: 20px;

  border: none;
  background: transparent;

  color: #aaa;
  cursor: pointer;

  transition:
    color .3s ease,
    transform .2s ease;
}

.product_count button:hover {
  color: #ffba00;
  transform: scale(1.1);
}


/* =========================================================
   PRODUCT DESCRIPTION AREA
========================================================= */

.product_description_area {
  margin-top: 70px;
  padding-bottom: 120px;
}


/* =========================================================
   TABS
========================================================= */

.product_description_area .nav.nav-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;

  padding: 14px;

  border: none;
  border-radius: 18px;

  background: #f4f7fb;
}

.product_description_area .nav.nav-tabs li {
  margin: 0;
}

.product_description_area .nav.nav-tabs li a {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 44px;
  padding: 0 28px;

  border: 1px solid #e5e5e5;
  border-radius: 10px;

  background: #fff;
  color: #222;

  font-size: 14px;
  font-weight: 500;

  transition:
    all .3s ease;
}

.product_description_area .nav.nav-tabs li a:hover,
.product_description_area .nav.nav-tabs li a.active {
  background: #ffba00;
  border-color: #ffba00;
  color: #fff;
}


/* =========================================================
   TAB CONTENT
========================================================= */

.product_description_area .tab-content {
  padding: 35px;

  border: 1px solid #eee;
  border-top: 0;

  border-radius: 0 0 20px 20px;

  background: #fff;
}


/* =========================================================
   REVIEW SUMMARY BOX
========================================================= */

.product_description_area .total_rate .box_total {
  padding: 30px 20px;

  border-radius: 18px;
  background: #f4f7fb;

  text-align: center;
}

.product_description_area .total_rate .box_total h4 {
  margin-bottom: 10px;

  font-size: 52px;
  font-weight: 800;

  color: #ffba00;
}

.product_description_area .total_rate .box_total h5 {
  margin-bottom: 5px;

  font-size: 24px;
  font-weight: 700;

  color: #222;
}

.product_description_area .total_rate .box_total h6 {
  margin: 0;

  font-size: 14px;
  font-weight: 400;

  color: #777;
}


/* =========================================================
   RATING LIST
========================================================= */

.product_description_area .rating_list h3 {
  margin-bottom: 14px;

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

  color: #222;
}

.product_description_area .rating_list .list li {
  margin-bottom: 8px;
}

.product_description_area .rating_list .list li a {
  display: flex;
  align-items: center;
  gap: 4px;

  color: #666;

  transition: color .3s ease;
}

.product_description_area .rating_list .list li a:hover {
  color: #ffba00;
}

.product_description_area .rating_list .list li a i {
  color: #fbd600;
}


/* =========================================================
   SPECIFICATION TABLE
========================================================= */

.product_description_area .table {
  margin: 0;
}

.product_description_area .table tbody tr td {
  padding: 16px 40px;

  vertical-align: middle;
}

.product_description_area .table tbody tr:first-child td {
  border-top: 0;
}

.product_description_area .table tbody tr td h5 {
  margin: 0;

  font-size: 14px;
  font-weight: 500;

  color: #666;

  white-space: nowrap;
}


/* =========================================================
   REVIEW ITEM
========================================================= */

.review_item {
  margin-bottom: 24px;
  padding-bottom: 24px;

  border-bottom: 1px solid #f1f1f1;
}

.review_item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}

.review_item.reply {
  margin-left: 30px;
}

.review_item .media {
  display: flex;
  align-items: flex-start;
  gap: 16px;

  position: relative;
}

.review_item .media .d-flex img {
  width: 60px;
  height: 60px;

  border-radius: 50%;
  object-fit: cover;
}

.review_item .media .media-body h4 {
  margin-bottom: 6px;

  font-size: 15px;
  font-weight: 600;

  color: #222;
}

.review_item .media .media-body h5 {
  margin-bottom: 8px;

  font-size: 13px;
  font-weight: 400;

  color: #888;
}

.review_item .media .media-body i {
  color: #fbd600;
}

.review_item p {
  margin: 12px 0 0;

  line-height: 1.7;
  color: #666;
}


/* =========================================================
   REPLY BUTTON
========================================================= */

.review_item .reply_btn {
  position: absolute;
  top: 0;
  right: 0;

  padding: 0 22px;
  line-height: 36px;

  border: 1px solid #e5e5e5;
  border-radius: 999px;

  font-size: 13px;
  font-weight: 500;

  color: #222;
  background: #fff;

  transition:
    all .3s ease;
}

.review_item .reply_btn:hover {
  background: #ffba00;
  border-color: #ffba00;
  color: #fff;
}


/* =========================================================
   REVIEW BOX
========================================================= */

.review_box h4 {
  margin-bottom: 20px;

  font-size: 26px;
  font-weight: 700;

  color: #222;
}

.review_box p {
  margin: 0;

  display: inline-block;
}

.review_box .list {
  display: inline-flex;
  gap: 4px;

  margin: 0 10px;
  padding: 0;

  list-style: none;
}

.review_box .list li a {
  color: #fbd600;
}

.review_box .contact_form {
  margin-top: 20px;
}

.review_box .primary-btn {
  padding: 0 40px;
  line-height: 44px;

  border: none;
  border-radius: 10px;

  font-weight: 600;
  text-transform: uppercase;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991px) {
  .s_product_text {
    margin-top: 35px;
    padding-left: 0;
  }

  .product_description_area .tab-content {
    padding: 25px;
  }
}

@media (max-width: 767px) {
  .product_description_area .table tbody tr td {
    padding: 14px 20px;
  }

  .review_item .reply_btn {
    position: static;
    margin-top: 12px;
    display: inline-block;
  }
}

@media (max-width: 575px) {
  .product_image_area {
    padding-top: 80px;
  }

  .s_product_text h3 {
    font-size: 24px;
  }

  .s_product_text h2 {
    font-size: 26px;
  }

  .product_description_area .nav.nav-tabs {
    justify-content: flex-start;
  }

  .product_description_area .nav.nav-tabs li a {
    padding: 0 18px;
    font-size: 13px;
  }

  .product_description_area .tab-content {
    padding: 20px;
  }

  .review_item.reply {
    margin-left: 15px;
  }
}

/* End Single Product Area css
============================================================================================ */
/* =========================================
   CART AREA - MODERN & OPTIMIZED
========================================= */

:root {
  --cart-bg: #f5f7fb;
  --cart-white: #fff;
  --cart-border: #e8e8e8;
  --cart-text: #222;
  --cart-muted: #777;
  --cart-light: #ccc;
  --cart-primary: #ffba00;

  --radius-sm: 6px;
  --radius-md: 10px;

  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.05);
  --transition: all 0.3s ease;
}

/* =========================================
   CART AREA
========================================= */

.cart_area {
  padding: 100px 0;
  background: var(--cart-bg);
}

.cart_inner {
  background: var(--cart-white);
  border-radius: 18px;
  padding: 30px;
  box-shadow: var(--shadow-sm);
  overflow-x: auto;
}

/* =========================================
   TABLE
========================================= */

.cart_inner .table {
  margin-bottom: 0;
}

.cart_inner .table thead th {
  border: 0 !important;
  padding-bottom: 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--cart-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cart_inner .table tbody td {
  padding: 28px 0;
  vertical-align: middle;
  border-color: var(--cart-border);
}

/* =========================================
   PRODUCT INFO
========================================= */

.cart_inner .media {
  align-items: center;
}

.cart_inner .media .d-flex {
  padding-right: 20px;
}

.cart_inner .media img {
  width: 90px;
  border: 1px solid var(--cart-border);
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.cart_inner .media img:hover {
  transform: scale(1.05);
}

.cart_inner .media-body p,
.cart_inner td h5 {
  margin: 0;
}

.cart_inner td h5 {
  font-size: 15px;
  font-weight: 600;
  color: var(--cart-text);
}

/* =========================================
   PRODUCT COUNT
========================================= */

.product_count {
  position: relative;
  width: fit-content;
  margin: 0;
}

.product_count input {
  width: 110px;
  height: 44px;
  padding: 0 38px 0 16px;
  border: 1px solid var(--cart-border);
  border-radius: var(--radius-sm);
  outline: none;
  transition: var(--transition);
}

.product_count input:focus {
  border-color: var(--cart-primary);
  box-shadow: 0 0 0 3px rgba(255, 186, 0, 0.12);
}

.product_count button {
  position: absolute;
  right: 12px;
  border: 0;
  background: transparent;
  color: var(--cart-light);
  cursor: pointer;
  transition: var(--transition);
}

.product_count button:hover {
  color: var(--cart-primary);
}

.product_count .increase {
  top: 6px;
}

.product_count .reduced {
  bottom: 6px;
}

/* =========================================
   BUTTONS
========================================= */

.gray_btn,
.cart_inner .primary-btn {
  height: 42px;
  padding: 0 32px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  transition: var(--transition);
}

.gray_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #eef2f5;
  border: 1px solid var(--cart-border);
  color: var(--cart-text);
}

.gray_btn:hover {
  background: var(--cart-primary);
  border-color: var(--cart-primary);
  color: #fff;
}

.cart_inner .primary-btn {
  line-height: 42px;
}

/* =========================================
   COUPON AREA
========================================= */

.cupon_text {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.cupon_text input {
  width: 220px;
  height: 42px;
  padding: 0 15px;
  border: 1px solid var(--cart-border);
  border-radius: var(--radius-sm);
  outline: none;
  transition: var(--transition);
  color: var(--cart-text);
}

.cupon_text input::placeholder {
  color: var(--cart-light);
}

.cupon_text input:focus {
  border-color: var(--cart-primary);
  box-shadow: 0 0 0 3px rgba(255, 186, 0, 0.12);
}

/* =========================================
   SHIPPING AREA
========================================= */

.shipping_box {
  text-align: right;
}

.shipping_box .list li {
  margin-bottom: 14px;
}

.shipping_box .list li:last-child {
  margin-bottom: 0;
}

.shipping_box .list li a {
  position: relative;
  padding-right: 30px;
  font-size: 14px;
  color: var(--cart-muted);
  transition: var(--transition);
}

.shipping_box .list li a:hover {
  color: var(--cart-primary);
}

/* radio */

.shipping_box .list li a::before,
.shipping_box .list li a::after {
  content: "";
  position: absolute;
  top: 50%;
  border-radius: 50%;
  transform: translateY(-50%);
}

.shipping_box .list li a::before {
  right: 0;
  width: 16px;
  height: 16px;
  border: 1px solid #cfcfcf;
}

.shipping_box .list li a::after {
  right: 4px;
  width: 8px;
  height: 8px;
  background: var(--cart-primary);
  opacity: 0;
  transition: var(--transition);
}

.shipping_box .list li.active a::after {
  opacity: 1;
}

/* shipping title */

.shipping_box h6 {
  margin: 25px 0 18px;
  font-size: 14px;
  color: var(--cart-text);
}

.shipping_box h6 i {
  margin-left: 5px;
  color: var(--cart-muted);
}

/* form controls */

.shipping_box input,
.shipping_select {
  width: 100%;
  height: 44px;
  padding: 0 15px;
  background: #f3f6f9;
  border: 1px solid var(--cart-border);
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
  transition: var(--transition);
}

.shipping_box input:focus,
.shipping_select:focus {
  border-color: var(--cart-primary);
  background: #fff;
}

.shipping_select .list {
  width: 100%;
  border-radius: var(--radius-sm);
}

/* =========================================
   CHECKOUT AREA
========================================= */

.checkout_btn_inner {
  display: flex;
  justify-content: flex-end;
  gap: 15px;
  flex-wrap: wrap;
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 991px) {

  .cart_inner {
    padding: 20px;
  }

  .shipping_box {
    text-align: left;
    margin-top: 20px;
  }

  .checkout_btn_inner {
    justify-content: center;
  }

  .cupon_text {
    justify-content: center;
  }
}

@media (max-width: 575px) {

  .cart_area {
    padding: 70px 0;
  }

  .cart_inner td {
    min-width: 140px;
  }

  .cart_inner .media {
    flex-direction: column;
    align-items: flex-start;
  }

  .cart_inner .media .d-flex {
    padding-right: 0;
    margin-bottom: 12px;
  }

  .product_count input {
    width: 90px;
  }

  .gray_btn,
  .cart_inner .primary-btn {
    width: 100%;
    justify-content: center;
  }
}

/* End Cart Area css
============================================================================================ */
/* =========================================
   CHECKOUT LOGIN / RETURNING CUSTOMER
========================================= */

:root {
  --checkout-bg: #f4f7fa;
  --checkout-border: #e8e8e8;
  --checkout-text: #222;
  --checkout-muted: #777;
  --checkout-primary: #ffba00;
  --checkout-link: #c5322d;

  --radius-sm: 6px;
  --radius-md: 10px;

  --transition: all 0.3s ease;
  --shadow-sm: 0 6px 18px rgba(0, 0, 0, 0.05);
}

/* =========================================
   CHECK TITLE
========================================= */

.check_title {
  margin-bottom: 25px;
}

.check_title h2 {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;

  margin: 0;
  padding: 14px 25px;

  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;

  background: var(--checkout-bg);
  border-left: 4px solid var(--checkout-primary);
  border-radius: var(--radius-md);

  color: var(--checkout-text);
}

.check_title h2 a {
  color: var(--checkout-link);
  font-weight: 600;
  text-decoration: underline;
  transition: var(--transition);
}

.check_title h2 a:hover {
  color: var(--checkout-primary);
}

/* =========================================
   RETURNING CUSTOMER
========================================= */

.returning_customer {
  background: #fff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
}

.returning_customer p {
  margin: 0 0 25px;
  color: var(--checkout-muted);
  line-height: 1.7;
}

/* =========================================
   FORM
========================================= */

.returning_customer .contact_form {
  max-width: 710px;
}

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

/* =========================================
   INPUTS
========================================= */

.returning_customer input[type="text"],
.returning_customer input[type="email"],
.returning_customer input[type="password"] {
  width: 100%;
  height: 46px;
  padding: 0 16px;

  border: 1px solid var(--checkout-border);
  border-radius: var(--radius-sm);

  font-size: 14px;
  color: var(--checkout-text);

  background: #fff;
  transition: var(--transition);
}

.returning_customer input::placeholder {
  color: var(--checkout-muted);
}

.returning_customer input:focus {
  border-color: var(--checkout-primary);
  box-shadow: 0 0 0 4px rgba(255, 186, 0, 0.12);
  outline: none;
}

/* =========================================
   BUTTON
========================================= */

.returning_customer .primary-btn {
  height: 46px;
  padding: 0 36px;

  border: none;
  border-radius: var(--radius-sm);

  text-transform: uppercase;
  font-size: 13px;
  font-weight: 600;

  cursor: pointer;
  transition: var(--transition);
}

.returning_customer .primary-btn:hover {
  transform: translateY(-2px);
}

/* =========================================
   CREATE ACCOUNT
========================================= */

.creat_account {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  margin-left: 18px;

  font-size: 14px;
  color: var(--checkout-muted);
  cursor: pointer;
}

.creat_account input {
  width: 16px;
  height: 16px;
  accent-color: var(--checkout-primary);
  cursor: pointer;
}

/* =========================================
   LOST PASSWORD
========================================= */

.lost_pass {
  display: inline-block;
  margin-top: 18px;

  font-size: 14px;
  color: var(--checkout-muted);

  transition: var(--transition);
}

.lost_pass:hover {
  color: var(--checkout-primary);
  text-decoration: underline;
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 767px) {

  .returning_customer {
    padding: 22px;
  }

  .check_title h2 {
    padding: 12px 18px;
    line-height: 1.6;
  }

  .creat_account {
    display: flex;
    margin: 15px 0 0;
  }

  .returning_customer .primary-btn {
    width: 100%;
  }
}

/* =========================================
   BILLING / COUPON AREA - OPTIMIZED
========================================= */

:root {
  --billing-bg: #fff;
  --billing-border: #e8e8e8;
  --billing-text: #222;
  --billing-muted: #777;
  --billing-primary: #ffba00;

  --radius-sm: 6px;
  --radius-md: 12px;

  --transition: all 0.3s ease;
  --shadow-sm: 0 6px 20px rgba(0, 0, 0, 0.05);
}

/* =========================================
   REQUIRED FIELD STAR
========================================= */

.p_star {
  position: relative;
  display: block;
}

.p_star input:focus + .placeholder {
  opacity: 0;
  visibility: hidden;
}

.p_star .placeholder {
  position: absolute;
  top: 50%;
  left: 16px;
  transform: translateY(-50%);

  pointer-events: none;
  transition: var(--transition);

  color: var(--billing-muted);
  font-size: 14px;
}

.p_star .placeholder::before {
  content: attr(data-placeholder);
}

.p_star .placeholder::after {
  content: " *";
  color: tomato;
  font-weight: 600;
}

/* =========================================
   COUPON AREA
========================================= */

.cupon_area {
  margin-bottom: 50px;
  padding: 30px;
  background: var(--billing-bg);
  border-radius: 18px;
  box-shadow: var(--shadow-sm);
}

.cupon_area input {
  width: 100%;
  max-width: 730px;
  height: 46px;

  margin: 20px 0;
  padding: 0 16px;

  border: 1px solid var(--billing-border);
  border-radius: var(--radius-sm);

  transition: var(--transition);
}

.cupon_area input:focus {
  border-color: var(--billing-primary);
  box-shadow: 0 0 0 4px rgba(255, 186, 0, 0.12);
  outline: none;
}

.cupon_area .tp_btn {
  margin: 0;
}

/* =========================================
   BUTTON
========================================= */

.tp_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  height: 44px;
  padding: 0 32px;

  border: 1px solid var(--billing-border);
  border-radius: var(--radius-sm);

  background: #fff;
  color: var(--billing-text);

  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;

  transition: var(--transition);
}

.tp_btn:hover {
  background: var(--billing-primary);
  border-color: var(--billing-primary);
  color: #fff;
  transform: translateY(-2px);
}

/* =========================================
   BILLING DETAILS
========================================= */

.billing_details {
  background: var(--billing-bg);
  padding: 35px;
  border-radius: 18px;
  box-shadow: var(--shadow-sm);
}

.billing_details h3 {
  margin-bottom: 30px;
  padding-bottom: 14px;

  font-size: 20px;
  font-weight: 600;
  color: var(--billing-text);

  border-bottom: 1px solid var(--billing-border);
}

/* =========================================
   FORM GROUP
========================================= */

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

/* =========================================
   INPUTS / TEXTAREA / SELECT
========================================= */

.billing_details input,
.billing_details textarea,
.billing_details .country_select {
  width: 100%;

  border: 1px solid var(--billing-border);
  border-radius: var(--radius-sm);

  color: var(--billing-text);
  background: #fff;

  transition: var(--transition);
}

.billing_details input,
.billing_details .country_select {
  height: 46px;
  padding: 0 16px;
}

.billing_details textarea {
  min-height: 150px;
  padding: 16px;
  resize: vertical;
}

.billing_details input::placeholder,
.billing_details textarea::placeholder {
  color: var(--billing-muted);
}

.billing_details input:focus,
.billing_details textarea:focus,
.billing_details .country_select:focus {
  border-color: var(--billing-primary);
  box-shadow: 0 0 0 4px rgba(255, 186, 0, 0.12);
  outline: none;
}

/* =========================================
   COUNTRY SELECT
========================================= */

.billing_details .country_select span,
.billing_details .country_select .list li {
  color: var(--billing-muted);
  font-size: 14px;
}

.billing_details .country_select .list {
  width: 100%;
  border-radius: var(--radius-sm);
  overflow: hidden;
}

/* =========================================
   CREATE ACCOUNT
========================================= */

.billing_details .creat_account {
  display: flex;
  align-items: center;
  gap: 10px;

  margin-top: 10px;
  flex-wrap: wrap;
}

.billing_details .creat_account input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--billing-primary);
  cursor: pointer;
}

.billing_details .creat_account a {
  color: var(--billing-primary);
  font-weight: 500;
  transition: var(--transition);
}

.billing_details .creat_account a:hover {
  text-decoration: underline;
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 767px) {

  .cupon_area,
  .billing_details {
    padding: 24px;
  }

  .tp_btn {
    width: 100%;
  }

  .billing_details h3 {
    font-size: 18px;
  }
}


/* =========================================
   ORDER / CHECKOUT AREA - MODERNIZED
========================================= */

:root{
  --clr-dark:#222;
  --clr-text:#777;
  --clr-border:#e5e7eb;
  --clr-light:#eef3f5;
  --clr-white:#fff;
  --clr-primary:#ffba00;
  --clr-danger:#c5322d;
  --clr-success:#28d500;

  --radius-sm:6px;
  --radius-md:10px;

  --shadow-sm:0 4px 12px rgba(0,0,0,.05);
  --transition:.3s ease;
}

/* =========================================
   COMMON CARD
========================================= */

.order_box,
.order_details_table{
  background:var(--clr-light);
  padding:30px;
  border-radius:var(--radius-md);
  box-shadow:var(--shadow-sm);
}

.order_box h2,
.order_details_table h2,
.order_d_inner .details_item h4{
  font-size:18px;
  font-weight:600;
  color:var(--clr-dark);
  margin-bottom:20px;
  padding-bottom:12px;
  border-bottom:1px solid var(--clr-border);
}

/* =========================================
   ORDER LISTS
========================================= */

.order_box .list,
.order_box .list_2,
.order_d_inner .details_item .list{
  margin:0;
  padding:0;
  list-style:none;
}

.order_box .list li a,
.order_box .list_2 li a{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
  padding:12px 0;
  border-bottom:1px solid var(--clr-border);
  font-size:14px;
  color:var(--clr-text);
  transition:var(--transition);
}

.order_box .list li a:hover,
.order_box .list_2 li a:hover{
  color:var(--clr-primary);
  padding-left:5px;
}

.order_box .list li a .middle{
  min-width:50px;
  text-align:right;
  color:var(--clr-dark);
  font-weight:500;
}

.order_box .list_2 li a{
  text-transform:uppercase;
  font-weight:600;
  color:var(--clr-dark);
}

.order_box .list_2 li a span{
  color:var(--clr-text);
  text-transform:capitalize;
}

.order_box .list_2 li:last-child a span{
  color:var(--clr-dark);
  font-weight:600;
}

/* =========================================
   PAYMENT ITEM
========================================= */

.order_box .payment_item{
  margin-top:25px;
}

.order_box .payment_item h4{
  position:relative;
  display:flex;
  align-items:center;
  gap:12px;
  padding-left:28px;
  margin-bottom:15px;

  font-size:14px;
  font-weight:600;
  text-transform:uppercase;
  color:var(--clr-dark);
  cursor:pointer;
}

.order_box .payment_item h4::before{
  content:"";
  position:absolute;
  left:0;
  top:50%;
  transform:translateY(-50%);

  width:16px;
  height:16px;

  border:1px solid #cfcfcf;
  border-radius:50%;
  background:var(--clr-white);

  transition:var(--transition);
}

.order_box .payment_item h4::after{
  content:"";
  position:absolute;
  left:5px;
  top:50%;
  transform:translateY(-50%) scale(0);

  width:6px;
  height:6px;

  border-radius:50%;
  background:var(--clr-white);

  transition:var(--transition);
}

.order_box .payment_item.active h4::before{
  background:var(--clr-primary);
  border-color:var(--clr-primary);
}

.order_box .payment_item.active h4::after{
  transform:translateY(-50%) scale(1);
}

.order_box .payment_item h4 img{
  max-height:24px;
  object-fit:contain;
}

.order_box .payment_item p{
  margin:0;
  padding:18px 20px;
  background:var(--clr-white);
  border-radius:var(--radius-sm);
  color:var(--clr-text);
  line-height:1.7;
}

/* =========================================
   ACCOUNT AGREEMENT
========================================= */

.order_box .creat_account{
  margin:20px 0;
}

.order_box .creat_account label{
  padding-left:10px;
  font-size:13px;
  color:var(--clr-dark);
  cursor:pointer;
}

.order_box .creat_account a{
  color:var(--clr-danger);
  font-weight:500;
}

.order_box .creat_account a:hover{
  text-decoration:underline;
}

/* =========================================
   PRIMARY BUTTON
========================================= */

.order_box .primary-btn{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:center;

  min-height:48px;
  border-radius:var(--radius-sm);

  font-size:14px;
  font-weight:600;
  text-transform:uppercase;

  transition:var(--transition);
}

.order_box .primary-btn:hover{
  transform:translateY(-2px);
}

/* =========================================
   ORDER CONFIRMATION
========================================= */

.order_details .title_confirmation{
  text-align:center;
  color:var(--clr-success);
  font-size:20px;
  font-weight:600;
  margin-bottom:60px;
}

/* =========================================
   ORDER DETAILS
========================================= */

.order_d_inner .details_item{
  background:var(--clr-white);
  border-radius:var(--radius-md);
  padding:25px;
  box-shadow:var(--shadow-sm);
}

.order_d_inner .details_item .list li{
  margin-bottom:12px;
}

.order_d_inner .details_item .list li:last-child{
  margin-bottom:0;
}

.order_d_inner .details_item .list li a{
  display:flex;
  align-items:center;
  color:var(--clr-dark);
  font-size:14px;
}

.order_d_inner .details_item .list li a span{
  min-width:145px;
  color:var(--clr-text);
  font-weight:500;
}

/* =========================================
   ORDER DETAILS TABLE
========================================= */

.order_details_table{
  margin-top:60px;
}

.order_details_table .table{
  margin-bottom:0;
}

.order_details_table .table th,
.order_details_table .table td{
  padding:16px;
  vertical-align:middle;
}

.order_details_table .table thead th{
  border-bottom:1px solid #d9d9d9;
  font-size:14px;
  font-weight:500;
  color:var(--clr-dark);
}

.order_details_table .table tbody td p,
.order_details_table .table tbody td h4,
.order_details_table .table tbody td h5{
  margin:0;
}

.order_details_table .table tbody td h4{
  font-size:14px;
  text-transform:uppercase;
  color:var(--clr-dark);
}

.order_details_table .table tbody td h5{
  color:var(--clr-dark);
  font-weight:600;
}

.order_details_table .table tbody tr:last-child td{
  border-top:1px solid #d9d9d9;
  font-weight:600;
}

.order_details_table .table tbody tr:last-child td p{
  color:var(--clr-dark);
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width:767px){

  .order_box,
  .order_details_table,
  .order_d_inner .details_item{
    padding:20px;
  }

  .order_box .list li a,
  .order_box .list_2 li a,
  .order_d_inner .details_item .list li a{
    flex-wrap:wrap;
  }

  .order_d_inner .details_item .list li a span{
    min-width:110px;
  }

  .order_details .title_confirmation{
    font-size:18px;
    margin-bottom:40px;
  }
}

/* End Cart Area css
============================================================================================ */
/* Login form Area css
============================================================================================ */
/* =========================================
   LOGIN / REGISTER AREA
========================================= */

:root{
  --clr-dark:#222;
  --clr-text:#777;
  --clr-border:#dcdcdc;
  --clr-white:#fff;
  --clr-overlay:rgba(0,0,0,.55);
  --clr-primary:#ffba00;

  --radius-sm:8px;
  --radius-md:16px;

  --shadow-md:0 15px 40px rgba(0,0,0,.08);

  --transition:.3s ease;
}

/* =========================================
   LOGIN BOX AREA
========================================= */

.login_box_area{
  position:relative;
}

.login_box_area .login_box_img{
  position:relative;
  overflow:hidden;
  border-radius:var(--radius-md);
  margin-right:-30px;
  min-height:100%;
}

.login_box_area .login_box_img img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .6s ease;
}

.login_box_area .login_box_img::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(
    to bottom,
    rgba(0,0,0,.35),
    rgba(0,0,0,.65)
  );
  z-index:1;
}

.login_box_area .login_box_img:hover img{
  transform:scale(1.05);
}

/* =========================================
   IMAGE CONTENT
========================================= */

.login_box_area .login_box_img .hover{
  position:absolute;
  inset:0;
  z-index:2;

  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;

  padding:40px;
  text-align:center;
}

.login_box_area .login_box_img .hover h4{
  font-size:30px;
  font-weight:700;
  color:var(--clr-white);
  margin-bottom:15px;
}

.login_box_area .login_box_img .hover p{
  max-width:420px;
  margin-bottom:30px;

  color:rgba(255,255,255,.9);
  line-height:1.7;
}

.login_box_area .login_box_img .hover .primary-btn{
  min-width:180px;
  border-radius:50px;
  text-transform:uppercase;
  font-weight:600;
  line-height:48px;

  transition:var(--transition);
}

.login_box_area .login_box_img .hover .primary-btn:hover{
  transform:translateY(-2px);
}

/* =========================================
   FORM CONTAINER
========================================= */

.login_form_inner{
  height:100%;
  padding:70px 50px;

  background:var(--clr-white);
  border-radius:var(--radius-md);

  text-align:center;
  box-shadow:var(--shadow-md);

  display:flex;
  flex-direction:column;
  justify-content:center;
}

.login_form_inner.reg_form{
  padding-top:70px;
}

.login_form_inner h3{
  margin-bottom:35px;

  font-size:22px;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.5px;

  color:var(--clr-dark);
}

.login_form_inner.reg_form h3{
  margin-bottom:50px;
}

.login_form_inner .login_form{
  width:100%;
  max-width:400px;
  margin:auto;
}

/* =========================================
   FORM GROUP
========================================= */

.login_form .form-group{
  margin-bottom:25px;
  position:relative;
}

/* =========================================
   INPUT FIELDS
========================================= */

.login_form .form-group input{
  width:100%;
  height:56px;
  padding:0 5px;

  border:none;
  border-bottom:1px solid var(--clr-border);
  background:transparent;

  color:var(--clr-dark);
  font-size:15px;

  outline:none;
  box-shadow:none;

  transition:var(--transition);
}

.login_form .form-group input:focus{
  border-color:var(--clr-primary);
}

.login_form .form-group input::placeholder{
  color:#999;
}

/* =========================================
   CHECKBOX AREA
========================================= */

.login_form .form-group .creat_account{
  display:flex;
  align-items:center;
  gap:10px;

  margin:5px 0 20px;
  text-align:left;
}

.login_form .form-group .creat_account input{
  width:auto;
  height:auto;
  margin:0;
}

.login_form .form-group .creat_account label{
  margin:0;
  color:var(--clr-text);
  font-size:14px;
  cursor:pointer;
}

/* =========================================
   BUTTON
========================================= */

.login_form .form-group .primary-btn{
  width:100%;
  min-height:54px;

  border:none;
  border-radius:50px;

  text-transform:uppercase;
  font-weight:600;
  letter-spacing:.5px;

  transition:var(--transition);
}

.login_form .form-group .primary-btn:hover{
  transform:translateY(-2px);
}

/* =========================================
   FORGOT PASSWORD
========================================= */

.login_form .form-group a{
  display:inline-block;
  margin-top:18px;

  font-size:14px;
  color:var(--clr-text);

  transition:var(--transition);
}

.login_form .form-group a:hover{
  color:var(--clr-primary);
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width:991px){

  .login_box_area .login_box_img{
    margin-right:0;
    margin-bottom:30px;
    min-height:400px;
  }

  .login_form_inner{
    padding:50px 30px;
  }
}

@media (max-width:575px){

  .login_box_area .login_box_img .hover{
    padding:25px;
  }

  .login_box_area .login_box_img .hover h4{
    font-size:24px;
  }

  .login_form_inner{
    padding:40px 20px;
  }

  .login_form_inner h3{
    font-size:20px;
  }
}

/* End Login form Area css
============================================================================================ */
/* Tracking Form Area css
============================================================================================ */
/* =========================================
   TRACKING BOX AREA
========================================= */

:root{
  --clr-dark:#222;
  --clr-text:#777;
  --clr-border:#e5e7eb;
  --clr-white:#fff;
  --clr-primary:#ffba00;

  --radius-sm:8px;
  --radius-md:16px;

  --shadow-sm:0 10px 30px rgba(0,0,0,.06);

  --transition:.3s ease;
}

/* =========================================
   WRAPPER
========================================= */

.tracking_box_area{
  padding:80px 0;
}

.tracking_box_area .tracking_box_inner{
  background:var(--clr-white);
  border-radius:var(--radius-md);
  padding:50px;
  box-shadow:var(--shadow-sm);
}

/* =========================================
   DESCRIPTION
========================================= */

.tracking_box_area .tracking_box_inner p{
  max-width:870px;
  margin-bottom:30px;

  color:var(--clr-dark);
  line-height:1.8;
  font-size:15px;
}

/* =========================================
   FORM
========================================= */

.tracking_box_area .tracking_box_inner .tracking_form{
  max-width:650px;
}

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

.tracking_form .form-group:last-child{
  margin-bottom:0;
}

/* =========================================
   INPUT FIELD
========================================= */

.tracking_form .form-group input{
  width:100%;
  height:50px;
  padding:0 18px;

  border:1px solid var(--clr-border);
  border-radius:var(--radius-sm);
  background:var(--clr-white);

  font-size:14px;
  color:var(--clr-text);

  outline:none;
  box-shadow:none;

  transition:var(--transition);
}

.tracking_form .form-group input:focus{
  border-color:var(--clr-primary);
  box-shadow:0 0 0 3px rgba(255,186,0,.15);
}

.tracking_form .form-group input::placeholder{
  color:#999;
  font-size:14px;
}

/* =========================================
   SUBMIT BUTTON
========================================= */

.tracking_form .form-group .submit_btn{
  min-width:180px;
  min-height:50px;

  border:none;
  border-radius:50px;

  text-transform:uppercase;
  font-size:14px;
  font-weight:600;
  letter-spacing:.5px;

  transition:var(--transition);
}

.tracking_form .form-group .submit_btn:hover{
  transform:translateY(-2px);
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width:767px){

  .tracking_box_area{
    padding:60px 0;
  }

  .tracking_box_area .tracking_box_inner{
    padding:35px 25px;
  }

  .tracking_box_area .tracking_box_inner p{
    font-size:14px;
  }

  .tracking_form .form-group .submit_btn{
    width:100%;
  }
}

/* End Tracking Form Area css
============================================================================================ */
/* =========================================
   CUSTOM RADIO BUTTON
========================================= */

:root{
  --clr-dark:#222;
  --clr-text:#666;
  --clr-border:#d6d6d6;
  --clr-white:#fff;
  --clr-primary:#ffba00;

  --transition:.3s ease;
}

/* =========================================
   RADIO WRAPPER
========================================= */

.radion_btn{
  position:relative;

  display:flex;
  align-items:center;

  min-height:24px;
  margin:14px 0;
}

/* Hide native radio */

.radion_btn input[type="radio"]{
  position:absolute;
  opacity:0;
  visibility:hidden;
}

/* =========================================
   LABEL
========================================= */

.radion_btn label{
  position:relative;
  z-index:2;

  width:100%;
  margin:0;
  padding-left:28px;

  cursor:pointer;

  font-size:13px;
  font-weight:600;
  letter-spacing:.3px;
  text-transform:uppercase;
  color:var(--clr-dark);

  transition:var(--transition);
}

/* =========================================
   CUSTOM CIRCLE
========================================= */

.radion_btn .check{
  position:absolute;
  top:50%;
  left:0;

  width:16px;
  height:16px;

  border:1.5px solid var(--clr-border);
  border-radius:50%;
  background:var(--clr-white);

  transform:translateY(-50%);
  transition:var(--transition);
}

/* Inner Dot */

.radion_btn .check::before{
  content:"";
  position:absolute;
  inset:0;

  width:6px;
  height:6px;

  margin:auto;
  border-radius:50%;

  background:transparent;
  transform:scale(0);

  transition:var(--transition);
}

/* =========================================
   ACTIVE STATE
========================================= */

.radion_btn input[type="radio"]:checked ~ .check{
  border-color:var(--clr-primary);
  background:var(--clr-primary);
}

.radion_btn input[type="radio"]:checked ~ .check::before{
  background:var(--clr-white);
  transform:scale(1);
}

.radion_btn input[type="radio"]:checked ~ label{
  color:#000;
}

/* =========================================
   HOVER EFFECT
========================================= */

.radion_btn:hover .check{
  border-color:var(--clr-primary);
}

.radion_btn:hover label{
  color:#000;
}

/* =========================================
   PAYMENT / BRAND IMAGE
========================================= */

.radion_btn img{
  position:absolute;
  right:0;
  top:50%;

  max-height:24px;
  object-fit:contain;

  transform:translateY(-50%);
}

/* =========================================
   ACCESSIBILITY
========================================= */

.radion_btn input[type="radio"]:focus-visible ~ .check{
  box-shadow:0 0 0 4px rgba(255,186,0,.18);
}



/* Latest Blog Area css
============================================================================================ */
.l_blog_item .l_blog_text .date {
  margin-top: 24px;
  margin-bottom: 15px; }
  .l_blog_item .l_blog_text .date a {
    color: #777777;
    font-size: 12px; }
.l_blog_item .l_blog_text h4 {
  font-size: 18px;
  color: #222222;
  border-bottom: 1px solid #eeeeee;
  margin-bottom: 0px;
  padding-bottom: 20px;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s; }
  .l_blog_item .l_blog_text h4:hover {
    color: #c5322d; }
.l_blog_item .l_blog_text p {
  margin-bottom: 0px;
  padding-top: 20px; }

/* End Latest Blog Area css
============================================================================================ */
/* Causes Area css
============================================================================================ */
.causes_slider .owl-dots {
  text-align: center;
  margin-top: 80px; }
  .causes_slider .owl-dots .owl-dot {
    height: 14px;
    width: 14px;
    background: #eeeeee;
    display: inline-block;
    margin-right: 7px; }
    .causes_slider .owl-dots .owl-dot:last-child {
      margin-right: 0px; }
    .causes_slider .owl-dots .owl-dot.active {
      background: #c5322d; }

.causes_item {
  background: #fff; }
  .causes_item .causes_img {
    position: relative; }
    .causes_item .causes_img .c_parcent {
      position: absolute;
      bottom: 0px;
      width: 100%;
      left: 0px;
      height: 3px;
      background: rgba(255, 255, 255, 0.5); }
      .causes_item .causes_img .c_parcent span {
        width: 70%;
        height: 3px;
        background: #c5322d;
        position: absolute;
        left: 0px;
        bottom: 0px; }
        .causes_item .causes_img .c_parcent span:before {
          content: "75%";
          position: absolute;
          right: -10px;
          bottom: 0px;
          background: #c5322d;
          color: #fff;
          padding: 0px 5px; }
  .causes_item .causes_text {
    padding: 30px 35px 40px 30px; }
    .causes_item .causes_text h4 {
      color: #222222;
      font-family: "Roboto", sans-serif;
      font-size: 18px;
      font-weight: 600;
      margin-bottom: 15px;
      cursor: pointer; }
      .causes_item .causes_text h4:hover {
        color: #c5322d; }
    .causes_item .causes_text p {
      font-size: 14px;
      line-height: 24px;
      color: #777777;
      font-weight: 300;
      margin-bottom: 0px; }
  .causes_item .causes_bottom a {
    width: 50%;
    border: 1px solid #c5322d;
    text-align: center;
    float: left;
    line-height: 50px;
    background: #c5322d;
    color: #fff;
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    font-weight: 500; }
    .causes_item .causes_bottom a + a {
      border-color: #eeeeee;
      background: #fff;
      font-size: 14px;
      color: #222222; }

/* End Causes Area css
============================================================================================ */
/*================= latest_blog_area css =============*/
.latest_blog_area {
  background: #f9f9ff; }

.single-recent-blog-post {
  margin-bottom: 30px; }
  .single-recent-blog-post .thumb {
    overflow: hidden; }
    .single-recent-blog-post .thumb img {
      transition: all 0.7s linear; }
  .single-recent-blog-post .details {
    padding-top: 30px; }
    .single-recent-blog-post .details .sec_h4 {
      line-height: 24px;
      padding: 10px 0px 13px;
      transition: all 0.3s linear; }
      .single-recent-blog-post .details .sec_h4:hover {
        color: #777777; }
  .single-recent-blog-post .date {
    font-size: 14px;
    line-height: 24px;
    font-weight: 400; }
  .single-recent-blog-post:hover img {
    transform: scale(1.23) rotate(10deg); }

.tags .tag_btn {
  font-size: 12px;
  font-weight: 500;
  line-height: 20px;
  border: 1px solid #eeeeee;
  display: inline-block;
  padding: 1px 18px;
  text-align: center;
  color: #222222; }
  .tags .tag_btn:before {
    background: #c5322d; }
  .tags .tag_btn + .tag_btn {
    margin-left: 2px; }

/*========= blog_categorie_area css ===========*/
.blog_categorie_area {
  padding-top: 80px;
  padding-bottom: 80px; }

.categories_post {
  position: relative;
  text-align: center;
  cursor: pointer; }
  .categories_post img {
    max-width: 100%; }
  .categories_post .categories_details {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    background: rgba(34, 34, 34, 0.8);
    color: #fff;
    transition: all 0.3s linear;
    display: flex;
    align-items: center;
    justify-content: center; }
    .categories_post .categories_details h5 {
      margin-bottom: 0px;
      font-size: 18px;
      line-height: 26px;
      text-transform: uppercase;
      color: #fff;
      position: relative; }
    .categories_post .categories_details p {
      font-weight: 300;
      font-size: 14px;
      line-height: 26px;
      margin-bottom: 0px; }
    .categories_post .categories_details .border_line {
      margin: 10px 0px;
      background: #fff;
      width: 100%;
      height: 1px; }
  .categories_post:hover .categories_details {
    background: rgba(255, 186, 0, 0.8); }

/*============ blog_left_sidebar css ==============*/
.blog_item {
  margin-bottom: 40px; }

.blog_info {
  padding-top: 30px; }
  .blog_info .post_tag {
    padding-bottom: 20px; }
    .blog_info .post_tag a {
      font: 300 14px/21px "Roboto", sans-serif;
      color: #222222; }
      .blog_info .post_tag a:hover {
        color: #777777; }
      .blog_info .post_tag a.active {
        color: #ffba00; }
  .blog_info .blog_meta li a {
    font: 300 14px/20px "Roboto", sans-serif;
    color: #777777;
    vertical-align: middle;
    padding-bottom: 12px;
    display: inline-block; }
    .blog_info .blog_meta li a i {
      color: #222222;
      font-size: 16px;
      font-weight: 600;
      padding-left: 15px;
      line-height: 20px;
      vertical-align: middle; }
    .blog_info .blog_meta li a:hover {
      color: #ffba00; }

.blog_post img {
  max-width: 100%; }
.blog_post .white_bg_btn {
  border: 1px solid #eeeeee;
  text-transform: uppercase;
  font-size: 12px;
  padding: 0 30px;
  line-height: 34px;
  display: inline-block;
  color: #222222; }

.blog_details {
  padding-top: 20px; }
  .blog_details h2 {
    font-size: 24px;
    line-height: 36px;
    color: #222222;
    font-weight: 600;
    transition: all 0.3s linear; }
    .blog_details h2:hover {
      color: #c5322d; }
  .blog_details p {
    margin-bottom: 26px; }

.view_btn {
  font-size: 14px;
  line-height: 36px;
  display: inline-block;
  color: #222222;
  font-weight: 500;
  padding: 0px 30px;
  background: #fff; }

.blog_right_sidebar {
  border: 1px solid #eeeeee;
  background: #fafaff;
  padding: 30px; }
  .blog_right_sidebar .widget_title {
    font-size: 18px;
    line-height: 25px;
    background: #ffba00;
    text-align: center;
    color: #fff;
    padding: 8px 0px;
    margin-bottom: 30px; }
  .blog_right_sidebar .search_widget .input-group .form-control {
    font-size: 14px;
    line-height: 29px;
    border: 0px;
    width: 100%;
    font-weight: 300;
    color: #fff;
    padding-left: 20px;
    border-radius: 45px;
    z-index: 0;
    background: #ffba00; }
    .blog_right_sidebar .search_widget .input-group .form-control.placeholder {
      color: #fff; }
    .blog_right_sidebar .search_widget .input-group .form-control:-moz-placeholder {
      color: #fff; }
    .blog_right_sidebar .search_widget .input-group .form-control::-moz-placeholder {
      color: #fff; }
    .blog_right_sidebar .search_widget .input-group .form-control::-webkit-input-placeholder {
      color: #fff; }
    .blog_right_sidebar .search_widget .input-group .form-control:focus {
      box-shadow: none; }
  .blog_right_sidebar .search_widget .input-group .btn-default {
    position: absolute;
    right: 20px;
    background: transparent;
    border: 0px;
    box-shadow: none;
    font-size: 14px;
    color: #fff;
    padding: 0px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1; }
  .blog_right_sidebar .author_widget {
    text-align: center; }
    .blog_right_sidebar .author_widget h4 {
      font-size: 18px;
      line-height: 20px;
      color: #222222;
      margin-bottom: 5px;
      margin-top: 30px; }
    .blog_right_sidebar .author_widget p {
      margin-bottom: 0px; }
    .blog_right_sidebar .author_widget .social_icon {
      padding: 7px 0px 15px; }
      .blog_right_sidebar .author_widget .social_icon a {
        font-size: 14px;
        color: #222222;
        transition: all 0.2s linear; }
        .blog_right_sidebar .author_widget .social_icon a + a {
          margin-left: 20px; }
        .blog_right_sidebar .author_widget .social_icon a:hover {
          color: #c5322d; }
  .blog_right_sidebar .popular_post_widget .post_item .media-body {
    justify-content: center;
    align-self: center;
    padding-left: 20px; }
    .blog_right_sidebar .popular_post_widget .post_item .media-body h3 {
      font-size: 14px;
      line-height: 20px;
      color: #222222;
      margin-bottom: 4px;
      transition: all 0.3s linear; }
      .blog_right_sidebar .popular_post_widget .post_item .media-body h3:hover {
        color: #ffba00; }
    .blog_right_sidebar .popular_post_widget .post_item .media-body p {
      font-size: 12px;
      line-height: 21px;
      margin-bottom: 0px; }
  .blog_right_sidebar .popular_post_widget .post_item + .post_item {
    margin-top: 20px; }
  .blog_right_sidebar .post_category_widget .cat-list li {
    border-bottom: 2px dotted #eee;
    transition: all 0.3s ease 0s;
    padding-bottom: 12px; }
    .blog_right_sidebar .post_category_widget .cat-list li a {
      font-size: 14px;
      line-height: 20px;
      color: #777; }
      .blog_right_sidebar .post_category_widget .cat-list li a p {
        margin-bottom: 0px; }
    .blog_right_sidebar .post_category_widget .cat-list li + li {
      padding-top: 15px; }
    .blog_right_sidebar .post_category_widget .cat-list li:hover {
      border-color: #ffba00; }
      .blog_right_sidebar .post_category_widget .cat-list li:hover a {
        color: #ffba00; }
  .blog_right_sidebar .newsletter_widget {
    text-align: center; }
    .blog_right_sidebar .newsletter_widget .form-group {
      margin-bottom: 8px; }
    .blog_right_sidebar .newsletter_widget .input-group-prepend {
      margin-right: -1px; }
    .blog_right_sidebar .newsletter_widget .input-group-text {
      background: #fff;
      border-radius: 0px;
      vertical-align: top;
      font-size: 12px;
      line-height: 36px;
      padding: 0px 0px 0px 15px;
      border: 1px solid #eeeeee;
      border-right: 0px; }
    .blog_right_sidebar .newsletter_widget .form-control {
      font-size: 12px;
      line-height: 24px;
      color: #cccccc;
      border: 1px solid #eeeeee;
      border-left: 0px;
      border-radius: 0px; }
      .blog_right_sidebar .newsletter_widget .form-control.placeholder {
        color: #cccccc; }
      .blog_right_sidebar .newsletter_widget .form-control:-moz-placeholder {
        color: #cccccc; }
      .blog_right_sidebar .newsletter_widget .form-control::-moz-placeholder {
        color: #cccccc; }
      .blog_right_sidebar .newsletter_widget .form-control::-webkit-input-placeholder {
        color: #cccccc; }
      .blog_right_sidebar .newsletter_widget .form-control:focus {
        outline: none;
        box-shadow: none; }
    .blog_right_sidebar .newsletter_widget .bbtns {
      background: #ffba00;
      color: #fff;
      font-size: 12px;
      line-height: 38px;
      display: inline-block;
      font-weight: 500;
      padding: 0px 24px 0px 24px;
      border-radius: 0; }
    .blog_right_sidebar .newsletter_widget .text-bottom {
      font-size: 12px; }
  .blog_right_sidebar .tag_cloud_widget ul li {
    display: inline-block; }
    .blog_right_sidebar .tag_cloud_widget ul li a {
      display: inline-block;
      border: 1px solid #eee;
      background: #fff;
      padding: 0px 13px;
      margin-bottom: 8px;
      transition: all 0.3s ease 0s;
      color: #222222;
      font-size: 12px; }
      .blog_right_sidebar .tag_cloud_widget ul li a:hover {
        background: #ffba00;
        color: #fff; }
  .blog_right_sidebar .br {
    width: 100%;
    height: 1px;
    background: #eeeeee;
    margin: 30px 0px; }

.blog-pagination {
  padding-top: 25px;
  padding-bottom: 95px; }
  .blog-pagination .page-link {
    border-radius: 0; }
  .blog-pagination .page-item {
    border: none; }

.page-link {
  background: transparent;
  font-weight: 400; }

.blog-pagination .page-item.active .page-link {
  color: #fff; }

.blog-pagination .page-link {
  position: relative;
  display: block;
  padding: 0.5rem 0.75rem;
  margin-left: -1px;
  line-height: 1.25;
  color: #8a8a8a;
  border: none; }

.blog-pagination .page-link .lnr {
  font-weight: 600; }

.blog-pagination .page-item:last-child .page-link,
.blog-pagination .page-item:first-child .page-link {
  border-radius: 0; }

.blog-pagination .page-link:hover {
  color: #fff;
  text-decoration: none;
  background-color: #c5322d;
  border-color: #eee; }

/*============ Start Blog Single Styles  =============*/
.single-post-area .social-links {
  padding-top: 10px; }
  .single-post-area .social-links li {
    display: inline-block;
    margin-bottom: 10px; }
    .single-post-area .social-links li a {
      color: #cccccc;
      padding: 7px;
      font-size: 14px;
      transition: all 0.2s linear; }
      .single-post-area .social-links li a:hover {
        color: #222222; }
.single-post-area .blog_details {
  padding-top: 26px; }
  .single-post-area .blog_details p {
    margin-bottom: 10px; }
.single-post-area .quotes {
  margin-top: 20px;
  margin-bottom: 30px;
  padding: 24px 35px 24px 30px;
  background-color: white;
  box-shadow: -20.84px 21.58px 30px 0px rgba(176, 176, 176, 0.1);
  font-size: 14px;
  line-height: 24px;
  color: #777;
  font-style: italic; }
.single-post-area .arrow {
  position: absolute; }
  .single-post-area .arrow .lnr {
    font-size: 20px;
    font-weight: 600; }
.single-post-area .thumb .overlay-bg {
  background: rgba(0, 0, 0, 0.8); }
.single-post-area .navigation-area {
  border-top: 1px solid #eee;
  padding-top: 30px;
  margin-top: 60px; }
  .single-post-area .navigation-area p {
    margin-bottom: 0px; }
  .single-post-area .navigation-area h4 {
    font-size: 18px;
    line-height: 25px;
    color: #222222; }
  .single-post-area .navigation-area .nav-left {
    text-align: left; }
    .single-post-area .navigation-area .nav-left .thumb {
      margin-right: 20px;
      background: #000; }
      .single-post-area .navigation-area .nav-left .thumb img {
        -webkit-transition: all 0.3s ease 0s;
        -moz-transition: all 0.3s ease 0s;
        -o-transition: all 0.3s ease 0s;
        transition: all 0.3s ease 0s; }
    .single-post-area .navigation-area .nav-left .lnr {
      margin-left: 20px;
      opacity: 0;
      -webkit-transition: all 0.3s ease 0s;
      -moz-transition: all 0.3s ease 0s;
      -o-transition: all 0.3s ease 0s;
      transition: all 0.3s ease 0s; }
    .single-post-area .navigation-area .nav-left:hover .lnr {
      opacity: 1; }
    .single-post-area .navigation-area .nav-left:hover .thumb img {
      opacity: .5; }
    @media (max-width: 767px) {
      .single-post-area .navigation-area .nav-left {
        margin-bottom: 30px; } }
  .single-post-area .navigation-area .nav-right {
    text-align: right; }
    .single-post-area .navigation-area .nav-right .thumb {
      margin-left: 20px;
      background: #000; }
      .single-post-area .navigation-area .nav-right .thumb img {
        -webkit-transition: all 0.3s ease 0s;
        -moz-transition: all 0.3s ease 0s;
        -o-transition: all 0.3s ease 0s;
        transition: all 0.3s ease 0s; }
    .single-post-area .navigation-area .nav-right .lnr {
      margin-right: 20px;
      opacity: 0;
      -webkit-transition: all 0.3s ease 0s;
      -moz-transition: all 0.3s ease 0s;
      -o-transition: all 0.3s ease 0s;
      transition: all 0.3s ease 0s; }
    .single-post-area .navigation-area .nav-right:hover .lnr {
      opacity: 1; }
    .single-post-area .navigation-area .nav-right:hover .thumb img {
      opacity: .5; }
@media (max-width: 991px) {
  .single-post-area .sidebar-widgets {
    padding-bottom: 0px; } }

.comments-area {
  background: #fafaff;
  border: 1px solid #eee;
  padding: 50px 30px;
  margin-top: 50px; }
  @media (max-width: 414px) {
    .comments-area {
      padding: 50px 8px; } }
  .comments-area h4 {
    text-align: center;
    margin-bottom: 50px;
    color: #222222;
    font-size: 18px; }
  .comments-area h5 {
    font-size: 16px;
    margin-bottom: 0px; }
  .comments-area a {
    color: #222222; }
  .comments-area .comment-list {
    padding-bottom: 48px; }
    .comments-area .comment-list:last-child {
      padding-bottom: 0px; }
    .comments-area .comment-list.left-padding {
      padding-left: 25px; }
    @media (max-width: 413px) {
      .comments-area .comment-list .single-comment h5 {
        font-size: 12px; }
      .comments-area .comment-list .single-comment .date {
        font-size: 11px; }
      .comments-area .comment-list .single-comment .comment {
        font-size: 10px; } }
  .comments-area .thumb {
    margin-right: 20px; }
  .comments-area .date {
    font-size: 13px;
    color: #cccccc;
    margin-bottom: 13px; }
  .comments-area .comment {
    color: #777777;
    margin-bottom: 0px; }
  .comments-area .btn-reply {
    background-color: #fff;
    color: #222222;
    border: 1px solid #eee;
    padding: 2px 18px;
    font-size: 12px;
    display: block;
    font-weight: 600;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s; }
    .comments-area .btn-reply:hover {
      background-color: #c5322d;
      color: #fff; }

.comment-form {
  background: #fafaff;
  text-align: center;
  border: 1px solid #eee;
  padding: 47px 30px 43px;
  margin-top: 50px;
  margin-bottom: 40px; }
  .comment-form h4 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 18px;
    line-height: 22px;
    color: #222222; }
  .comment-form .name {
    padding-left: 0px; }
    @media (max-width: 767px) {
      .comment-form .name {
        padding-right: 0px;
        margin-bottom: 1rem; } }
  .comment-form .email {
    padding-right: 0px; }
    @media (max-width: 991px) {
      .comment-form .email {
        padding-left: 0px; } }
  .comment-form .form-control {
    padding: 8px 20px;
    background: #fff;
    border: none;
    border-radius: 0px;
    width: 100%;
    font-size: 14px;
    color: #777777;
    border: 1px solid transparent; }
    .comment-form .form-control:focus {
      box-shadow: none;
      border: 1px solid #eee; }
  .comment-form textarea.form-control {
    height: 140px;
    resize: none; }
  .comment-form ::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    font-size: 13px;
    color: #777; }
  .comment-form ::-moz-placeholder {
    /* Firefox 19+ */
    font-size: 13px;
    color: #777; }
  .comment-form :-ms-input-placeholder {
    /* IE 10+ */
    font-size: 13px;
    color: #777; }
  .comment-form :-moz-placeholder {
    /* Firefox 18- */
    font-size: 13px;
    color: #777; }

/*============ End Blog Single Styles  =============*/
/*============== contact_area css ================*/
.mapBox {
  height: 420px;
  margin-top: 80px;
  margin-bottom: 100px; }

.contact_info .info_item {
  position: relative;
  padding-left: 45px; }
  .contact_info .info_item i {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 20px;
    line-height: 24px;
    color: #ffba00;
    font-weight: 600; }
  .contact_info .info_item h6 {
    font-size: 16px;
    line-height: 24px;
    color: "Roboto", sans-serif;
    font-weight: bold;
    margin-bottom: 0px;
    color: #222222; }
    .contact_info .info_item h6 a {
      color: #222222; }
  .contact_info .info_item p {
    font-size: 14px;
    line-height: 24px;
    padding: 2px 0px; }

.contact_form .form-group {
  margin-bottom: 10px; }
  .contact_form .form-group .form-control {
    font-size: 13px;
    line-height: 26px;
    color: #999;
    border: 1px solid #eeeeee;
    font-family: "Roboto", sans-serif;
    border-radius: 0px;
    padding-left: 20px; }
    .contact_form .form-group .form-control:focus {
      box-shadow: none;
      outline: none; }
    .contact_form .form-group .form-control.placeholder {
      color: #999; }
    .contact_form .form-group .form-control:-moz-placeholder {
      color: #999; }
    .contact_form .form-group .form-control::-moz-placeholder {
      color: #999; }
    .contact_form .form-group .form-control::-webkit-input-placeholder {
      color: #999; }
  .contact_form .form-group textarea {
    resize: none; }
    .contact_form .form-group textarea.form-control {
      height: 134px; }
.contact_form .primary-btn {
  background: #ffba00;
  color: #fff;
  margin-top: 20px;
  border: none;
  border-radius: 0; }

/* Contact Success and error Area css
============================================================================================ */
.modal-message .modal-dialog {
  position: absolute;
  top: 36%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%) !important;
  margin: 0px;
  max-width: 500px;
  width: 100%; }
  .modal-message .modal-dialog .modal-content .modal-header {
    text-align: center;
    display: block;
    border-bottom: none;
    padding-top: 50px;
    padding-bottom: 50px; }
    .modal-message .modal-dialog .modal-content .modal-header .close {
      position: absolute;
      right: -15px;
      top: -15px;
      padding: 0px;
      color: #fff;
      opacity: 1;
      cursor: pointer; }
    .modal-message .modal-dialog .modal-content .modal-header h2 {
      display: block;
      text-align: center;
      color: #ffba00;
      padding-bottom: 10px;
      font-family: "Roboto", sans-serif; }
    .modal-message .modal-dialog .modal-content .modal-header p {
      display: block; }

/* End Contact Success and error Area css
============================================================================================ */





























    

 /* its BB's code design */
.about-area {
    position: relative;
}

.about-img-wrapper {
    position: relative;
    display: inline-block;
}

.about-img-wrapper img {
    transition: transform 0.4s ease;
}

.about-img-wrapper:hover img {
    transform: scale(1.05);
}

.about-circle {
    position: absolute;
    width: 120px;
    height: 120px;
    background: rgba(255, 105, 180, 0.15);
    border-radius: 50%;
    top: -20px;
    right: -20px;
    z-index: -1;
}

/* Feature icon style */
.about-feature i {
    font-size: 18px;
    margin-top: 4px;
}
.stitching-area {
    position: relative;
    padding: 80px 0;
}

.stitching-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)),
                url('../img/banner/banner-bg.jpg') center/cover no-repeat;

    z-index: 1;
}

.stitching-area .container {
    z-index: 2;
}

/* Cards */
.stitch-card {
    background: rgba(255,255,255,0.08);
    padding: 25px 20px;
    border-radius: 12px;
    backdrop-filter: blur(6px);
    transition: 0.3s;
}

.stitch-card:hover {
    transform: translateY(-8px);
    background: rgba(255,255,255,0.15);
}

/* Icons */
.stitch-card .icon i {
    font-size: 32px;
    color: #E8C845;
}

/* Text */
.stitch-card h5 {
    color: #fff;
    margin-bottom: 10px;
}

.stitch-card p {
    color: #ddd;
    font-size: 14px;
}

.features-area {
    position: relative;
    padding: 80px 0;
}

/* Soft elegant background */
.features-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #fff0f5, #fdfbfb);
    top: 0;
    left: 0;
    z-index: 1;
}

.features-area .container {
    z-index: 2;
}

/* Feature Box */
.custom-feature-box {
    background: #fff;
    padding: 30px 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: 0.3s;
    height: 100%;
}

.custom-feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

/* Icon */
.custom-feature-box .icon {
    font-size: 35px;
    color: #E8C845;
    margin-bottom: 15px;
}

/* Text */
.custom-feature-box h5 {
    font-weight: 600;
    margin-bottom: 10px;
}

.custom-feature-box p {
    font-size: 14px;
    color: #777;
}

/* Product Card */
.product-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    transition: 0.3s;
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
    height: 100%;
}

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

/* Image */
.product-img {
    position: relative;
    overflow: hidden;
}

.product-img img {
    width: 100%;
    transition: 0.4s;
}

.product-card:hover img {
    transform: scale(1.08);
}

/* Sale badge */
.badge-sale {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #E8C845;
    color: #fff;
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 20px;
}

/* Overlay buttons */
.product-overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 10px;
    background: rgba(0,0,0,0.5);
    transform: translateY(100%);
    transition: 0.3s;
}

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

/* Buttons */
.btn-view,
.btn-cart {
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    border: none;
    transition: 0.3s;
}

.btn-view:hover,
.btn-cart:hover {
    background: #E8C845;
    color: #fff;
}

/* Info */
.product-info {
    padding: 15px;
    text-align: center;
}

.product-info h6 {
    font-size: 15px;
    margin-bottom: 8px;
}

.product-info h6 a {
    color: #333;
    text-decoration: none;
}

.product-info h6 a:hover {
    color: #E8C845;
}

/* Price */
.price {
    display: flex;
    justify-content: center;
    gap: 10px;
    align-items: center;
}

.new-price {
    color: #E8C845;
    font-weight: 600;
}

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

/* Mobile spacing */
@media (max-width: 576px) {
    .product-info h6 {
        font-size: 14px;
    }
}

/* Banner */
.shop-banner {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)),
                url('../img/banner/banner-bg.jpg') center/cover no-repeat;
    padding: 80px 0;
    color: #fff;
}

.shop-banner h1 {
    font-weight: 700;
}

.shop-banner nav {
    margin-top: 10px;
}

.shop-banner nav a {
    color: #fff;
    text-decoration: none;
}

/* Sidebar */
.shop-sidebar {
    background: rgba(255,255,255,0.7);
    padding: 20px;
    border-radius: 12px;
    backdrop-filter: blur(8px);
}

.category-link {
    display: block;
    padding: 8px 0;
    color: #555;
    text-decoration: none;
    transition: 0.3s;
}

.category-link:hover,
.category-link.active {
    color: #E8C845;
    font-weight: 600;
}

/* Filter */
.shop-filter {
    background: #f9f9f9;
    padding: 12px 15px;
    border-radius: 10px;
}

/* Product Card reused */
.product-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    transition: 0.3s;
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
}

.product-card:hover {
    transform: translateY(-6px);
}

/* Responsive */
@media (max-width: 768px) {
    .shop-filter {
        flex-direction: column;
        gap: 10px;
    }
}

/* Fade + Scale animation */
.product-card {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
    animation: productFade 0.5s ease forwards;
}

/* Stagger effect */
.product-card:nth-child(1) { animation-delay: 0.05s; }
.product-card:nth-child(2) { animation-delay: 0.1s; }
.product-card:nth-child(3) { animation-delay: 0.15s; }
.product-card:nth-child(4) { animation-delay: 0.2s; }
.product-card:nth-child(5) { animation-delay: 0.25s; }
.product-card:nth-child(6) { animation-delay: 0.3s; }

@keyframes productFade {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}
/* Banner */
.shop-banner {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)),
                url('../img/banner/banner-bg3.jpg') center/cover no-repeat;
    padding: 80px 0;
    color: #fff;
}

/* Product Image */
.product-main-img {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.product-main-img img {
    width: 100%;
    transition: 0.3s;
}

/* Thumbnails */
.product-thumbs img {
    width: 70px;
    border-radius: 8px;
    cursor: pointer;
    border: 2px solid transparent;
}

.product-thumbs img:hover {
    border-color: #E8C845;
}

/* Details */
.product-details-box h2 {
    font-weight: 600;
}

/* Price */
.price-box {
    margin: 15px 0;
}

.new-price {
    color: #E8C845;
    font-size: 22px;
    font-weight: bold;
}

.old-price {
    text-decoration: line-through;
    color: #999;
    margin-left: 10px;
}

/* Meta */
.meta-info p {
    margin: 5px 0;
}

.in-stock {
    color: green;
}

.out-stock {
    color: red;
}

/* Description */
.description {
    margin: 15px 0;
    color: #666;
}

/* Quantity */
.qty-box {
    display: flex;
    align-items: center;
    gap: 10px;
}

.qty-box button {
    width: 35px;
    height: 35px;
    border: none;
    background: #f5f5f5;
    border-radius: 6px;
}

.qty-box input {
    width: 60px;
    text-align: center;
}

/* Buttons */
.actions {
    display: flex;
    gap: 10px;
}

.btn-add {
    background: #E8C845;
    color: #fff;
    padding: 10px 25px;
    border-radius: 25px;
    border: none;
}

.btn-wishlist {
    width: 45px;
    border-radius: 50%;
    border: 1px solid #ddd;
}

/* Related cards */
.product-card {
    position: relative;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    transition: 0.3s;
}

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

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

.overlay-link {
    position: absolute;
    inset: 0;
}/* ===== PRODUCT DETAILS BOX ===== */
.product-details-box {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
}

/* ===== PRICE ===== */
.price-box {
    margin: 10px 0 15px;
}

.new-price {
    font-size: 18px;
    font-weight: 600;
    color: #E8C845;
}

.old-price {
    margin-left: 10px;
    color: #999;
    text-decoration: line-through;
}

/* ===== META ===== */
.meta-info {
    font-size: 14px;
    color: #555;
    margin-bottom: 15px;
}

/* ===== DESCRIPTION ===== */
.description {
    background: #fafafa;
    padding: 15px;
    border-radius: 8px;
    font-size: 14px;
    line-height: 1.6;
}

/* ===== QTY BOX ===== */
.qty-box {
    display: flex;
    align-items: center;
    margin-top: 15px;
}

.qty-box button {
    width: 38px;
    height: 38px;
    border: none;
    background: #f1f1f1;
    border-radius: 8px;
    font-size: 18px;
    cursor: pointer;
    transition: 0.3s;
}

.qty-box button:hover {
    background: #E8C845;
    color: #fff;
}

.qty-box input {
    width: 60px;
    height: 38px;
    text-align: center;
    margin: 0 8px;
    border: 1px solid #ddd;
    border-radius: 8px;
}

/* ===== ACTION BUTTONS ===== */
.actions {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

/* Add to Cart */
.btn-add {
    background: linear-gradient(135deg, #E8C845, #ff80ab);
    border: none;
    color: #fff;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 500;
    transition: 0.3s;
}

.btn-add:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255,64,129,0.3);
}

/* Wishlist */
.btn-wishlist {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid #eee;
    background: #fff;
    transition: 0.3s;
}

.btn-wishlist:hover {
    background: #E8C845;
    color: #fff;
}

/* ===== IMAGE ===== */
.product-main-img img {
    border-radius: 12px;
}

/* THUMB */
.thumb-img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    border: 2px solid transparent;
}

.thumb-img:hover {
    border-color: #E8C845;
}
.toast-msg {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #E8C845;
    color: #fff;
    padding: 12px 20px;
    border-radius: 25px;
    opacity: 0;
    transform: translateY(20px);
    transition: 0.3s;
    z-index: 9999;
}

.toast-msg.show {
    opacity: 1;
    transform: translateY(0);
}

.shop-banner {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)),
                url('../img/banner/banner-bg3.jpg') center/cover;
    padding: 80px 0;
    color: #fff;
}

/* CARD */
.cart-card {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #fff;
    padding: 15px;
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    position: relative;
}

/* IMAGE */
.cart-img img {
    width: 80px;
    border-radius: 8px;
}

/* INFO */
.cart-info {
    flex: 1;
}

.cart-info h5 {
    margin-bottom: 5px;
}

.price {
    color: #E8C845;
    font-weight: 600;
}
.product-options{
    display:flex;
    flex-wrap:wrap;
    gap:8px;
    margin:10px 0;
}

.option-pill{
    padding:6px 12px;
    border-radius:50px;
    font-size:12px;
    font-weight:600;
    border:1px solid #eee;
    background:#fafafa;
}

.option-color{
    background:#fff6eb;
    border-color:#ffd9a8;
}

.option-size{
    background:#eef7ff;
    border-color:#c8e3ff;
}

.remarks-card{
    margin-top:10px;
    background:#fafafa;
    border-left:4px solid #ff6b6b;
    border-radius:10px;
    padding:10px 12px;
}

.remarks-title{
    font-size:13px;
    font-weight:600;
    color:#444;
    margin-bottom:4px;
}

.remarks-text{
    font-size:13px;
    color:#666;
    line-height:1.6;
}
.variant-remark{

    margin-top:8px;
    padding:6px 10px;
    background:#f8f9fa;
    border-left:3px solid #ff6b6b;
    border-radius:6px;
    font-size:12px;
    color:#666;
    max-width:350px;
    line-height:1.5;
}

/* QTY */
.qty-box {
    display: flex;
    align-items: center;
    margin-top: 8px;
}

.qty-box button {
    width: 32px;
    height: 32px;
    border: none;
    background: #f1f1f1;
    border-radius: 6px;
}

.qty-box input {
    width: 50px;
    text-align: center;
    margin: 0 5px;
}

/* TOTAL */
.cart-total {
    font-weight: bold;
}

/* REMOVE */
.btn-remove {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #E8C845;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 28px;
    height: 28px;
}

/* SUMMARY */
.cart-summary {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.summary-item,
.summary-total {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

/* BUTTON */
.btn-main {
    background: #E8C845;
    color: #fff;
    padding: 12px;
    border-radius: 25px;
    display: inline-block;
    text-align: center;
}

/* BANNER */
.shop-banner {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
                url('../img/banner/banner-bg3.jpg') center/cover;
    padding: 80px 0;
    color: #fff;
}

/* CARD */
.checkout-card {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

/* INPUT */
.checkout-card input,
.checkout-card textarea {
    width: 100%;
    border: 1px solid #eee;
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 12px;
    transition: 0.3s;
}

.checkout-card input:focus,
.checkout-card textarea:focus {
    border-color: #00bcd4;
    outline: none;
}

/* SUMMARY */
.checkout-summary {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

/* PRODUCT ROW */
.summary-product {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

/* ROW */
.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}

/* TOTAL */
.summary-total {
    display: flex;
    justify-content: space-between;
    font-size: 18px;
}

/* PAYMENT */
.payment-box {
    margin-top: 15px;
}

.radio-box {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

/* BUTTON */
.btn-main {
    background: linear-gradient(45deg, #00bcd4, #2196f3);
    color: #fff;
    padding: 12px;
    border-radius: 30px;
    border: none;
    text-align: center;
}

/* BANNER */
.success-banner {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
                url('../img/banner/banner-bg3.jpg') center/cover;
    padding: 80px 0;
    color: #fff;
}

/* ICON */
.success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #00bcd4, #2196f3);
    color: #fff;
    font-size: 40px;
    line-height: 80px;
    border-radius: 50%;
    margin: auto;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    animation: pop 0.5s ease;
}

@keyframes pop {
    0% { transform: scale(0.5); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

/* CARD */
.order-card {
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    max-width: 500px;
    margin-top: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* ROW */
.order-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 14px;
}

/* TOTAL */
.order-total {
    display: flex;
    justify-content: space-between;
    font-size: 18px;
}

/* TEXT */
.order-id {
    font-size: 16px;
    color: #555;
}

/* BUTTONS */
.btn-main {
    background: linear-gradient(45deg, #00bcd4, #2196f3);
    color: #fff;
    padding: 12px 20px;
    border-radius: 25px;
    margin: 5px;
    display: inline-block;
}

.btn-outline {
    border: 2px solid #00bcd4;
    color: #00bcd4;
    padding: 10px 18px;
    border-radius: 25px;
    margin: 5px;
    display: inline-block;
}
/* ===== Floating Container ===== */
/* Floating Back Button */
.floating-back {
    position: fixed;
    bottom: 25px;
    left: 25px;
    z-index: 9999;
}

.back-btn {
    width: 60px;
    height: 60px;
    border: none;
    background: transparent;
    cursor: pointer;
    padding: 0;
}

.back-icon {
    width: 60px;
    height: 60px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.back-btn:hover .back-icon {
    transform: scale(1.1);
}
/* ===== Container fixed at bottom ===== */
.floating-social {
    position: fixed;
    right: 25px;
    bottom: 25px;
    display: flex;
    flex-direction: column-reverse; /* KEY FIX */
    align-items: center;
    z-index: 9999;
}

/* ===== Toggle Button (always bottom) ===== */
.social-toggle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff6b6b, #ff3d3d);
    color: #fff;
    border: none;
    font-size: 22px;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    transition: all 0.4s ease;
}

/* Hover */
.social-toggle:hover {
    transform: scale(1.1) rotate(90deg);
}

/* ===== Icons container (above button) ===== */
.social-icons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;

    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;

    transition: all 0.4s ease;
}

/* Active (show icons upward) */
.social-icons.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

/* ===== Social buttons ===== */
.social-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
    transition: all 0.3s ease;
}

.social-btn:hover {
    transform: translateY(-5px) scale(1.1);
}

/* Colors */
.whatsapp { background: #25D366; }
.instagram { background: linear-gradient(45deg,#f09433,#dc2743,#bc1888); }
.facebook { background: #1877f2; }
.location { background: #ff5722; }

/* ===== Stagger animation (top to bottom) ===== */
.social-icons a {
    opacity: 0;
    transform: translateY(20px);
}

.social-icons.active a {
    opacity: 1;
    transform: translateY(0);
}

/* Delay order (TOP → BOTTOM) */
.social-icons.active a:nth-child(1) { transition: 0.3s 0.1s; }
.social-icons.active a:nth-child(2) { transition: 0.3s 0.2s; }
.social-icons.active a:nth-child(3) { transition: 0.3s 0.3s; }
.social-icons.active a:nth-child(4) { transition: 0.3s 0.4s; }



.category-img {
    
    object-fit: cover;
    border-radius: 8px;
}

  .product-img {
      border-radius: 8px;
      transition: 0.3s ease;
  }

.product-img:hover {
    transform: scale(1.03);
}


.category-img,
.product-img {
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
}



/* ================= PAGINATION ================= */

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 30px;
    flex-wrap: wrap;
}

/* Base link */
.pagination li a,
.pagination li span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;

    background: #fff;
    border-radius: 50px;
    border: 1px solid #eee;

    font-size: 14px;
    color: #555;
    text-decoration: none;

    transition: all 0.3s ease;
}

/* Hover */
.pagination li a:hover {
    background: linear-gradient(135deg, #E8C845, #ff80ab);
    color: #fff;
    border-color: transparent;
    transform: translateY(-2px);
}

/* Active */
.pagination li.active span,
.pagination li.active a {
    background: linear-gradient(135deg, #E8C845, #ff80ab);
    color: #fff;
    border: none;
    box-shadow: 0 5px 15px rgba(255, 64, 129, 0.3);
}

/* Disabled (Prev/Next) */
.pagination li.disabled span {
    color: #ccc;
    background: #f5f5f5;
    border-color: #eee;
    cursor: not-allowed;
}

/* Dots (...) */
.pagination li span[aria-hidden="true"] {
    background: transparent;
    border: none;
    color: #aaa;
}

/* Mobile */
@media (max-width: 576px) {
    .pagination {
        gap: 6px;
    }

    .pagination li a,
    .pagination li span {
        min-width: 34px;
        height: 34px;
        font-size: 13px;
    }
}

/* 🌴 BEACH BASE */
.footer-area {
    position: relative;
    background: linear-gradient(to top, #e6d2a8, #f4e3c1);
    color: #2b2b2b;
    padding: 100px 0 50px;
    font-size: 14px;
    overflow: hidden;
}

/* 🌊 WAVE CONTAINER */
.wave-container {
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    height: 220px;
    overflow: hidden;
    line-height: 0;
}

.wave-container svg {
    display: block;
    width: 200%;
    height: 100%;
}

/* 🌊 WAVES (REAL OCEAN COLORS) */
.wave-back {
    fill: #0f5e75; /* deep ocean */
    animation: waveMove 12s linear infinite;
}

.wave-mid {
    fill: #1f8ea3; /* mid ocean */
    animation: waveMoveReverse 9s linear infinite;
}

.wave-front {
    fill: #6fd3e8; /* shallow water */
    animation: waveMove 6s linear infinite;
    filter: drop-shadow(0 -3px 6px rgba(255,255,255,0.5)); /* foam glow */
}

/* 🌊 ANIMATION */
@keyframes waveMove {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes waveMoveReverse {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

/* 🌴 LOGO */
.footer-logo {
    max-width: 250px;
    filter: drop-shadow(0 4px 10px rgba(0,0,0,0.15));
    transition: 0.4s;
}

.footer-logo:hover {
    transform: scale(1.05);
}

/* 📝 TEXT */
.footer-text {
    line-height: 1.7;
    color: #3a3a3a;
    margin-bottom: 15px;
}

/* 🏷 TITLES */
.footer-title {
    color: #2b2b2b;
    font-weight: 600;
    margin-bottom: 18px;
    position: relative;
}

/* underline */
.footer-title::after {
    content: "";
    width: 30px;
    height: 2px;
    background: #0f5e75;
    position: absolute;
    left: 0;
    bottom: -6px;
    transition: 0.4s;
}

.footer-title:hover::after {
    width: 60px;
}

/* 🔗 LINKS */
.footer-links {
    list-style: none;
    padding: 0;
}

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

.footer-links a {
    color: #2b2b2b;
    transition: 0.3s;
    display: inline-block;
}

.footer-links a:hover {
    color: #0f5e75;
    transform: translateX(5px);
}

/* BUTTON LINK */
.footer-link-btn {
    background: none;
    border: none;
    color: #2b2b2b;
    cursor: pointer;
    transition: 0.3s;
}

.footer-link-btn:hover {
    color: #0f5e75;
}

/* 🌊 SOCIAL ICONS */
.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    margin-right: 8px;
    border-radius: 50%;
    background: rgba(15,94,117,0.1);
    color: #0f5e75;
    font-size: 16px;
    transition: 0.4s;
}

.footer-social a:hover {
    background: #0f5e75;
    color: #fff;
    transform: translateY(-4px) scale(1.1);
}

/* 📍 CONTACT ICONS */
.footer-area p i {
    color: #0f5e75;
    margin-right: 8px;
}

/* 🌊 SUBTLE FLOAT (reduced for realism) */
.footer-area .col-lg-3 {
    animation: floatUp 4s ease-in-out infinite alternate;
}
.footer-area .col-lg-3:nth-child(2) { 
  animation-delay: 0.3s; 
}
.footer-area .col-lg-3:nth-child(3) {
  animation-delay: 0.6s;
}
.footer-area .col-lg-3:nth-child(4) { 
  animation-delay: 0.9s; 
}

@keyframes floatUp {
    from { transform: translateY(0); }
    to { transform: translateY(-4px); }
}

/* 🧾 FOOTER BOTTOM */
.footer-bottom {
    border-top: 1px solid rgba(0,0,0,0.1);
    margin-top: 35px;
    padding-top: 15px;
    text-align: center;
    color: #444;
}

/* glow divider */
.footer-bottom::before {
    content: "";
    display: block;
    height: 1px;
    width: 120px;
    margin: 0 auto 10px;
    background: linear-gradient(to right, transparent, #1f8ea3, transparent);
}

/* 📱 MOBILE */
@media (max-width: 768px) {
    .footer-area {
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }
}
.order-card {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.order-header {
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.order-total {
    font-size: 18px;
    font-weight: 600;
    color: #c59d5f;
}

.order-item {
    padding: 8px 0;
    border-bottom: 1px dashed #eee;
}

.order-footer {
    margin-top: 10px;
}

.order-summary {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.shipping-card {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    font-size: 18px;
}
/* STATUS BADGE */
.status-badge {
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    color: #fff;
}

.status-pending { background: #f0ad4e; }
.status-shipped { background: #5bc0de; }
.status-delivered { background: #5cb85c; }
.status-cancelled { background: #d9534f; }

/* TRACKING */
.tracking-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
}

.step {
    text-align: center;
    flex: 1;
    position: relative;
}

.step .circle {
    width: 18px;
    height: 18px;
    background: #ddd;
    border-radius: 50%;
    margin: 0 auto 8px;
}

.step.active .circle {
    background: #c59d5f;
}

.step::after {
    content: '';
    position: absolute;
    top: 9px;
    left: 50%;
    width: 100%;
    height: 2px;
    background: #ddd;
    z-index: -1;
}

.step:last-child::after {
    display: none;
}

.step.active::after {
    background: #c59d5f;
}

/* ORDER */
.order-card {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.order-item {
    padding: 10px 0;
    border-bottom: 1px dashed #eee;
}

.order-img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 8px;
}

/* SUMMARY */
.order-summary, .shipping-card {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    font-size: 18px;
}

.empty-cart {
    padding: 60px 20px;
}

.empty-img {
    width: 160px;
    opacity: 0.85;
}

.empty-cart h2 {
    font-weight: 600;
    color: #333;
}

.empty-cart p {
    font-size: 15px;
}

/* TABS */
.faq-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.tab-btn {
    padding: 10px 20px;
    border: none;
    background: #eee;
    border-radius: 30px;
    cursor: pointer;
}

.tab-btn.active {
    background: #c59d5f;
    color: #fff;
}

/* FAQ */
.faq-wrapper {
    max-width: 800px;
    margin: auto;
}

.faq-content {
    display: none;
}

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

.faq-item {
    background: #fff;
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.faq-question {
    width: 100%;
    padding: 18px;
    text-align: left;
    border: none;
    background: none;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    cursor: pointer;
}

.faq-answer {
    display: none;
    padding: 0 18px 18px;
    color: #666;
}

/* CONTACT BOX */
.faq-contact {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.btn-outline {
    border: 1px solid #c59d5f;
    padding: 10px 20px;
    border-radius: 30px;
    color: #c59d5f;
    text-decoration: none;
}

.terms-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.terms-card {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.terms-card h4 {
    margin-bottom: 10px;
    color: #c59d5f;
}

.terms-card ul {
    padding-left: 18px;
}

.terms-card li {
    margin-bottom: 8px; 
    font-size: 14px;
}

.terms-contact {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.btn-outline {
    border: 1px solid #c59d5f;
    padding: 10px 20px;
    border-radius: 30px;
    color: #c59d5f;
    text-decoration: none;
}
/* ================= REGISTER PAGE ================= */

.register_area {
    background: #f9f9ff;
    padding: 60px 0;
}

.register_image {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

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

.overlay-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.6);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.overlay-content h3 {
    font-size: 28px;
    margin-bottom: 10px;
}

.overlay-content p {
    margin-bottom: 15px;
}

.register_form {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.register_form h3 {
    margin-bottom: 25px;
    font-weight: 600;
}

.register_form input,
.register_form textarea,
.register_form select {
    width: 100%;
    border: 1px solid #ddd;
    padding: 12px 15px;
    margin-bottom: 15px;
    border-radius: 5px;
    transition: 0.3s;
}

.register_form input:focus,
.register_form textarea:focus,
.register_form select:focus {
    border-color: #ffba00;
    outline: none;
}

.register_form textarea {
    min-height: 100px;
    resize: none;
}

.register_form small {
    color: red;
    display: block;
    margin-top: -10px;
    margin-bottom: 10px;
}



/* Responsive */
@media (max-width: 768px) {
    .register_form {
        padding: 20px;
    }

    .overlay-content {
        display: none;
    }
}






// new thing v2 css
.modern-product-card{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 4px 20px rgba(0,0,0,0.06);
    transition:0.3s ease;
    position:relative;
    height:100%;
}

.modern-product-card:hover{
    transform:translateY(-5px);
    box-shadow:0 10px 30px rgba(0,0,0,0.10);
}

.product-img{
    position:relative;
    overflow:hidden;
}

.product-slider-image{
    width:100%;
    height:320px;
    object-fit:cover;
}

.product-info{
    padding:18px;
}

.product-category{
    font-size:12px;
    color:#999;
    margin-bottom:5px;
    text-transform:uppercase;
    letter-spacing:1px;
}

.product-title{
    font-size:16px;
    font-weight:600;
    margin-bottom:10px;
    line-height:1.5;
}

.product-title a{
    color:#222;
    text-decoration:none;
}

.price{
    display:flex;
    align-items:center;
    gap:10px;
}

.new-price{
    font-size:18px;
    font-weight:700;
    color:#111;
}

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

.variant-section{
    text-align:center;
}


.variant-label{
    font-size:13px;
    color:#777;
    margin-bottom:8px;
}

.color-wrapper{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:8px;
    flex-wrap:wrap;
}

.color-dot{
    width:18px;
    height:18px;
    border-radius:50%;
    border:1px solid #ddd;
    display:inline-block;
    transition:.3s;
}

.color-dot:hover{
    transform:scale(1.15);
}

.size-wrapper{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:8px;
    flex-wrap:wrap;
}

.size-badge{
    min-width:34px;
    height:34px;
    border-radius:50%;
    background:#f3f3f3;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:12px;
    transition:.3s;
}

.size-badge:hover{
    background:#111;
    color:#fff;
}

.badge-sale{
    position:absolute;
    top:15px;
    left:15px;
    background:#fccd14;
    color:#fff;
    padding:5px 10px;
    border-radius:30px;
    font-size:11px;
    z-index:5;
    font-weight:600;
}

.product-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.25);
    display:flex;
    align-items:center;
    justify-content:center;
    gap:12px;
    opacity:0;
    transition:0.3s ease;
}

.product-card:hover .product-overlay{
    opacity:1;
}

.btn-view,
.btn-cart{
    width:42px;
    height:42px;
    border:none;
    border-radius:50%;
    background:#fff;
    color:#111;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:0.3s ease;
}

.btn-view:hover,
.btn-cart:hover{
    background:#ffba00;
    color:#fff;
}


/*========================================
 FASHION GALLERY
========================================*/

.fashion-gallery {
    padding: 100px 0;
    background: #fafafa;
    overflow: hidden;
}

/* Heading */

.gallery-subtitle {
    display: inline-block;
    color: #ff6c00;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

/* .gallery-title {
    font-size: 60px;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    margin-bottom: 20px;
    color: #111;
} */
 .h2{
      font-size: 60px;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    margin-bottom: 20px;
    color: #111;
 }

.gallery-desc {
    color: #777;
    font-size: 17px;
}

/*========================================
 MASONRY GRID
========================================*/

.masonry-grid {
    column-count: 4;
    column-gap: 18px;
    padding: 0 20px;
}

.masonry-item {
    break-inside: avoid;
    margin-bottom: 18px;
}

/*========================================
 GALLERY CARD
========================================*/

.gallery-card {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    cursor: pointer;
    background: #000;
}

.gallery-card img {
    width: 100%;
    display: block;
    border-radius: 22px;
    transition:
        transform .7s ease,
        filter .5s ease;
}

/* Random Heights */

.masonry-item:nth-child(1) img,
.masonry-item:nth-child(6) img,
.masonry-item:nth-child(10) img {
    height: 520px;
    object-fit: cover;
}

.masonry-item:nth-child(2) img,
.masonry-item:nth-child(5) img,
.masonry-item:nth-child(8) img {
    height: 340px;
    object-fit: cover;
}

.masonry-item:nth-child(3) img,
.masonry-item:nth-child(7) img,
.masonry-item:nth-child(11) img {
    height: 430px;
    object-fit: cover;
}

.masonry-item:nth-child(4) img,
.masonry-item:nth-child(9) img,
.masonry-item:nth-child(12) img {
    height: 620px;
    object-fit: cover;
}

/* Hover */

.gallery-card:hover img {
    transform: scale(1.08);
    filter: brightness(.7);
}

/* Overlay */

.gallery-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;

    opacity: 0;
    transition: .4s ease;

    background:
        linear-gradient(
            rgba(0,0,0,.15),
            rgba(0,0,0,.45)
        );
}

.gallery-card:hover .gallery-overlay {
    opacity: 1;
}

/* Preview Button */

.preview-btn {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 0;
    background: rgba(255,255,255,.9);
    color: #111;
    font-size: 24px;

    transform: scale(.7);
    transition: .35s ease;
}

.gallery-card:hover .preview-btn {
    transform: scale(1);
}

.preview-btn:hover {
    background: linear-gradient(135deg,#ffba00,#ff6c00);
    color: #fff;
}

.wishlist-grid{
    display:grid;
   grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:25px;
}

.wishlist-card{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
    transition:.3s ease;
    border:1px solid #f1f1f1;
    height:100%;
    display:flex;
    flex-direction:column;
}

.wishlist-card:hover{
    transform:translateY(-6px);
    box-shadow:0 15px 35px rgba(0,0,0,.12);
}
.wishlist-image{
    position:relative;
    overflow:hidden;
}

.wishlist-price-badge{
    position:absolute;
    top:12px;
    right:12px;
    z-index:2;
    background:#ff6c2f;
    color:#fff;
    font-size:14px;
    font-weight:700;
    padding:8px 14px;
    border-radius:30px;
    box-shadow:0 4px 12px rgba(0,0,0,.15);
}

.wishlist-content{
    padding:20px;
    display:flex;
    flex-direction:column;
    flex:1;
}

.wishlist-title{
    text-align:center;
    margin-bottom:15px;
}

.wishlist-category{
    text-align:center;
    display:block;
    margin-bottom:10px;
}

.wishlist-actions{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:15px;
    margin-top:10px;
}

.wishlist-icon{
    width:46px;
    height:46px;
    border:none;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#f5f5f5;
    color:#333;
    text-decoration:none;
    transition:.3s ease;
    cursor:pointer;
    font-size:18px;
}

.wishlist-icon:hover{
    transform:translateY(-3px);
}

/* View */
.wishlist-actions a.wishlist-icon:hover{
    background:#222;
    color:#fff;
}

/* Cart */
.move-to-cart:hover{
    background:#ff6c2f;
    color:#fff;
}

/* Delete */
.remove-wishlist:hover{
    background:#dc3545;
    color:#fff;
}
.wishlist-image img{
    width:100%;
    height:320px;
    object-fit:cover;
    display:block;
    transition:.4s;
}

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


/*========================================
 RESPONSIVE
========================================*/

@media(max-width:1200px){

    .masonry-grid{
        column-count:3;
    }
}

@media(max-width:768px){

    .masonry-grid{
        column-count:2;
    }

    /* .gallery-title{
        font-size:42px;
    } */
     .h2{
      font-size: 42px;
     }
}

@media(max-width:576px){

    .masonry-grid{
        column-count:1;
        padding:0 15px;
    }

    /* .gallery-title{
        font-size:34px;
    } */
     h2{
      font-size: 34px;
     }

    .gallery-desc{
        font-size:15px;
    }
}

.close-gallery{
    position:absolute;
    top:-20px;
    right:0;
    width:50px;
    height:50px;
    border-radius:50%;
    border:0;
    background:#fff;
    font-size:30px;
    z-index:10;
}

#galleryPreviewImage{
    max-height:90vh;
    width:100%;
    object-fit:contain;
    background:#000;
    border-radius:24px;
}


.image-card{

position:relative;

background:#fafafa;

padding:20px;

border-radius:20px;

overflow:hidden;

}

.main-image{

width:100%;

height:650px;

object-fit:cover;

border-radius:20px;

}

.sale-tag{

position:absolute;

top:30px;

left:30px;

background:#ff3b30;

color:#fff;

padding:10px 18px;

border-radius:40px;

}

.thumb-row{

display:flex;

gap:10px;

margin-top:20px;

flex-wrap:wrap;

}

.thumb{

width:90px;

height:90px;

object-fit:cover;

border-radius:12px;

cursor:pointer;

}

.details-card{

padding-left:30px;

}

.price-row{

display:flex;

gap:20px;

margin:20px 0;

align-items:center;

}

.new-price{

font-size:22px;

font-weight:700;

}

.old-price{

text-decoration:line-through;

color:#999;

}

.stock{

color:green;

margin-bottom:20px;

}

.variant-block{

margin-top:30px;

}

.color-grid{

display:flex;

gap:15px;

flex-wrap:wrap;

}

.color-item{

text-align:center;

cursor:pointer;

}

.color-item input{

display:none;

}

.color-circle{

width:45px;

height:45px;

border-radius:50%;

border:3px solid white;

box-shadow:0 0 0 1px #ddd;

}

.color-item input:checked + .color-circle{

outline:4px solid #ffba00;

transform:scale(1.1);

}

.size-grid{

display:flex;

gap:10px;

flex-wrap:wrap;

}

.size-item input{

display:none;

}

.size-box{

min-width:60px;

height:50px;

display:flex;

justify-content:center;

align-items:center;

border:1px solid #ddd;

border-radius:12px;

}

.size-item input:checked + .size-box{

background:#111;

color:white;

}

.qty-box {
    display: flex;
    align-items: center;
    gap: 10px;
}

.qty-box input {
    width: 100px;
    height: 40px;
    text-align: center;
    border: 1px solid #ddd;
    color: #000;          /* make text visible */
    background: #fff;     /* ensure white bg */
    font-size: 16px;
    font-weight: 600;
    outline: none;
}

.qty-box button {
    width: 40px;
    height: 40px;
    border: none;
    background: #f2f2f2;
    cursor: pointer;
    font-size: 18px;
}

.add-combo{

margin-top:25px;

width:100%;

height:55px;

border:none;

background:#111;

color:white;

border-radius:12px;

}

.variant-list{

margin-top:25px;

display:flex;

flex-direction:column;

gap:15px;

}

.variant-card{

display:flex;

justify-content:space-between;

align-items:center;

padding:18px;

background:#fafafa;

border-radius:15px;

}

.variant-left{

display:flex;

gap:15px;

align-items:center;

}

.variant-dot{

width:30px;

height:30px;

border-radius:50%;

}

.remove-btn{

width:35px;

height:35px;

border:none;

border-radius:50%;

background:red;

color:white;

}

.cart-btn{

margin-top:20px;

width:100%;

height:55px;

background:#ffba00;

border:none;

border-radius:12px;

font-weight:700;

}

@media(max-width:991px){

.main-image{

height:450px;

}

.details-card{

padding-left:0;

margin-top:30px;

}

}
.banner-img-center {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100%;
}

.banner-img-center img {
    max-width: 100%;
    width: auto;
    height: auto;
    max-height: 600px;
    object-fit: contain;
}

/* Tablet */
@media (max-width: 991px) {
    .banner-img-center img {
        max-height: 450px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .banner-img-center img {
        max-height: 300px;
        width: 90%;
    }
}



.order-card-modern{
    background:#fff;
    border-radius:16px;
    padding:20px;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
    border:1px solid #eee;
}

.order-top{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    gap:20px;
    margin-bottom:20px;
    flex-wrap:wrap;
}

.order-meta{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
    color:#777;
    font-size:14px;
}

.order-amount{
    font-size:24px;
    font-weight:700;
    color:#222;
}

.status-badge{
    display:inline-flex;
    align-items:center;
    gap:6px;
    background:#e9f9ee;
    color:#198754;
    padding:6px 12px;
    border-radius:30px;
    font-size:13px;
    font-weight:600;
}

.order-products{
    border-top:1px solid #eee;
    border-bottom:1px solid #eee;
    padding:15px 0;
}

.product-row{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:15px;
    padding:12px 0;
}

.product-left{
    display:flex;
    align-items:center;
    gap:15px;
    flex:1;
}

.order-product-img{
    width:70px;
    height:70px;
    object-fit:cover;
    border-radius:10px;
    border:1px solid #eee;
    flex-shrink:0;
}

.product-name{
    font-weight:600;
    color:#222;
    margin-bottom:4px;
}

.product-price{
    font-size:14px;
    color:#777;
}

.product-qty{
    font-weight:600;
    white-space:nowrap;
}

.order-actions{
    margin-top:18px;
}

.view-order-btn{
    display:inline-flex;
    align-items:center;
    gap:8px;
    background:#ff6c00;
    color:#fff;
    padding:10px 18px;
    border-radius:8px;
    text-decoration:none;
    transition:.3s;
}

.view-order-btn:hover{
    color:#fff;
    transform:translateY(-2px);
}

.more-items{
    color:#ff6c00;
    font-weight:600;
    margin-top:10px;
}

.empty-orders{
    text-align:center;
    padding:70px 20px;
}

.empty-icon{
    font-size:70px;
    color:#ff6c00;
    margin-bottom:20px;
}

.shop-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    background:#ff6c00;
    color:#fff;
    padding:12px 24px;
    border-radius:8px;
    text-decoration:none;
}

@media(max-width:768px){

    .product-row{
        flex-direction:column;
        align-items:flex-start;
    }

    .order-top{
        flex-direction:column;
    }

    .order-right{
        width:100%;
        display:flex;
        justify-content:space-between;
        align-items:center;
    }

    .order-product-img{
        width:60px;
        height:60px;
    }

    .order-amount{
        font-size:20px;
    }
}

.empty-orders{
    text-align:center;
    padding:80px 20px;
}

.empty-icon{
    width:120px;
    height:120px;
    margin:auto;
    border-radius:50%;
    background:#fff5f5;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:48px;
    color:#ff6b6b;
    margin-bottom:25px;
}

.shop-btn{
    display:inline-flex;
    align-items:center;
    gap:8px;
    background:#ff6b6b;
    color:#fff;
    padding:14px 28px;
    border-radius:50px;
    text-decoration:none;
    margin-top:15px;
}