/* =============================================Product Page ========================================== */
/* Compact Product Enquiry Modal */
.breadcrumb-wrapper .page-heading {
    position: relative;
    padding: 40px 0 36px;
    z-index: 9;
    text-align: center;
}

.product-enquiry-modal .modal-dialog {
    max-width: 560px;
    margin: 20px auto;
}

.product-enquiry-modal .modal-content {
    max-height: calc(100vh - 40px);
    padding: 25px 28px;
    overflow-y: auto;
    border-radius: 18px;
}

.modal-header-content {
    margin-bottom: 16px;
}

.modal-header-content h3 {
    margin-bottom: 6px;
    font-size: 25px;
}

.modal-header-content p {
    max-width: 470px;
    font-size: 12px;
    line-height: 1.5;
}

.selected-product-box {
    margin-bottom: 17px;
    padding: 11px 13px;
}

.selected-product-icon {
    width: 40px;
    height: 40px;
}

.selected-product-box strong {
    font-size: 13px;
}

.enquiry-field label {
    margin-bottom: 5px;
    font-size: 11px;
}

.enquiry-field input {
    height: 44px;
    padding: 10px 13px;
}

.enquiry-field textarea {
    min-height: 72px;
    max-height: 90px;
    padding: 11px 13px;
    resize: none;
}

.submit-enquiry-btn {
    min-height: 46px;
    margin-top: 0;
}

/* Modal scrollbar */

.product-enquiry-modal .modal-content::-webkit-scrollbar {
    width: 5px;
}

.product-enquiry-modal .modal-content::-webkit-scrollbar-thumb {
    background: #c48b17;
    border-radius: 20px;
}

@media (max-width: 575px) {
    .product-enquiry-modal .modal-dialog {
        margin: 12px;
    }

    .product-enquiry-modal .modal-content {
        max-height: calc(100vh - 24px);
        padding: 22px 17px 18px;
    }

    .modal-header-content h3 {
        padding-right: 25px;
        font-size: 21px;
    }

    .modal-header-content p {
        font-size: 11px;
    }

    .selected-product-box {
        margin-bottom: 15px;
    }

    .enquiry-field input {
        height: 42px;
    }

    .enquiry-field textarea {
        min-height: 65px;
    }
}

/* Enquiry Button Reset */

button.product-enquiry-btn {
    width: 100%;
    font-family: inherit;
    cursor: pointer;
    outline: none;
}

/* Product Enquiry Modal */

.product-enquiry-modal .modal-dialog {
    max-width: 620px;
    padding: 15px;
}

.product-enquiry-modal .modal-content {
    position: relative;
    padding: 32px;
    overflow-y: auto;
    overflow-x: hidden;
    background: #ffffff;
    border: 0;
    border-radius: 20px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
}

.modal-close-btn {
    position: absolute;
    z-index: 5;
    top: 18px;
    right: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    color: #111111;
    background: #f3f3f1;
    border: 0;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-close-btn:hover {
    color: #ffffff;
    background: #111111;
    transform: rotate(90deg);
}

.modal-header-content {
    padding-right: 45px;
    margin-bottom: 22px;
}

.modal-small-title {
    display: block;
    margin-bottom: 7px;
    color: #b77c08;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.modal-header-content h3 {
    margin: 0 0 9px;
    color: #111111;
    font-size: 27px;
    line-height: 1.25;
    font-weight: 700;
}

.modal-header-content p {
    margin: 0;
    color: #6c6c6c;
    font-size: 13px;
    line-height: 1.65;
}

/* Selected Product */

.selected-product-box {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 22px;
    padding: 14px 16px;
    background: #f8f6f0;
    border: 1px solid #ece5d5;
    border-radius: 12px;
}

.selected-product-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    color: #ffffff;
    background: #111111;
    border-radius: 10px;
}

.selected-product-box small {
    display: block;
    margin-bottom: 2px;
    color: #888888;
    font-size: 10px;
    line-height: 1.2;
    text-transform: uppercase;
}

.selected-product-box strong {
    display: block;
    color: #111111;
    font-size: 14px;
    line-height: 1.35;
}

.selected-product-box span {
    display: block;
    margin-top: 2px;
    color: #b77c08;
    font-size: 11px;
}

/* Form Fields */

.enquiry-field label {
    display: block;
    margin-bottom: 7px;
    color: #222222;
    font-size: 12px;
    font-weight: 700;
}

.enquiry-field input,
.enquiry-field textarea {
    width: 100%;
    padding: 12px 14px;
    color: #111111;
    background: #ffffff;
    border: 1px solid #dedede;
    border-radius: 9px;
    font-family: inherit;
    font-size: 13px;
    outline: none;
    transition: all 0.3s ease;
}

.enquiry-field textarea {
    resize: vertical;
}

.enquiry-field input:focus,
.enquiry-field textarea:focus {
    border-color: #b77c08;
    box-shadow: 0 0 0 3px rgba(183, 124, 8, 0.1);
}

.submit-enquiry-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    min-height: 50px;
    margin-top: 4px;
    color: #ffffff;
    background: #111111;
    border: 0;
    border-radius: 9px;
    font-family: inherit;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-enquiry-btn:hover {
    background: #b77c08;
    transform: translateY(-2px);
}

@media (max-width: 575px) {
    .product-enquiry-modal .modal-dialog {
        margin: 8px;
        padding: 0;
    }

    .product-enquiry-modal .modal-content {
        padding: 25px 18px 20px;
        border-radius: 15px;
    }

    .modal-header-content h3 {
        font-size: 23px;
    }

    .modal-header-content {
        padding-right: 35px;
    }

    .modal-close-btn {
        top: 13px;
        right: 13px;
        width: 34px;
        height: 34px;
    }
}

.b2b-products-section {
    position: relative;
    padding: 70px 0;
    background: #f5f5f3;
}

.b2b-product-heading {
    max-width: 650px;
    margin: 0 auto 38px;
}

.b2b-product-heading>span {
    display: inline-block;
    margin-bottom: 7px;
    color: #c48b17;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2.2px;
    text-transform: uppercase;
}

.b2b-product-heading h2 {
    margin: 0 0 12px;
    color: #111111;
    font-size: 40px;
    line-height: 1.2;
    font-weight: 700;
}

.b2b-product-heading p {
    margin: 0;
    color: #707070;
    font-size: 15px;
    line-height: 1.7;
}

/* Product Card */

.b2b-product-card {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 12px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #e7e7e4;
    border-radius: 18px;
    /* box-shadow: 0 8px 28px rgba(0, 0, 0, 0.055);
            transition:
                transform 0.35s ease,
                box-shadow 0.35s ease,
                border-color 0.35s ease; */
}

.b2b-product-card:hover {
    transform: translateY(-7px);
    border-color: rgba(196, 139, 23, 0.45);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.11);
}

/* Product Image */

.b2b-product-image {
    position: relative;
    display: block;
    height: 245px;
    overflow: hidden;
    background:
        radial-gradient(circle at center, #ffffff 0%, #f6f6f4 100%);
    border: 1px solid #eeeeeb;
    border-radius: 13px;
}

/* Previous dark overlay removed */

.b2b-product-image::after {
    display: none;
}

.b2b-product-image img {
    display: block;
    width: 100%;
    height: 100%;
    padding: 22px;
    object-fit: contain;
    transition: transform 0.45s ease;
}

.b2b-product-card:hover .b2b-product-image img {
    transform: scale(1.055);
}

/* Product Badge */

.product-badge {
    position: absolute;
    z-index: 3;
    top: 13px;
    left: 13px;
    padding: 7px 11px;
    color: #111111;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid #e5e5e2;
    border-radius: 30px;
    box-shadow: 0 5px 16px rgba(0, 0, 0, 0.07);
    font-size: 10px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    backdrop-filter: blur(6px);
}

.product-badge::before {
    content: "";
    display: inline-block;
    width: 6px;
    height: 6px;
    margin-right: 6px;
    background: #c48b17;
    border-radius: 50%;
    vertical-align: 1px;
}

/* Old image hover text hidden */

.image-view-text {
    display: none;
}

/* Product Content */

.b2b-product-content {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 19px 9px 8px;
}

.product-category {
    display: block;
    margin-bottom: 8px;
    color: #b77c08;
    font-size: 11px;
    line-height: 1.3;
    font-weight: 700;
    letter-spacing: 1.15px;
    text-transform: uppercase;
}

.b2b-product-content h3 {
    min-height: 25px;
    margin: 0 0 9px;
    overflow: hidden;
    color: #111111;
    font-size: 18px;
    line-height: 1.4;
    font-weight: 700;

    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.b2b-product-content h3 a {
    color: #111111;
    transition: color 0.3s ease;
}

.b2b-product-content h3 a:hover {
    color: #b77c08;
}

/* Product Information */

.product-info {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-bottom: 18px;
    padding: 0;
    border: 0;
}

.product-info span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    width: auto;
    padding: 7px 9px;
    color: #666666;
    background: #f7f6f2;
    border: 1px solid #eceae3;
    border-radius: 6px;
    font-size: 10.5px;
    line-height: 1.3;
    white-space: nowrap;
}

.product-info i {
    width: auto;
    color: #c48b17;
    font-size: 10px;
}

/* Buttons */

.product-card-buttons {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: auto;
}

/* Enquiry button shown first */

.product-enquiry-btn {
    order: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    min-height: 46px;
    padding: 11px 16px;
    color: #ffffff;
    background: #111111;
    border: 1px solid #111111;
    border-radius: 8px;
    font-size: 12px;
    line-height: 1;
    font-weight: 700;
    text-align: center;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.product-enquiry-btn i {
    color: #d7a53f;
    font-size: 13px;
}

.product-enquiry-btn:hover {
    color: #ffffff;
    background: #b77c08;
    border-color: #b77c08;
}

.product-enquiry-btn:hover i {
    color: #ffffff;
}

/* View details as clean secondary action */

.product-details-btn {
    order: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    width: 100%;
    min-height: 39px;
    padding: 8px 12px;
    color: #222222;
    background: transparent;
    border: 0;
    border-radius: 7px;
    font-size: 12px;
    line-height: 1;
    font-weight: 700;
    text-align: center;
    white-space: nowrap;
    transition: all 0.3s ease;
}



.product-details-btn:hover {
    color: #b77c08;
    background: #faf7f0;
}

.product-details-btn:hover::after {
    transform: translateX(4px);
}

/* Laptop */

@media (max-width: 1199px) {
    .b2b-product-image {
        height: 255px;
    }
}

/* Tablet */

@media (max-width: 991px) {
    .b2b-products-section {
        padding: 60px 0;
    }

    .b2b-product-heading h2 {
        font-size: 35px;
    }

    .b2b-product-image {
        height: 290px;
    }
}

/* Mobile */

@media (max-width: 575px) {
    .b2b-products-section {
        padding: 45px 0;
    }

    .b2b-product-heading {
        margin-bottom: 28px;
    }

    .b2b-product-heading h2 {
        font-size: 29px;
    }

    .b2b-product-heading p {
        font-size: 14px;
    }

    .b2b-product-card {
        max-width: 390px;
        margin: 0 auto;
        border-radius: 15px;
    }

    .b2b-product-image {
        height: 290px;
    }

    .b2b-product-image img {
        padding: 20px;
    }

    .b2b-product-content {
        padding: 18px 8px 7px;
    }

    .b2b-product-content h3 {
        min-height: auto;
        font-size: 18px;
    }

    .product-info span {
        font-size: 10px;
    }

    .product-enquiry-btn {
        min-height: 45px;
        font-size: 12px;
    }
}

/* =============================================Product Page ========================================== */


/* =============================================Product  Details Page ========================================== */
/* =========================================
   PREMIUM B2B PRODUCT DETAIL PAGE
========================================= */

.hpd-section {
    --hpd-gold: #b77c08;
    --hpd-black: #111111;
    --hpd-light: #f3f2ee;

    padding: 65px 0;
    background:
        radial-gradient(circle at top left,
            rgba(183, 124, 8, 0.08),
            transparent 30%),
        var(--hpd-light);
}

/* Main Product Card */

.hpd-main-card {
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #e3e1da;
    border-radius: 24px;
    box-shadow: 0 25px 70px rgba(26, 22, 14, 0.09);
}


.hpd-image-stage::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.08),
            transparent 24%,
            transparent 75%,
            rgba(0, 0, 0, 0.14));
}

.hpd-premium-badge {
    position: absolute;
    z-index: 3;
    top: 18px;
    left: 18px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 14px;
    color: #ffffff;
    background: rgba(17, 17, 17, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    backdrop-filter: blur(8px);
}

.hpd-premium-badge i {
    color: #d5a33a;
}

.hpd-image-count {
    position: absolute;
    z-index: 3;
    right: 18px;
    bottom: 17px;
    display: flex;
    align-items: baseline;
    gap: 3px;
    padding: 8px 12px;
    color: #ffffff;
    background: rgba(17, 17, 17, 0.76);
    border-radius: 30px;
    backdrop-filter: blur(8px);
}

.hpd-image-count strong {
    font-size: 14px;
}

.hpd-image-count span {
    color: rgba(255, 255, 255, 0.65);
    font-size: 10px;
}

/* =========================================
   PRODUCT INFORMATION
========================================= */

.hpd-info-panel {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: 43px 42px 34px;
    background: #ffffff;
}

.hpd-meta-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 17px;
}

.hpd-category {
    color: var(--hpd-gold);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.hpd-stock {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 11px;
    color: #147942;
    background: #ecf8f1;
    border: 1px solid #ceeada;
    border-radius: 30px;
    font-size: 10px;
    font-weight: 700;
}

.hpd-product-title {
    max-width: 500px;
    margin: 0 0 17px;
    color: var(--hpd-black);
    font-size: clamp(34px, 3.2vw, 44px);
    line-height: 1.08;
    font-weight: 750;
    letter-spacing: -1.5px;
    text-transform: none;
}

.hpd-product-code {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    gap: 9px;
    margin-bottom: 20px;
    padding: 7px 10px;
    background: #f3f1eb;
    border-radius: 7px;
}

.hpd-product-code span {
    color: #777777;
    font-size: 10px;
}

.hpd-product-code strong {
    color: #111111;
    font-size: 11px;
}

.hpd-short-description {
    margin: 0 0 23px;
    color: #66635e;
    font-size: 14px;
    line-height: 1.75;
    text-transform: none;
}

/* Option Blocks */

.hpd-option-block {
    padding: 19px 0;
    border-top: 1px solid #e6e3dc;
}

.hpd-option-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 13px;
}

.hpd-option-title>div {
    display: flex;
    align-items: center;
    gap: 9px;
}

.hpd-option-title>div>span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 23px;
    height: 23px;
    color: #ffffff;
    background: var(--hpd-black);
    border-radius: 50%;
    font-size: 8px;
    font-weight: 700;
}

.hpd-option-title h4 {
    margin: 0;
    color: #111111;
    font-size: 13px;
    font-weight: 700;
}

.hpd-option-title small {
    color: #88847c;
    font-size: 10px;
}

/* Size Buttons */

.hpd-size-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.hpd-size {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 40px;
    color: #222222;
    background: #ffffff;
    border: 1px solid #d9d6ce;
    border-radius: 8px;
    font-family: inherit;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s ease;
}

.hpd-size:hover,
.hpd-size.active {
    color: #ffffff;
    background: var(--hpd-black);
    border-color: var(--hpd-black);
    transform: translateY(-2px);
}

/* Color Buttons */

.hpd-color-list {
    display: flex;
    align-items: center;
    gap: 13px;
}

.hpd-color {
    width: 29px;
    height: 29px;
    padding: 0;
    background: var(--hpd-color);
    border: 4px solid #ffffff;
    border-radius: 50%;
    box-shadow: 0 0 0 1px #c9c6be;
    cursor: pointer;
    transition: all 0.25s ease;
}

.hpd-color:hover,
.hpd-color.active {
    box-shadow:
        0 0 0 2px #111111,
        0 5px 12px rgba(0, 0, 0, 0.16);
    transform: scale(1.08);
}

/* Bulk Information */

.hpd-order-info {
    margin: 5px 0 18px;
    padding: 13px 15px;
    background: #faf6ed;
    border: 1px solid #eadcbd;
    border-radius: 11px;
}

.hpd-order-info>div {
    display: flex;
    align-items: center;
    gap: 12px;
}

.hpd-order-info i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 37px;
    height: 37px;
    flex-shrink: 0;
    color: #ffffff;
    background: var(--hpd-gold);
    border-radius: 9px;
}

.hpd-order-info span {
    display: block;
    color: #777066;
    font-size: 10px;
    line-height: 1.4;
}

.hpd-order-info strong {
    display: block;
    margin-bottom: 2px;
    color: #111111;
    font-size: 12px;
}

/* Enquiry Button */

.hpd-enquiry-btn.product-enquiry-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 56px;
    padding: 14px 18px;
    color: #ffffff;
    background: var(--hpd-black);
    border: 1px solid var(--hpd-black);
    border-radius: 10px;
    font-family: inherit;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hpd-enquiry-btn>span {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.hpd-enquiry-btn>span i {
    color: #d2a13b;
}

.hpd-enquiry-btn:hover {
    color: #ffffff;
    background: var(--hpd-gold);
    border-color: var(--hpd-gold);
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(183, 124, 8, 0.23);
}

.hpd-enquiry-btn:hover i {
    color: #ffffff;
}

.hpd-enquiry-note {
    margin: 9px 0 8px;
    color: #918d85;
    font-size: 13.5px;
    line-height: 1.5;
    text-align: center;
    text-transform: none;
}

/* =========================================
   DESCRIPTION SECTION
========================================= */

.hpd-description-card {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(300px, 0.75fr);
    gap: 45px;
    margin-top: 26px;
    padding: 42px;
    background: #ffffff;
    border: 1px solid #e3e1da;
    border-radius: 22px;
    box-shadow: 0 16px 45px rgba(26, 22, 14, 0.055);
}

.hpd-section-label {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 12px;
    color: var(--hpd-gold);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.hpd-section-label::before {
    content: "";
    width: 30px;
    height: 2px;
    background: var(--hpd-gold);
}

.hpd-description-content h2 {
    max-width: 650px;
    margin: 0 0 22px;
    color: #111111;
    font-size: 31px;
    line-height: 1.25;
    font-weight: 700;
    letter-spacing: -0.5px;
    text-transform: none;
}

.hpd-description-content p {
    margin: 0 0 15px;
    color: #66635e;
    font-size: 13.5px;
    line-height: 1.8;
    text-transform: none;
}

.hpd-feature-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 18px;
    margin-top: 24px;
}

.hpd-feature-list>div {
    display: flex;
    align-items: center;
    gap: 9px;
    color: #282622;
    font-size: 12px;
    font-weight: 600;
}

.hpd-feature-list i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 21px;
    height: 21px;
    flex-shrink: 0;
    color: #ffffff;
    background: var(--hpd-gold);
    border-radius: 50%;
    font-size: 8px;
}

/* Specifications */

.hpd-specification-card {
    padding: 26px;
    background: #f5f4f0;
    border: 1px solid #e1dfd7;
    border-radius: 15px;
}

.hpd-specification-header {
    margin-bottom: 15px;
}

.hpd-specification-header span {
    display: block;
    margin-bottom: 4px;
    color: var(--hpd-gold);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.3px;
    text-transform: uppercase;
}

.hpd-specification-header h3 {
    margin: 0;
    color: #111111;
    font-size: 18px;
    font-weight: 700;
}

.hpd-specification-card ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.hpd-specification-card li {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    padding: 12px 0;
    border-bottom: 1px solid #dddad1;
}

.hpd-specification-card li:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.hpd-specification-card li span {
    color: #7b7770;
    font-size: 10.5px;
}

.hpd-specification-card li strong {
    color: #1b1a18;
    font-size: 10.5px;
    text-align: right;
}

.hpd-specification-card .hpd-available {
    color: #147942;
}

/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {
    .hpd-section {
        padding: 45px 0;
    }

    .hpd-gallery-wrap {
        grid-template-columns: 75px minmax(0, 1fr);
    }

    .hpd-image-stage {
        height: 520px;
    }

    .hpd-info-panel {
        padding: 35px 30px;
        border-top: 1px solid #e4e1da;
    }

    .hpd-description-card {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 34px;
    }
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 575px) {
    .hpd-section {
        padding: 25px 0 38px;
    }

    .hpd-main-card {
        border-radius: 16px;
    }

    .hpd-gallery-wrap {
        display: flex;
        flex-direction: column-reverse;
        gap: 9px;
        padding: 11px;
    }

    .hpd-thumb-rail {
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: none;
        gap: 7px;
    }

    .hpd-thumb {
        height: 68px;
        border-radius: 8px;
    }

    .hpd-thumb.active::after {
        display: none;
    }

    .hpd-image-stage {
        height: 360px;
        border-radius: 12px;
    }

    .hpd-premium-badge {
        top: 12px;
        left: 12px;
        padding: 7px 10px;
        font-size: 8px;
    }

    .hpd-image-count {
        right: 12px;
        bottom: 12px;
    }

    .hpd-info-panel {
        padding: 25px 18px 22px;
    }

    .hpd-meta-row {
        align-items: flex-start;
        margin-bottom: 14px;
    }

    .hpd-product-title {
        margin-bottom: 13px;
        font-size: 30px;
        line-height: 1.12;
        letter-spacing: -0.7px;
    }

    .hpd-short-description {
        font-size: 13px;
        line-height: 1.7;
    }

    .hpd-option-block {
        padding: 17px 0;
    }

    .hpd-description-card {
        margin-top: 16px;
        padding: 25px 18px;
        border-radius: 16px;
    }

    .hpd-description-content h2 {
        font-size: 25px;
    }

    .hpd-feature-list {
        grid-template-columns: 1fr;
    }

    .hpd-specification-card {
        padding: 20px 17px;
    }
}

/* =========================================
   UPDATED PRODUCT GALLERY
========================================= */

.hpd-gallery-wrap {
    display: grid;
    grid-template-columns: 92px minmax(0, 1fr);
    align-items: stretch;
    gap: 16px;
    height: 100%;
    padding: 24px;
    background: #eae9e4;
}

/* Square Thumbnail Rail */

.hpd-thumb-rail {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
}

/* Square Thumbnail */

.hpd-thumb {
    position: relative;
    display: block;
    width: 82px;
    height: 82px;
    flex: 0 0 82px;
    padding: 5px;
    overflow: visible;
    background: #ffffff;
    border: 2px solid transparent;
    border-radius: 12px;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(22, 18, 11, 0.07);
    transition:
        border-color 0.3s ease,
        box-shadow 0.3s ease,
        transform 0.3s ease;
}

.hpd-thumb img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 8px;
}

/* Thumbnail Hover and Active */

.hpd-thumb:hover,
.hpd-thumb.active {
    border-color: var(--hpd-gold);
    box-shadow: 0 9px 22px rgba(31, 25, 15, 0.16);
    transform: translateX(3px);
}

.hpd-thumb.active::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -8px;
    width: 12px;
    height: 12px;
    background: var(--hpd-gold);
    transform: translateY(-50%) rotate(45deg);
}

/* Main Product Image */

.hpd-image-stage {
    position: relative;
    width: 100%;
    height: 590px;
    overflow: hidden;
    background: #ffffff;
    border-radius: 18px;
}

.hpd-image-stage>img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition:
        opacity 0.25s ease,
        transform 0.5s ease;
}

.hpd-image-stage:hover>img {
    transform: scale(1.025);
}

/* Optional Overlay */

.hpd-image-stage::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.07),
            transparent 24%,
            transparent 76%,
            rgba(0, 0, 0, 0.13));
}

/* Premium Badge */

.hpd-premium-badge {
    position: absolute;
    z-index: 3;
    top: 18px;
    left: 18px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 14px;
    color: #ffffff;
    background: rgba(17, 17, 17, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    backdrop-filter: blur(8px);
}

.hpd-premium-badge i {
    color: #d5a33a;
}

/* Image Counter */

.hpd-image-count {
    position: absolute;
    z-index: 3;
    right: 18px;
    bottom: 17px;
    display: flex;
    align-items: baseline;
    gap: 3px;
    padding: 8px 12px;
    color: #ffffff;
    background: rgba(17, 17, 17, 0.76);
    border-radius: 30px;
    backdrop-filter: blur(8px);
}

.hpd-image-count strong {
    font-size: 14px;
}

.hpd-image-count span {
    color: rgba(255, 255, 255, 0.65);
    font-size: 10px;
}

/* =========================================
   LAPTOP
========================================= */

@media (max-width: 1199px) {

    .hpd-gallery-wrap {
        grid-template-columns: 82px minmax(0, 1fr);
        gap: 13px;
        padding: 18px;
    }

    .hpd-thumb {
        width: 74px;
        height: 74px;
        flex-basis: 74px;
    }

    .hpd-image-stage {
        height: 540px;
    }
}

/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .hpd-gallery-wrap {
        grid-template-columns: 86px minmax(0, 1fr);
        padding: 20px;
    }

    .hpd-thumb {
        width: 78px;
        height: 78px;
        flex-basis: 78px;
    }

    .hpd-image-stage {
        height: 520px;
    }
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 575px) {

    .hpd-gallery-wrap {
        display: flex;
        flex-direction: column-reverse;
        gap: 9px;
        padding: 10px;
    }

    .hpd-thumb-rail {
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 7px;
        width: 100%;
    }

    .hpd-thumb {
        width: 100%;
        height: auto;
        aspect-ratio: 1 / 1;
        flex: none;
        padding: 4px;
        overflow: hidden;
        border-radius: 9px;
        box-shadow: none;
    }

    .hpd-thumb img {
        border-radius: 6px;
    }

    .hpd-thumb:hover,
    .hpd-thumb.active {
        transform: translateY(-2px);
        box-shadow: 0 6px 14px rgba(31, 25, 15, 0.12);
    }

    .hpd-thumb.active::after {
        display: none;
    }

    .hpd-image-stage {
        height: 360px;
        border-radius: 12px;
    }

    .hpd-premium-badge {
        top: 12px;
        left: 12px;
        padding: 7px 10px;
        font-size: 8px;
    }

    .hpd-image-count {
        right: 12px;
        bottom: 12px;
        padding: 7px 10px;
    }
}

/* =============================================Product Details  Page ========================================== */



/* =============================================Index  Page ========================================== */
.section-padding {
    padding: 29px 0;
}

@media (max-width: 1600px) {
    .header-1.header-2 .header-main .header-left {
        gap: 37px;
    }
}

.modern-about-section {
    position: relative;
    padding: 85px 0;
    overflow: hidden;
    background:
        radial-gradient(circle at top right,
            rgba(205, 161, 72, 0.10),
            transparent 32%),
        #ffffff;
}

/* Image Area */

.modern-about-image {
    position: relative;
    max-width: 570px;
    min-height: 540px;
    padding: 12px;
    border-radius: 6px;
    background: #ffffff;
    box-shadow: 0 25px 65px rgba(0, 0, 0, 0.13);
}

.modern-about-image::before {
    content: "";
    position: absolute;
    width: 160px;
    height: 160px;
    left: -22px;
    top: -22px;
    z-index: -1;
    border-top: 4px solid #c89b3c;
    border-left: 4px solid #c89b3c;
}

.modern-about-image::after {
    content: "";
    position: absolute;
    width: 110px;
    height: 110px;
    right: -17px;
    bottom: -17px;
    z-index: -1;
    background-image: radial-gradient(#c89b3c 1.8px, transparent 1.8px);
    background-size: 11px 11px;
    opacity: 0.45;
}

.modern-about-image img {
    display: block;
    width: 100%;
    height: 516px;
    object-fit: cover;
    border-radius: 3px;
}

/* Image Floating Label */

.about-image-label {
    position: absolute;
    left: 35px;
    bottom: 35px;
    display: flex;
    align-items: center;
    gap: 13px;
    min-width: 210px;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.94);
    border-left: 4px solid #c89b3c;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.16);
    backdrop-filter: blur(8px);
}

.about-image-label .label-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 43px;
    height: 43px;
    flex-shrink: 0;
    color: #ffffff;
    background: #111111;
    border-radius: 50%;
}

.about-image-label small {
    display: block;
    margin-bottom: 2px;
    color: #777777;
    font-size: 11px;
    line-height: 1.2;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.about-image-label strong {
    display: block;
    color: #111111;
    font-size: 16px;
    line-height: 1.2;
}

/* Content */

.modern-about-content {
    padding-left: 10px;
}

.modern-section-title .sub-title {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 13px;
    color: #c08d27;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
}

.modern-section-title .sub-title::before {
    content: "";
    width: 35px;
    height: 2px;
    background: #c08d27;
}

.modern-section-title h2 {
    max-width: 570px;
    margin-bottom: 24px;
    color: #111111;
    font-size: clamp(35px, 4vw, 52px);
    line-height: 1.12;
    font-weight: 700;
    letter-spacing: -1.4px;
}

.modern-section-title h2 span {
    color: #c08d27;
}

.modern-about-content .about-text p {
    margin-bottom: 16px;
    color: #626262;
    font-size: 15.5px;
    line-height: 1.75;
    text-transform: none;
}

/* Feature Points */

.about-features {
    display: flex;
    flex-wrap: wrap;
    gap: 11px;
    margin: 25px 0 30px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 14px;
    color: #222222;
    font-size: 13px;
    font-weight: 600;
    background: #f7f4ed;
    border: 1px solid rgba(192, 141, 39, 0.22);
    border-radius: 3px;
}

.about-feature i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 19px;
    height: 19px;
    color: #ffffff;
    font-size: 9px;
    background: #c08d27;
    border-radius: 50%;
}

/* Buttons */

.modern-about-content .about-btn {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 25px;
}

.about-main-btn {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 25px !important;
    color: #ffffff !important;
    background: #111111 !important;
    border: 1px solid #111111 !important;
    transition: all 0.3s ease;
}

.about-main-btn:hover {
    color: #111111 !important;
    background: #c89b3c !important;
    border-color: #c89b3c !important;
    transform: translateY(-3px);
}

.about-link-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 0;
    color: #111111;
    font-size: 15px;
    font-weight: 700;
}

.about-link-btn::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: #111111;
    transition: width 0.3s ease;
}

.about-link-btn:hover {
    color: #c08d27;
}

.about-link-btn:hover::after {
    width: 45%;
    background: #c08d27;
}

/* Tablet */

@media (max-width: 991px) {
    .modern-about-section {
        padding: 65px 0;
    }

    .modern-about-image {
        max-width: 100%;
        min-height: auto;
    }

    .modern-about-image img {
        height: 520px;
    }

    .modern-about-content {
        padding: 15px 0 0;
    }
}

/* Mobile */

@media (max-width: 575px) {
    .modern-about-section {
        padding: 45px 0;
    }

    .modern-about-image {
        padding: 7px;
        box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
    }

    .modern-about-image::before {
        width: 90px;
        height: 90px;
        left: -8px;
        top: -8px;
        border-width: 3px;
    }

    .modern-about-image::after {
        display: none;
    }

    .modern-about-image img {
        height: 390px;
    }

    .about-image-label {
        left: 20px;
        right: 20px;
        bottom: 20px;
        min-width: auto;
        padding: 12px 14px;
    }

    .modern-section-title h2 {
        margin-bottom: 18px;
        font-size: 32px;
        letter-spacing: -0.7px;
    }

    .modern-about-content .about-text p {
        margin-bottom: 14px;
        font-size: 14.5px;
        line-height: 1.7;
    }

    .about-features {
        gap: 8px;
        margin: 20px 0 25px;
    }

    .about-feature {
        padding: 8px 11px;
        font-size: 12px;
    }

    .modern-about-content .about-btn {
        gap: 18px;
    }

    .about-main-btn {
        padding: 13px 20px !important;
    }
}

/* =============================================Index  Page ========================================== */


/* =============================================Contact  Page ========================================== */
.contact-info-box .icon {
    max-width: 80px;
    width: 100%;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    text-align: center;
    background-color: #d39b3d;
    color: var(--white);
    font-size: 25px;
    transition: all 0.4s ease-in-out;
}

.contact-info-box {
    margin-top: 30px;
    background-color: #f5e3c3;
    padding: 30px 16px;
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    z-index: 9;
}

.contact-info-box .content p a {
    color: #000000;
    font-size: 16px;
    font-weight: 600;
}

.contact-info-box .content p {
    line-height: 162.5%;
    font-size: 15px;
    font-weight: 600;
    color: black;
}

/* =========================================
   MODERN CONTACT SECTION
========================================= */

.modern-contact-section {
    padding: 75px 0;
    background:
        radial-gradient(circle at top right,
            rgba(183, 124, 8, 0.08),
            transparent 32%),
        #f4f3ef;
}

.modern-contact-wrapper {
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #e3e1da;
    border-radius: 24px;
    box-shadow: 0 25px 70px rgba(24, 20, 12, 0.1);
}

/* Map */

.modern-contact-map {
    position: relative;
    height: 100%;
    min-height: 650px;
    overflow: hidden;
    background: #e8e8e5;
}

.modern-contact-map iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 650px;
    border: 0;
    filter: saturate(0.8);
}

/* Map Information Card */

.map-contact-card {
    position: absolute;
    left: 25px;
    right: 25px;
    bottom: 25px;
    padding: 22px;
    color: #ffffff;
    background: rgba(17, 17, 17, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 16px;
    backdrop-filter: blur(12px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.24);
}

.map-card-label {
    display: block;
    margin-bottom: 5px;
    color: #d4a33b;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.7px;
    text-transform: uppercase;
}

.map-contact-card h3 {
    margin: 0 0 17px;
    color: #ffffff;
    font-size: 22px;
    font-weight: 700;
}

.map-contact-item {
    display: flex;
    align-items: center;
    gap: 11px;
    margin-top: 11px;
}

.map-contact-item>i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    flex-shrink: 0;
    color: #111111;
    background: #d2a03a;
    border-radius: 9px;
}

.map-contact-item small {
    display: block;
    margin-bottom: 1px;
    color: rgba(255, 255, 255, 0.58);
    font-size: 9px;
    text-transform: uppercase;
}

.map-contact-item a {
    color: #ffffff;
    font-size: 12px;
    font-weight: 600;
}

.map-contact-item a:hover {
    color: #d4a33b;
}

/* Form Area */

.modern-contact-form-area {
    min-height: 650px;
    padding: 48px 44px 38px;
    background: #ffffff;
}

.contact-form-heading {
    margin-bottom: 28px;
}

.contact-form-heading>span {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 10px;
    color: #b77c08;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.contact-form-heading>span::before {
    content: "";
    width: 30px;
    height: 2px;
    background: #b77c08;
}

.contact-form-heading h2 {
    margin: 0 0 12px;
    color: #111111;
    font-size: clamp(32px, 4vw, 43px);
    line-height: 1.15;
    font-weight: 750;
    letter-spacing: -1px;
    text-transform: none;
}

.contact-form-heading p {
    max-width: 520px;
    margin: 0;
    color: #706d67;
    font-size: 13px;
    line-height: 1.7;
    text-transform: none;
}

/* Fields */

.modern-form-field label {
    display: block;
    margin-bottom: 7px;
    color: #24221f;
    font-size: 11px;
    font-weight: 700;
}

.modern-form-field label span {
    color: #b77c08;
}

.input-wrap {
    position: relative;
}

.input-wrap>i:first-child {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 15px;
    color: #a27b2b;
    font-size: 13px;
    transform: translateY(-50%);
    pointer-events: none;
}

.modern-form-field input,
.modern-form-field select,
.modern-form-field textarea {
    display: block;
    width: 100%;
    margin: 0;
    color: #111111;
    background: #fafaf8;
    border: 1px solid #dedcd5;
    border-radius: 10px;
    font-family: inherit;
    font-size: 12px;
    outline: none;
    box-shadow: none;
    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease;
}

.modern-form-field input,
.modern-form-field select {
    height: 50px;
    padding: 0 42px;
}

.modern-form-field textarea {
    min-height: 120px;
    padding: 15px 15px 15px 42px;
    resize: vertical;
}

.textarea-wrap>i:first-child {
    top: 19px;
    transform: none;
}

.modern-form-field input::placeholder,
.modern-form-field textarea::placeholder {
    color: #98958e;
}

.modern-form-field input:focus,
.modern-form-field select:focus,
.modern-form-field textarea:focus {
    background: #ffffff;
    border-color: #b77c08;
    box-shadow: 0 0 0 3px rgba(183, 124, 8, 0.1);
}

/* Select */

.modern-form-field select {
    appearance: none;
    cursor: pointer;
}

.select-arrow {
    position: absolute !important;
    top: 50% !important;
    right: 15px !important;
    left: auto !important;
    color: #333333 !important;
    font-size: 10px !important;
    transform: translateY(-50%) !important;
    pointer-events: none;
}

/* Submit Button */

.modern-contact-submit {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 53px;
    padding: 13px 18px;
    color: #ffffff;
    background: #111111;
    border: 1px solid #111111;
    border-radius: 10px;
    font-family: inherit;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modern-contact-submit:hover {
    color: #ffffff;
    background: #b77c08;
    border-color: #b77c08;
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(183, 124, 8, 0.22);
}

.modern-contact-submit:disabled {
    cursor: not-allowed;
    opacity: 0.7;
    transform: none;
}

.contact-form-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    margin: 15px 0 0;
    color: #918e87;
    font-size: 9.5px;
    line-height: 1.5;
    text-align: center;
    text-transform: none;
}

.contact-form-note i {
    color: #b77c08;
}

/* Tablet */

@media (max-width: 991px) {
    .modern-contact-section {
        padding: 55px 0;
    }

    .modern-contact-map,
    .modern-contact-map iframe {
        min-height: 500px;
    }

    .modern-contact-form-area {
        min-height: auto;
        padding: 40px 32px;
    }
}

/* Mobile */

@media (max-width: 575px) {
    .modern-contact-section {
        padding: 30px 0 42px;
    }

    .modern-contact-wrapper {
        border-radius: 16px;
    }

    .modern-contact-map,
    .modern-contact-map iframe {
        min-height: 420px;
    }

    .map-contact-card {
        left: 14px;
        right: 14px;
        bottom: 14px;
        padding: 17px;
        border-radius: 12px;
    }

    .map-contact-card h3 {
        font-size: 18px;
    }

    .modern-contact-form-area {
        padding: 30px 18px 24px;
    }

    .contact-form-heading {
        margin-bottom: 23px;
    }

    .contact-form-heading h2 {
        font-size: 30px;
    }

    .modern-form-field input,
    .modern-form-field select {
        height: 48px;
    }

    .modern-form-field textarea {
        min-height: 105px;
    }
}

/* =============================================Contact  Page ========================================== */

.testimonial-card-items .client-info .info-content .star {
    font-size: 14px;
    color: #d6a243;
    margin-top: 5px;
}

.news-box-items-2 .content .link-btn:hover {
    color: #d19c3f;
}


.footer-widget-wrapper .contact-info-area {
    max-width: 100%;
    margin-left: auto;
}

.footer-section .footer-widget-wrapper .row {
    align-items: flex-start !important;
}

.footer-section .single-widget-items {
    height: auto !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Logo Section */

.footer-section .footer-brand-widget {
    max-width: 280px;
}

.footer-section .footer-logo {
    display: inline-block;
    margin: 0 0 12px !important;
    padding: 0 !important;
}

.footer-section .footer-logo img {
    display: block;
    width: 210px;
    max-width: 100%;
    height: auto;
}

.footer-section .footer-content {
    margin: 0;
    padding: 0;
}

.footer-section .footer-content p {
    margin: 0;
}

.footer-section .footer-address {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    margin: 0 !important;
    font-size: 14px;
    line-height: 1.7;
}

.footer-section .footer-address i {
    margin-top: 5px;
    color: #d39b3d;
    font-size: 14px;
}

.footer-section .footer-address span {
    display: block;
}

/* Social Links */

.footer-section .social-icon {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 18px !important;
}



.footer-section .social-icon a:hover {
    color: #ffffff;
    background: #d39b3d;
    border-color: #d39b3d;
    transform: translateY(-3px);
}

/* Widget Headings */

.footer-section .widget-head {
    margin: 0 0 19px !important;
    padding: 0 !important;
}

.footer-section .widget-head h3 {
    position: relative;
    display: inline-block;
    margin: 0;
    padding-bottom: 10px;
    font-size: 18px;
    line-height: 1.3;
}

.footer-section .widget-head h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 32px;
    height: 2px;
    background: #d39b3d;
}

/* Quick and Legal Links */

.footer-section .gt-list-area {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-section .gt-list-area li {
    margin: 0 0 11px !important;
    padding: 0 !important;
}

.footer-section .gt-list-area li:last-child {
    margin-bottom: 0 !important;
}

.footer-section .gt-list-area li a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 14px;
    line-height: 1.5;
    transition: all 0.25s ease;
}

.footer-section .gt-list-area li a i {
    color: #d39b3d;
    font-size: 8px;
}

.footer-section .gt-list-area li a:hover {
    color: #d39b3d !important;
    transform: translateX(4px);
}

/* Contact Info */

.footer-section .contact-info {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px !important;
    width: 100%;
}

.footer-section .contact-info .info-items {
    display: grid !important;
    grid-template-columns: 40px minmax(0, 1fr);
    align-items: flex-start;
    gap: 11px;
    min-width: 0;
    margin: 0 !important;
    padding: 14px !important;
    border: 1px solid rgba(0, 0, 0, 0.09);
    border-radius: 10px;
}

.footer-section .contact-info .info-items:last-child {
    grid-column: 1 / -1;
}

.footer-section .info-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: #ffffff;
    background: #d39b3d;
    border-radius: 8px;
    font-size: 13px;
}

.footer-section .info-content {
    min-width: 0;
}

.footer-section .contact-info .info-items p {
    margin: 0 0 4px !important;
    color: #888888;
    font-size: 10px;
    line-height: 1.3;
}

.footer-section .contact-info .info-items a {
    display: block;
    max-width: 100% !important;
    color: #111111;
    font-size: 13px;
    line-height: 1.5;
    font-weight: 600;
    text-decoration: none;
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: normal;
}

.footer-section .contact-info .info-items a:hover {
    color: #d39b3d;
}

.footer-section .contact-info .info-items strong {
    display: block;
    margin-bottom: 2px;
    color: #111111;
    font-size: 12px;
    line-height: 1.4;
}

.footer-section .contact-info .info-items span {
    display: block;
    color: #777777;
    font-size: 11px;
    line-height: 1.4;
}

.footer-section .footer-bottom {
    width: 100%;
    margin: 0 !important;
    background-color: #dba840;
    padding: 0 !important;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

/* Container alignment */

.footer-section .footer-bottom .container {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

/* Main bottom row */

.footer-section .footer-bottom-wrapper {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 25px;

    width: 100%;
    min-height: auto !important;
    margin: 0 !important;
    padding: 20px 0 !important;
}

/* Copyright */

.footer-section .footer-bottom-wrapper>p {
    margin: 0 !important;
    padding: 0 !important;

    color: #111111;
    font-size: 17px;
    line-height: 1.5;
    font-weight: 400;
    text-transform: none !important;
}

.footer-section .footer-bottom-wrapper>p strong {
    color: #111111;
    font-weight: 700;
}

/* Bottom links */

.footer-section .footer-bottom-links {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 12px;

    margin: 0 !important;
    padding: 0 !important;
}

.footer-section .footer-bottom-links a {
    display: inline-flex;
    align-items: center;

    margin: 0 !important;
    padding: 0 !important;

    color: #111111;
    font-size: 17px;
    line-height: 1.5;
    font-weight: 500;
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.25s ease;
}

.footer-section .footer-bottom-links a:hover {
    color: #ffffff;
}

/* Separator */

.footer-section .footer-bottom-links>span {
    display: block !important;
    width: 1px !important;
    height: 14px !important;
    margin: 0 !important;

    background: rgba(0, 0, 0, 0.3) !important;
}


@media (max-width: 767px) {
    .footer-section .footer-bottom-wrapper {
        flex-direction: column;
        justify-content: center !important;
        gap: 8px;
        padding: 17px 0 !important;
        text-align: center;
    }

    .footer-section .footer-bottom-links {
        justify-content: center;
    }
}

/* Small Mobile */




/* Mobile */

@media (max-width: 575px) {
    .footer-section.section-padding {
        padding-top: 38px !important;
    }

    .footer-section .footer-widget-wrapper {
        padding-bottom: 28px !important;
    }

    .footer-section .footer-brand-widget {
        max-width: 100%;
        margin-bottom: 10px !important;
    }


}

.footer-section.section-padding {
    padding-top: 48px !important;
}

.footer-section .footer-widget-wrapper {
    padding-top: 0 !important;
    padding-bottom: 38px !important;
}

.footer-section .footer-widget-wrapper .row {
    align-items: flex-start !important;
}

.footer-section .single-widget-items {
    height: auto !important;
    min-height: 0 !important;
    margin: 0 !important;
}

/* Logo */

.footer-section .footer-logo {
    display: inline-block;
    margin-bottom: 12px !important;
}

.footer-section .footer-logo img {
    display: block;
    width: 205px;
    max-width: 100%;
    height: auto;
}

.footer-section .footer-content {
    margin: 0;
    padding: 0;
}

.footer-section .footer-address {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    margin: 0 !important;
    line-height: 1.65;
}

.footer-section .footer-address i {
    margin-top: 5px;
    color: #d39b3d;
}

.footer-section .footer-address span {
    display: block;
}

/* Social icons */

.footer-section .social-icon {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 17px !important;
}

.footer-section .social-icon a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    color: #111111;
    background: #ffffff;
    border: 1px solid #dddddd;
    border-radius: 50%;
    font-size: 19px;
    transition: all 0.3s ease;
}

.footer-section .social-icon a:hover {
    color: #ffffff;
    background: #d39b3d;
    border-color: #d39b3d;
    transform: translateY(-3px);
}

.footer-section .widget-head {
    margin: 0 0 19px !important;
    padding: 0 !important;
}

.footer-section .widget-head h3 {
    position: relative;
    display: inline-block;
    margin: 0;
    padding-bottom: 10px;
    font-size: 18px;
}

.footer-section .widget-head h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 32px;
    height: 2px;
    background: #d39b3d;
}

/* Footer links */

.footer-section .gt-list-area {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-section .gt-list-area li {
    margin: 0 0 11px !important;
    padding: 0 !important;
}

.footer-section .gt-list-area li:last-child {
    margin-bottom: 0 !important;
}

.footer-section .gt-list-area li a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
    transition: all 0.25s ease;
}

.footer-section .gt-list-area li a i {
    color: #d39b3d;
    font-size: 8px;
}

.footer-section .gt-list-area li a:hover {
    color: #d39b3d;
    transform: translateX(4px);
}

/* Contact info must remain one column */

.footer-section .contact-info {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    gap: 0 !important;
}

.footer-section .contact-info .info-items {
    display: flex !important;
    grid-template-columns: none !important;
    align-items: flex-start !important;
    gap: 11px !important;

    width: 100% !important;
    min-width: 0 !important;
    margin: 0 !important;
    padding: 12px 0 !important;

    border: 0 !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1) !important;
    border-radius: 0 !important;
}

.footer-section .contact-info .info-items:first-child {
    padding-top: 0 !important;
}

.footer-section .contact-info .info-items:last-child {
    grid-column: auto !important;
    padding-bottom: 0 !important;
    border-bottom: 0 !important;
}

/* Contact icon */

.footer-section .info-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 38px;
    height: 38px;
    flex: 0 0 38px;

    color: #ffffff;
    background: #d39b3d;
    border-radius: 8px;
    font-size: 12px;
}

/* Contact text */

.footer-section .info-content {
    flex: 1;
    min-width: 0;
    padding-top: 1px;
}

.footer-section .contact-info .info-items p {
    margin: 0 0 4px !important;
    color: #080808;
    font-weight: 500;
    font-size: 15px;
    line-height: 1.3;
}

.footer-section .contact-info .info-items a {
    display: inline-block !important;
    width: auto !important;
    max-width: 100% !important;

    color: #111111;
    font-size: 13px !important;
    line-height: 1.45;
    font-weight: 600;

    white-space: normal !important;
    word-break: normal !important;
    overflow-wrap: break-word !important;
    text-decoration: none;
}

.footer-section .contact-info .info-items a:hover {
    color: #d39b3d;
}

.footer-section .contact-info .info-items strong {
    display: block;
    margin-bottom: 2px;
    color: #111111;
    font-size: 12px;
    line-height: 1.4;
}

.footer-section .contact-info .info-items span {
    display: block;
    color: #777777;
    font-size: 11px;
    line-height: 1.4;
}



.footer-section .footer-bottom-wrapper p {
    margin: 0 !important;
}

/* Tablet and mobile */

@media (max-width: 991px) {
    .footer-section.section-padding {
        padding-top: 42px !important;
    }

    .footer-section .footer-widget-wrapper {
        padding-bottom: 32px !important;
    }
}

@media (max-width: 575px) {
    .footer-section.section-padding {
        padding-top: 36px !important;
    }

    .footer-section .footer-widget-wrapper {
        padding-bottom: 27px !important;
    }

    .footer-section .footer-logo img {
        width: 190px;
    }

    .footer-section .widget-head {
        margin-bottom: 15px !important;
    }

    .footer-section .widget-head h3 {
        font-size: 15px;
    }
}

/* ==========================terms ======================================= */
/* =========================================
   Terms & Condition PAGE
========================================= */

.privacy-policy-section {
    padding: 70px 0;
    background:
        radial-gradient(circle at top right,
            rgba(183, 124, 8, 0.07),
            transparent 32%),
        #f5f4f0;
}

.privacy-policy-card {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 50px 55px;
    background: #ffffff;
    border: 1px solid #e5e2da;
    border-radius: 18px;
    box-shadow: 0 18px 50px rgba(20, 18, 12, 0.07);
}

/* Page Heading */

.privacy-page-heading {
    margin-bottom: 35px;
    padding-bottom: 28px;
    border-bottom: 1px solid #e7e4dc;
}

.privacy-page-heading>span {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 9px;
    color: #b77c08;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.privacy-page-heading>span::before {
    content: "";
    width: 28px;
    height: 2px;
    background: #b77c08;
}

.privacy-page-heading h1 {
    margin: 0 0 12px;
    color: #111111;
    font-size: 42px;
    line-height: 1.15;
    font-weight: 700;
    letter-spacing: -1px;
    text-transform: none !important;
}

.privacy-page-heading p {
    max-width: 720px;
    margin: 0;
    color: #706d66;
    font-size: 14px;
    line-height: 1.75;
    text-transform: none !important;
}

/* =========================================
   BACKEND EDITOR CONTENT
========================================= */

.privacy-editor-content {
    color: #66635e;
    font-size: 15px;
    line-height: 1.85;
    word-break: break-word;
}

/* Remove unwanted editor spacing */

.privacy-editor-content>*:first-child {
    margin-top: 0 !important;
}

.privacy-editor-content>*:last-child {
    margin-bottom: 0 !important;
}

/* Editor Headings */

.privacy-editor-content h1,
.privacy-editor-content h2,
.privacy-editor-content h3,
.privacy-editor-content h4,
.privacy-editor-content h5,
.privacy-editor-content h6 {
    color: #111111;
    font-family: inherit;
    font-weight: 700;
    letter-spacing: normal;
    text-transform: none !important;
}

.privacy-editor-content h1 {
    margin: 0 0 24px;
    font-size: 34px;
    line-height: 1.25;
}

.privacy-editor-content h2 {
    margin: 34px 0 14px;
    padding-bottom: 11px;
    font-size: 27px;
    line-height: 1.3;
    border-bottom: 1px solid #e7e4dd;
}

.privacy-editor-content h3 {
    margin: 26px 0 10px;
    font-size: 21px;
    line-height: 1.35;
}

.privacy-editor-content h4 {
    margin: 22px 0 8px;
    color: #24211d;
    font-size: 17px;
    line-height: 1.4;
}

.privacy-editor-content h5 {
    margin: 20px 0 8px;
    font-size: 15px;
}

.privacy-editor-content h6 {
    margin: 18px 0 8px;
    font-size: 14px;
}

/* Paragraphs */

.privacy-editor-content p {
    margin: 0 0 16px;
    color: #68655f;
    font-size: 14px;
    line-height: 1.85;
    text-transform: none !important;
}

.privacy-editor-content strong,
.privacy-editor-content b {
    color: #25231f;
    font-weight: 700;
}

/* Lists */

.privacy-editor-content ul,
.privacy-editor-content ol {
    margin: 12px 0 20px;
    padding-left: 24px;
}

.privacy-editor-content li {
    margin-bottom: 8px;
    padding-left: 4px;
    color: #68655f;
    font-size: 14px;
    line-height: 1.75;
    text-transform: none !important;
}

.privacy-editor-content ul li::marker {
    color: #b77c08;
}

.privacy-editor-content ol li::marker {
    color: #b77c08;
    font-weight: 700;
}

/* Links */

.privacy-editor-content a {
    color: #a97008;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.privacy-editor-content a:hover {
    color: #111111;
}

/* Horizontal Line */

.privacy-editor-content hr {
    margin: 28px 0;
    border: 0;
    border-top: 1px solid #e4e1da;
}

/* Blockquote */

.privacy-editor-content blockquote {
    margin: 22px 0;
    padding: 16px 18px;
    color: #57534c;
    background: #faf6ed;
    border-left: 4px solid #b77c08;
    border-radius: 8px;
}

.privacy-editor-content blockquote p {
    margin: 0;
}

/* Table From Editor */

.privacy-editor-content table {
    width: 100%;
    margin: 22px 0;
    overflow: hidden;
    border-collapse: collapse;
    border: 1px solid #e2dfd7;
    border-radius: 10px;
}

.privacy-editor-content th,
.privacy-editor-content td {
    padding: 12px 14px;
    border: 1px solid #e2dfd7;
    font-size: 13px;
    line-height: 1.6;
    text-align: left;
}

.privacy-editor-content th {
    color: #111111;
    background: #f5f3ed;
    font-weight: 700;
}

/* Tablet */

@media (max-width: 991px) {
    .privacy-policy-section {
        padding: 50px 0;
    }

    .privacy-policy-card {
        padding: 40px 35px;
    }

    .privacy-page-heading h1 {
        font-size: 37px;
    }
}

/* Mobile */

@media (max-width: 575px) {
    .privacy-policy-section {
        padding: 30px 0 40px;
    }

    .privacy-policy-card {
        padding: 28px 18px;
        border-radius: 14px;
    }

    .privacy-page-heading {
        margin-bottom: 27px;
        padding-bottom: 22px;
    }

    .privacy-page-heading h1 {
        font-size: 32px;
    }

    .privacy-page-heading p {
        font-size: 12.5px;
        line-height: 1.7;
    }

    .privacy-editor-content h1 {
        font-size: 28px;
    }

    .privacy-editor-content h2 {
        margin-top: 28px;
        font-size: 23px;
    }

    .privacy-editor-content h3 {
        font-size: 19px;
    }

    .privacy-editor-content h4 {
        font-size: 16px;
    }

    .privacy-editor-content p,
    .privacy-editor-content li {
        font-size: 13px;
        line-height: 1.75;
    }

    .privacy-editor-content table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }
}

/* ======================terms============================== */

.faq-content .accordion-box {
    position: relative;
    margin-top: 50px;
    max-width: 100%;
    border-top: 1px solid rgba(15, 23, 42, 0.1);
    padding-top: 30px;
}

.faq-content .accordion-box .block .acc-content .content .text {
    line-height: 175%;
    font-size: 16px;
    font-weight: 400;
    color: #808080;
    max-width: 100%;
}

.faq-content .accordion-box .block .acc-btn.active {
    color: #d39b3d;
}

.faq-content .accordion-box .block .acc-btn.active .icon:before {
    content: "\f077";
    color: #d19c3f;
}