.product-images {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.product-images a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Keep both primary and secondary images the same size */
.product-images .primary_image,
.product-images .secondary_image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.cu_pimg {
    height: 300px !important;
}



/* Sidebar Widgets General Styling */
.widget {
    margin-bottom: 30px;
}

.widget-title {
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 15px;
    border-bottom: 2px solid #000;
    padding-bottom: 10px;
}

.product-categories,
.widget_size_option ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Alignment and Gap Fix */
.cat-item,
.widget_size_option ul li {
    display: flex;
    justify-content: space-between;
    /* Place the name and count on opposite sides */
    align-items: center;
    padding: 5px 0;
    font-size: 14px;
}

/* Checkbox Alignment */
input[type="checkbox"] {
    width: 15px;
    height: 15px;
    margin-right: 10px;
    cursor: pointer;
}

.count {
    background: #e0e0e0 !important;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 12px;

}


/* Product layout */
.products.grid_full {
    /* display: flex; */
    /* flex-wrap: wrap; */
    /* This is required */
}

.products.grid_full>div {
    padding: 0 15px;
    /* Spacing between products */
}

/* Equalize product item height */
.item-inner {
    height: 100%;
}

/* Pagination Style */
.pagination-container ul.page-numbers {
    display: flex;
    list-style: none;
    padding: 0;
}

.pagination-container ul.page-numbers li {
    margin: 0 5px;
}

.pagination-container ul.page-numbers li a,
.pagination-container ul.page-numbers li span {
    padding: 10px 15px;
    border: 1px solid #ddd;
    text-decoration: none;
}

.pagination-container ul.page-numbers li span.current {
    background: #000;
    color: #fff;
}


/* Sorting dropdown appearance */
.woocommerce-ordering select {
    padding: 8px 15px;
    border: 1px solid #ddd;
    background-color: #fff;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    outline: none;
    appearance: auto;
    /* Makes it appear as a normal dropdown */
}

/* Appearance on hover */
.woocommerce-ordering select:hover {
    border-color: #333;
}

/* Breadcrumb and ordering layout */
.wrap-breadcrumb {
    border-bottom: 1px solid #eee;
    margin-bottom: 20px;
}


/* Active Link Underline */
.mega-menu ul.navbar-nav li.level1.active>a,
.mega-menu ul.navbar-nav li.level1>a:hover {
    border-bottom: 2px solid #000;
    /* Change this color as needed */
    padding-bottom: 5px;
}

/* Mobile Responsive */
@media (max-width: 767px) {
    .mega-menu {
        display: none;
        /* Hide menu by default */
        width: 100%;
        background: #fff;
        position: absolute;
        top: 100%;
        left: 0;
        z-index: 999;
    }

    .mega-menu.show {
        display: block;
        /* Show when clicked */
    }

    .mega-menu ul.navbar-nav {
        display: block;
    }

    .my-custom-menu-btn {
        cursor: pointer;
    }
}


/* Hide menu and toggle for mobile view */
@media (max-width: 991px) {
    .my-custom-menu-btn {
        /* display: block !important; */
        font-size: 24px;
        padding: 10px 0;
        text-align: left;
    }

    .mega-menu {
        display: none;
        /* Hide menu by default */
        background: #fff;
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        z-index: 999;
        padding: 15px;
    }

    .mega-menu.active {
        display: block !important;
    }

    .nav.navbar-nav {
        display: block !important;
    }
}


/* Hide for mobile by default with all values overridden */
@media (max-width: 991px) {
    .mega-menu {
        display: none !important;
        /* This is required */
    }

    .mega-menu.active {
        display: block !important;
        /* Show when JS adds the class */
    }
}


/* Grid system (4 items per row) */
.products-grid {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
}

.products-grid>.item-inner {
    width: 25%;
    /* For 4 items */
    padding: 0 10px;
    box-sizing: border-box;
}

/* For mobile responsiveness */
@media (max-width: 991px) {
    .products-grid>.item-inner {
        width: 50%;
    }

    /* For 2 items */
}

@media (max-width: 576px) {
    .products-grid>.item-inner {
        width: 100%;
    }

    /* For 1 item */
}

/* Mobile Sidebar (as a fixed sidebar) */
.sidebar-wrapper {
    width: 25%;
    float: left;
}

@media (max-width: 767px) {
    .sidebar-wrapper {
        position: fixed;
        left: -100%;
        top: 0;
        width: 80%;
        height: 100%;
        background: #fff;
        z-index: 9999;
        transition: 0.3s;
        padding: 20px;
        overflow-y: auto;
    }

    .sidebar-wrapper.open {
        left: 0;
    }

    .content-wrapper {
        width: 100% !important;
    }
}


/* Close button */
.btn-close {
    float: right;
    font-size: 24px;
    cursor: pointer;
    background: none;
    border: none;
}

/* Mobile Offcanvas Default State */
.mobile-sidebar-offcanvas {
    position: fixed;
    top: 0;
    left: -100%;
    width: 280px;
    /* Size for mobile */
    height: 100%;
    background: #fff;
    z-index: 99999;
    /* Highest stacking order */
    transition: 0.4s ease;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.2);
    overflow-y: auto;
}

/* Open state */
.mobile-sidebar-offcanvas.open {
    left: 0;
}


/* Hide desktop sidebar completely on mobile */
@media (max-width: 767px) {
    #secondary.widget-area {
        display: none !important;
    }

    .d-md-none {
        display: block !important;
    }
}

/* Hide mobile filter button on desktop */
@media (min-width: 768px) {
    .d-md-none {
        display: none !important;
    }

    .mobile-sidebar-offcanvas {
        display: none !important;
    }
}

@media (max-width: 767px) {
    .container {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    .products.grid_full {
        margin: 0 !important;
        /* Prevent products from shifting to the sides */
    }
}


.action a i {
    font-size: 15px !important;
    color: #000 !important;
    margin: 0 4px !important;
}

.action a:hover i,
.action a i:hover {
    font-size: 15px !important;
    color: #ffffff !important;
    margin: 0 4px !important;
}

/* =========================================
       Solanne 1:1 EXACT MATCH CSS (FORCED)
       ========================================= */
.gflock-exact-wrap {
    color: #111 !important;
    max-width: 98% !important;
    margin: 0 auto !important;
    padding: 20px 15px 100px 15px !important;
    background-color: #fff !important;
}

/* Top Bar & Breadcrumbs */
.gf-top-bar {
    font-family: "Playfair Display";
    display: flex !important;
    justify-content: flex-start !important;
    align-items: center !important;
    font-size: 11px !important;
    font-weight: 600 !important;
    letter-spacing: 1px !important;
    text-transform: uppercase !important;
    margin-bottom: 25px !important;
    color: #888 !important;
}

.gf-top-bar a {
    color: #888 !important;
    text-decoration: none !important;
}

.gf-top-bar .go-back {
    margin-right: 30px !important;
    color: #000 !important;
}

.gf-top-bar .go-back i {
    margin-right: 5px !important;
}

.gf-row {
    display: flex !important;
    flex-wrap: wrap !important;
    margin-left: -15px !important;
    margin-right: -15px !important;
}

.gf-col-left {
    width: 50% !important;
    padding: 0 15px !important;
    display: flex !important;
    flex-wrap: nowrap !important;
}

.gf-col-right {
    width: 50% !important;
    padding: 0 40px !important;
}

/* Desktop Gallery (Left Side) */
.gf-thumbnails {
    width: 200px !important;
    min-width: 160px !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
    margin-right: 15px !important;
}

.gf-thumb-btn {
    background: #fff !important;
    border: 1px solid #ddd !important;
    padding: 2px !important;
    cursor: pointer !important;
    width: 100% !important;
    height: auto !important;
    transition: 0.2s !important;
}

.gf-thumb-btn:hover {
    border-color: #000 !important;
}

.gf-thumb-btn img {
    width: 100% !important;
    height: auto !important;
    display: block !important;
}

.gf-main-image {
    flex: 1 !important;
    border: 1px solid #e0e0e0 !important;
    background: #fcfcfc !important;
    position: relative !important;
    display: flex !important;
    justify-content: center !important;
}

.gf-main-image img {
    width: 100% !important;
    height: auto !important;
    object-fit: cover !important;
}

/* Mobile & Tablet View (991px ට අඩු) */
@media (max-width: 991px) {

    .gf-col-left,
    .gf-col-right {
        width: 100% !important;
        padding: 0 15px !important;
    }

    .gf-col-right {
        margin-top: 30px !important;
    }

    /* Mobile එකේදී Thumbnails ප්‍රධාන පින්තූරයට යටින් පෙන්වීම */
    .gf-col-left {
        flex-direction: column-reverse !important;
        gap: 10px !important;
    }

    .gf-thumbnails {
        width: 100% !important;
        min-width: 100% !important;
        flex-direction: row !important;
        overflow-x: auto !important;
        margin-right: 0 !important;
        padding-bottom: 5px;
    }

    .gf-thumbnails .gf-thumb-btn {
        width: 120px !important;
        /* Mobile එකේදී Thumbnails එකක පළල 120px ලෙස සකසා ඇත */
        min-width: 120px !important;
        flex-shrink: 0 !important;
    }
}

/* Details (Right Side) */
.gf-title {
    font-size: 22px !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    margin: 0 0 15px 0 !important;
    color: #111 !important;
}

.gf-sku-badge {
    background-color: #f5f5f5 !important;
    padding: 6px 12px !important;
    font-size: 11px !important;
    letter-spacing: 1px !important;
    color: #555 !important;
    display: inline-block !important;
    margin-bottom: 20px !important;
}

.gf-price {
    font-size: 20px !important;
    font-weight: 500 !important;
    color: #111 !important;
    margin-bottom: 15px !important;
}

.gf-installments {
    font-size: 12px !important;
    color: #666 !important;
    margin-bottom: 30px !important;
    display: flex !important;
    align-items: center !important;
    gap: 5px !important;
}

/* Size Chart & Variations Label */
.gf-size-header {
    display: flex !important;
    justify-content: space-between !important;
    align-items: flex-end !important;
    margin-bottom: 10px !important;
}

.gf-size-header .gf-label {
    font-size: 12px !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
}

.gf-size-chart-btn {
    font-size: 11px !important;
    font-weight: 600 !important;
    text-decoration: underline !important;
    color: #111 !important;
    cursor: pointer !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
}

/* Aggressive WooCommerce Form Override */
.gflock-exact-wrap .cart {
    margin-top: 0 !important;
}

.gflock-exact-wrap .variations {
    width: 100% !important;
    margin-bottom: 20px !important;
}

/* .gflock-exact-wrap .variations th {
    display: none !important;
} */

/* Hide default labels */
.gflock-exact-wrap .variations td {
    padding: 0 0 15px 0 !important;
    display: block !important;
}

.gflock-exact-wrap .variations select {
    width: 100% !important;
    padding: 12px 15px !important;
    border: 1px solid #ddd !important;
    font-size: 13px !important;
    text-transform: uppercase !important;
    background-color: #fff !important;
    color: #111 !important;
    border-radius: 0 !important;
    appearance: auto !important;
    height: 45px !important;
}

/* Quantity & Add to Cart Inline Flex */
.gflock-exact-wrap .woocommerce-variation-add-to-cart {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 10px !important;
    margin-bottom: 10px !important;
}

.gflock-exact-wrap .quantity {
    flex: 0 0 120px !important;
    display: flex !important;
    border: 1px solid #e0e0e0 !important;
    height: 50px !important;
}

.gflock-exact-wrap .quantity .qty {
    width: 100% !important;
    border: none !important;
    text-align: center !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    -moz-appearance: textfield !important;
}

.gflock-exact-wrap .single_add_to_cart_button {
    flex: 1 !important;
    background-color: #111 !important;
    color: #fff !important;
    border: none !important;
    border-radius: 0 !important;
    text-transform: uppercase !important;
    font-weight: 600 !important;
    letter-spacing: 1px !important;
    font-size: 13px !important;
    height: 50px !important;
    cursor: pointer !important;
    transition: background 0.3s !important;
    margin-left: 10px !important;
    margin-right: 10px !important;
}

.gflock-exact-wrap .single_add_to_cart_button:hover {
    background-color: #333 !important;
}

/* Buy It Now Button */
.gf-buy-now-btn {
    width: 100% !important;
    background-color: transparent !important;
    color: #111 !important;
    border: 1px solid #111 !important;
    border-radius: 0 !important;
    text-transform: uppercase !important;
    font-weight: 600 !important;
    letter-spacing: 1px !important;
    font-size: 13px !important;
    height: 50px !important;
    cursor: pointer !important;
    margin-bottom: 30px !important;
    transition: 0.3s !important;
    display: block !important;
}

.gf-buy-now-btn:hover {
    background-color: #f9f9f9 !important;
}

/* Meta & Description */
.gf-meta-bullets {
    font-size: 13px !important;
    line-height: 1.8 !important;
    color: #444 !important;
    margin-bottom: 30px !important;
}

.gf-meta-bullets ul {
    padding-left: 20px !important;
    margin-bottom: 15px !important;
}

.gf-meta-bullets li {
    margin-bottom: 5px !important;
}

.gf-features-list {
    font-size: 12px !important;
    color: #333 !important;
    border-top: 1px solid #eee !important;
    padding-top: 20px !important;
}

.gf-features-list p {
    margin-bottom: 10px !important;
    display: flex !important;
    align-items: center !important;
}

.gf-features-list i {
    margin-right: 10px !important;
    font-size: 14px !important;
    width: 16px !important;
    text-align: center !important;
}

.gf-icon-clock {
    color: #555 !important;
}

.gf-icon-check {
    color: #555 !important;
}




/* =========================================
       Quantity Box Perfect Fix
       ========================================= */
.gflock-exact-wrap .woocommerce-variation-add-to-cart {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 15px !important;
    margin-bottom: 20px !important;
    align-items: center !important;
}

/* Main box */
.gflock-exact-wrap .quantity {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    border: 1px solid #d4d4d4 !important;
    height: 50px !important;
    width: 130px !important;
    /* Width of the box */
    padding: 0 !important;
    background-color: #fff !important;
    border-radius: 0 !important;
    margin: 0 !important;
}

/* Minus and plus buttons (- / +) */
.gflock-exact-wrap .quantity .minus,
.gflock-exact-wrap .quantity .plus {
    display: none !important;
    align-items: center !important;
    justify-content: center !important;
    width: 40px !important;
    height: 100% !important;
    cursor: pointer !important;
    font-size: 14px !important;
    color: #111 !important;
    background: transparent !important;
    transition: background 0.2s !important;
}

.quantity .custom-plus,
.quantity .custom-minus {
    background: transparent !important;
    border: none !important;
    width: 35px !important;
    height: 100% !important;
    cursor: pointer !important;
    font-size: 16px !important;
    font-weight: bold !important;
    color: #111 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    outline: none !important;
}

.quantity .custom-plus:hover,
.quantity .custom-minus:hover {
    background-color: #f0f0f0 !important;
}

.uno-cart-wrapper .minus,
.uno-cart-wrapper .plus {
    display: none !important;
}


.gflock-exact-wrap .quantity .minus:hover,
.gflock-exact-wrap .quantity .plus:hover {
    background-color: #f5f5f5 !important;
}

/* Where the value sits */
.gflock-exact-wrap .quantity input.qty {
    flex: 1 !important;
    width: 100% !important;
    height: 100% !important;
    border: none !important;
    background: transparent !important;
    text-align: center !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    padding: 0 !important;
    margin: 0 !important;
    color: #111 !important;
    box-shadow: none !important;
    -moz-appearance: textfield !important;
    /* Remove spinner in Firefox */
}

/* Remove spinner from number input in Chrome/Safari */
.gflock-exact-wrap .quantity input.qty::-webkit-outer-spin-button,
.gflock-exact-wrap .quantity input.qty::-webkit-inner-spin-button {
    -webkit-appearance: none !important;
    margin: 0 !important;
}

/* Add to cart button */
.gflock-exact-wrap .single_add_to_cart_button {
    flex: 1 !important;
    background-color: #111 !important;
}

.gflock-exact-wrap .single_add_to_cart_button:hover {
    background-color: #333 !important;
}



/* =========================================
   GFLOCK STYLE PRODUCT TABS & REVIEWS
   ========================================= */

.gf-custom-tabs-wrapper {
    margin-top: 60px !important;
    margin-bottom: 60px !important;
    padding-top: 40px !important;
    border-top: 1px solid #eaeaea !important;
    clear: both !important;
}

/* Tabs List Styling (Header) */
.gf-custom-tabs-wrapper .woocommerce-tabs ul.tabs {
    font-family: "Playfair Display";
    display: flex !important;
    justify-content: center !important;
    flex-wrap: wrap !important;
    list-style: none !important;
    padding: 0 !important;
    margin: 0 0 40px 0 !important;
    border-bottom: 1px solid #eaeaea !important;
}

.gf-custom-tabs-wrapper .woocommerce-tabs ul.tabs li {
    border: none !important;
    background: transparent !important;
    margin: 0 10px !important;
    padding: 0 0 10px 0 !important;
    position: relative !important;
}

.gf-custom-tabs-wrapper .woocommerce-tabs ul.tabs li::before,
.gf-custom-tabs-wrapper .woocommerce-tabs ul.tabs li::after {
    display: none !important;
    /* Remove extra borders/icons */
    color: #888 !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    text-decoration: none !important;
    letter-spacing: 1px !important;
    transition: color 0.3s !important;
}

.gf-custom-tabs-wrapper .woocommerce-tabs ul.tabs li:hover a {
    color: #111 !important;
}

.gf-custom-tabs-wrapper .woocommerce-tabs ul.tabs li.active {
    border-bottom: 2px solid #111 !important;
    /* Black underline for active tab */
}

.gf-custom-tabs-wrapper .woocommerce-tabs ul.tabs li.active a {
    color: #111 !important;
}

/* Tab Content Panel Styling */
.gf-custom-tabs-wrapper .woocommerce-tabs .panel {
    max-width: 98% !important;
    margin: 0 auto !important;
    color: #444 !important;
    font-size: 15px !important;
    line-height: 1.8 !important;
}

.gf-custom-tabs-wrapper .woocommerce-tabs .panel h2 {
    font-size: 20px !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    margin-bottom: 25px !important;
    color: #111 !important;
    display: none !important;
    /* H2 inside tab is often not needed */
}

/* =========================================
   REVIEWS & COMMENT FORM STYLING
   ========================================= */

/* Review List */
.gf-custom-tabs-wrapper #reviews #comments ol.commentlist {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 0 40px 0 !important;
}

.gf-custom-tabs-wrapper #reviews #comments ol.commentlist li {
    padding: 20px 0 !important;
    border-bottom: 1px solid #f0f0f0 !important;
    margin-bottom: 0 !important;
}

.gf-custom-tabs-wrapper .comment_container {
    display: flex !important;
    gap: 20px !important;
}

.gf-custom-tabs-wrapper .comment_container img.avatar {
    width: 50px !important;
    height: 50px !important;
    border-radius: 50% !important;
    padding: 0 !important;
    border: none !important;
}

.gf-custom-tabs-wrapper .comment-text {
    flex: 1 !important;
}

.gf-custom-tabs-wrapper .comment-text p.meta {
    font-size: 12px !important;
    color: #888 !important;
    margin-bottom: 5px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
}

.gf-custom-tabs-wrapper .comment-text .description {
    font-size: 14px !important;
    color: #333 !important;
}

/* Star Rating */
.gf-custom-tabs-wrapper .star-rating {
    float: right !important;
    color: #e6b800 !important;
    /* Golden colored stars */
    font-size: 13px !important;
}

/* Review Add Form */
.gf-custom-tabs-wrapper #review_form_wrapper {
    background: #fdfdfd !important;
    padding: 30px !important;
    border: 1px solid #eee !important;
}

.gf-custom-tabs-wrapper .comment-reply-title {
    font-size: 18px !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    color: #111 !important;
    margin-bottom: 20px !important;
    display: block !important;
}

.gf-custom-tabs-wrapper .comment-form label {
    display: block !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    color: #111 !important;
    margin-bottom: 8px !important;
    text-transform: uppercase !important;
}

.gf-custom-tabs-wrapper .comment-form input[type="text"],
.gf-custom-tabs-wrapper .comment-form input[type="email"],
.gf-custom-tabs-wrapper .comment-form textarea {
    width: 100% !important;
    padding: 12px 15px !important;
    border: 1px solid #ddd !important;
    background: #fff !important;
    font-size: 14px !important;
    margin-bottom: 20px !important;
    border-radius: 0 !important;
}

/* Form Stars Input Selector */
.gf-custom-tabs-wrapper .comment-form .stars a {
    color: #ccc !important;
    text-decoration: none !important;
}

.gf-custom-tabs-wrapper .comment-form .stars a.active,
.gf-custom-tabs-wrapper .comment-form .stars a:hover {
    color: #e6b800 !important;
}

/* Submit Button */
.gf-custom-tabs-wrapper .comment-form input[type="submit"] {
    background-color: #111 !important;
    color: #fff !important;
    border: none !important;
    padding: 15px 40px !important;
    text-transform: uppercase !important;
    font-weight: 600 !important;
    letter-spacing: 1px !important;
    cursor: pointer !important;
    transition: background 0.3s !important;
    border-radius: 0 !important;
}

.gf-custom-tabs-wrapper .comment-form input[type="submit"]:hover {
    background-color: #333 !important;
}

/* =========================================
   GFLOCK STYLE RELATED PRODUCTS
   ========================================= */

.gf-related-products {
    max-width: 99% !important;
    margin: 60px auto 10px auto !important;
    padding: 0 15px !important;
    clear: both !important;
}

@media (max-width: 767px) {
    .gf-related-products {
        display: none !important;
    }
}

.gf-related-header {
    border-bottom: 1px solid #eaeaea !important;
    margin-bottom: 30px !important;
    padding-bottom: 10px !important;
}

.gf-related-title {
    font-size: 22px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    color: #111 !important;
    margin: 0 !important;
    letter-spacing: 1px !important;
}

/* 4 Column Grid Layout */
.gf-related-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 30px !important;
}

/* Preserve the item style from your content-product.php */
.gf-related-grid .item-inner {
    width: 100% !important;
    margin: 0 !important;
}

/* Mobile Responsive */
@media (max-width: 991px) {
    .gf-related-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        /* Show 2 on tablet */
        gap: 15px !important;
    }
}

@media (max-width: 575px) {
    .gf-related-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        /* Show 2 on phone too (GFLOCK style) */
        gap: 10px !important;
    }

    .gf-related-title {
        font-size: 18px !important;
    }
}


.gf-custom-cart-container {
    /* max-width: 1200px !important; */
    margin: 40px auto 100px auto !important;
    padding: 0 15px !important;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif !important;
}

/* Header Title */
.gf-cart-header-title {
    text-align: center !important;
    margin-bottom: 60px !important;
}

.gf-cart-header-title h1 {
    /* font-family: 'Playfair Display', serif, Times !important; */
    /* Serif font as in image */
    font-size: 56px !important;
    color: #000 !important;
    margin-bottom: 10px !important;
}

.title-divider {
    width: 60px !important;
    height: 1px !important;
    background: #ccc !important;
    margin: 0 auto !important;
}

/* Flexbox Layout */
.gf-cart-layout {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 40px !important;
    align-items: flex-start !important;
}

.gf-cart-left {
    flex: 1 1 60% !important;
}

.gf-cart-right {
    flex: 1 1 30% !important;
    min-width: 320px !important;
}

/* Table Styles */
.gf-cart-table {
    width: 100% !important;
    border-collapse: collapse !important;
    border: none !important;
}

.gf-cart-table th {
    text-transform: uppercase !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    color: #000 !important;
    border-bottom: 2px solid #000 !important;
    padding: 10px 0 15px 0 !important;
    text-align: left !important;
}

.gf-cart-table td {
    padding: 30px 0 !important;
    border-bottom: 1px solid #eaeaea !important;
    vertical-align: middle !important;
}

.gf-cart-table .product-remove {
    width: 30px !important;
}

.gf-cart-table .product-remove a {
    color: #999 !important;
    font-size: 24px !important;
    text-decoration: none !important;
}

.gf-cart-table .product-remove a:hover {
    color: #f00 !important;
}

.gf-cart-table .product-thumbnail img {
    width: 90px !important;
    height: auto !important;
    background: #e0e0e0 !important;
    /* Gray background for placeholder */
}

.gf-product-title {
    font-size: 16px !important;
    color: #000 !important;
    text-decoration: none !important;
    font-weight: 500 !important;
    display: block !important;
    margin-bottom: 5px !important;
}

.gf-item-price {
    font-size: 15px !important;
    color: #888 !important;
    /* Light gray price */
}

/* Quantity Box styling for Cart */
.gf-cart-table .quantity {
    display: inline-flex !important;
    flex-direction: column !important;
    align-items: center !important;
}

.gf-cart-table .quantity input.qty {
    width: 40px !important;
    height: 30px !important;
    text-align: center !important;
    border: 1px solid #ddd !important;
    padding: 0 !important;
    font-size: 14px !important;
}

.gf-cart-table .product-subtotal {
    font-weight: 600 !important;
    font-size: 16px !important;
    color: #000 !important;
}

/* Coupon & Update Cart Row */
.gf-cart-actions {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    margin-top: 30px !important;
    flex-wrap: wrap !important;
    gap: 20px !important;
}

.gf-coupon-wrapper {
    display: flex !important;
    align-items: center !important;
    border: 1px solid #e0e0e0 !important;
    height: 55px !important;
    flex: 1 !important;
    max-width: 500px !important;
}

.gf-coupon-label {
    padding: 0 20px !important;
    font-weight: 700 !important;
    font-size: 13px !important;
    letter-spacing: 1px !important;
}

.gf-coupon-wrapper input {
    border: none !important;
    height: 100% !important;
    flex: 1 !important;
    padding: 0 15px !important;
    outline: none !important;
    font-size: 14px !important;
    background: transparent !important;
}

.gf-apply-coupon-btn {
    background: #ee5a5a !important;
    /* Red Color */
    color: #fff !important;
    border: none !important;
    height: 100% !important;
    padding: 0 30px !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    cursor: pointer !important;
    transition: 0.3s !important;
}

.gf-apply-coupon-btn:hover {
    background: #d44848 !important;
}

/* Update Cart Button - moved to right side style */
.gf-update-cart-btn {
    background: #333 !important;
    /* Dark Gray */
    color: #fff !important;
    border: none !important;
    height: 55px !important;
    padding: 0 40px !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    cursor: pointer !important;
    transition: 0.3s !important;
}

.gf-update-cart-btn:hover {
    background: #111 !important;
}

/* Right Box: Cart Totals */
.cart-collaterals .cart_totals {
    background: #f4f4f4 !important;
    /* Light Gray Box */
    padding: 30px !important;
    width: 100% !important;
}

.cart_totals h2 {
    font-size: 16px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    margin: 0 0 20px 0 !important;
    padding-bottom: 15px !important;
    border-bottom: 2px solid #000 !important;
}

.cart_totals table {
    width: 100% !important;
    border-collapse: collapse !important;
}

.cart_totals th {
    text-align: left !important;
    padding: 15px 0 !important;
    font-weight: 400 !important;
    color: #555 !important;
    font-size: 14px !important;
}

.cart_totals td {
    text-align: right !important;
    padding: 15px 0 !important;
    font-weight: 600 !important;
    color: #000 !important;
}

.cart-subtotal th,
.cart-subtotal td {
    border-bottom: 1px solid #ddd !important;
}

/* Checkout Button */
.wc-proceed-to-checkout {
    margin-top: 20px !important;
}

.checkout-button {
    background: #000 !important;
    /* Black */
    color: #fff !important;
    width: 100% !important;
    padding: 20px !important;
    text-align: center !important;
    text-transform: uppercase !important;
    font-weight: 700 !important;
    display: block !important;
    text-decoration: none !important;
    transition: 0.3s !important;
}

.checkout-button:hover {
    background: #333 !important;
}

/* Mobile Responsive */
@media (max-width: 991px) {
    .gf-cart-layout {
        flex-direction: column !important;
    }

    .gf-cart-left,
    .gf-cart-right {
        width: 100% !important;
    }

    .gf-cart-actions {
        flex-direction: column !important;
        align-items: stretch !important;
    }

    .gf-coupon-wrapper {
        max-width: 100% !important;
    }
}


.entry-header {
    display: none;
}

#primary_active {
    width: 80% !important;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    #primary_active {
        padding: 15px !important;
        width: 100% !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
    }
}




/* Cart Page Styling */


.uno-cart-wrapper {
    width: 100%;
}

/* Header */
.uno-cart-header {
    text-align: center;
    margin-bottom: 50px;
}

.uno-cart-header h1 {
    font-family: 'Playfair Display', serif !important;
    font-size: 48px !important;
    color: #000 !important;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.uno-divider {
    width: 60px;
    height: 2px;
    background: #000;
    margin: 0 auto;
}

/* Layout */
.uno-cart-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: flex-start;
}

.uno-cart-left {
    flex: 1 1 60%;
}

.uno-cart-right {
    flex: 1 1 30%;
    min-width: 320px;
}

/* Cart Table */
.uno-cart-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
}

.uno-cart-table th {
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 700;
    color: #000;
    border-bottom: 2px solid #000;
    padding: 15px 10px;
    text-align: left;
    letter-spacing: 1px;
}

.uno-cart-table td {
    padding: 25px 10px;
    border-bottom: 1px solid #eee;
    vertical-align: middle;
}

/* Product Item Details */
.uno-product-remove a {
    color: #ff4d4d !important;
    font-size: 18px;
    transition: 0.3s;
}

.uno-product-remove a:hover {
    color: #cc0000 !important;
}

.uno-product-thumbnail img {
    width: 90px;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.uno-product-name a {
    font-family: "Playfair Display";
    font-size: 16px;
    color: #000;
    text-decoration: none;
    font-weight: 500;
    display: block;
    margin-bottom: 5px;
}

.uno-product-name a:hover {
    color: #555;
}

.uno-product-price {
    color: #666;
    font-size: 14px;
}

.uno-product-subtotal {
    font-weight: 700;
    font-size: 16px;
    color: #000;
}

/* Quantity Input */
.uno-cart-table .quantity input.qty {
    width: 60px;
    height: 40px;
    text-align: center;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    color: #000;
}

/* Coupons & Actions */
.uno-cart-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    flex-wrap: wrap;
    gap: 15px;
}

.uno-coupon-box {
    display: flex;
    width: 100%;
    max-width: 400px;
}

.uno-coupon-box input {
    border: 1px solid #ccc;
    padding: 10px 15px;
    width: 100%;
    border-radius: 4px 0 0 4px;
    outline: none;
}

.uno-coupon-box button {
    background: #000;
    color: #fff;
    border: none;
    padding: 10px 25px;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    transition: 0.3s;
}

.uno-coupon-box button:hover {
    background: #333;
}

/* Hide default update button as we use auto-update */
.uno-hide-update-btn {
    position: absolute;
    left: -9999px;
    opacity: 0;
}

/* Cart Totals Box */
.uno-cart-totals-box {
    background: #fafafa;
    border: 1px solid #eee;
    padding: 30px;
    border-radius: 8px;
}

.uno-cart-totals-box h2 {
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #000;
    letter-spacing: 1px;
}

.uno-cart-totals-box table {
    width: 100%;
    border-collapse: collapse;
}

.uno-cart-totals-box th {
    text-align: left;
    padding: 15px 0;
    color: #555;
    font-weight: 500;
}

.uno-cart-totals-box td {
    text-align: right;
    padding: 15px 0;
    font-weight: 700;
    color: #000;
}

.uno-cart-totals-box .cart-subtotal th,
.uno-cart-totals-box .cart-subtotal td {
    border-bottom: 1px solid #ddd;
}

/* Checkout Button */
.uno-checkout-btn {
    display: block;
    background: #000;
    color: #fff;
    text-align: center;
    padding: 18px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    margin-top: 25px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.uno-checkout-btn:hover {
    background: #333;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Mobile Responsive Setup */
@media (max-width: 768px) {
    .uno-cart-layout {
        flex-direction: column;
    }

    .uno-cart-left,
    .uno-cart-right {
        width: 100%;
    }

    .uno-cart-table thead {
        display: none;
    }

    .uno-cart-table tr {
        display: block;
        border-bottom: 2px solid #ddd;
        padding: 15px 0;
        position: relative;
    }

    .uno-cart-table td {
        display: block;
        text-align: right;
        padding: 10px 0;
        border: none;
    }

    .uno-cart-table td::before {
        content: attr(data-title);
        float: left;
        font-weight: 700;
        text-transform: uppercase;
        color: #000;
        font-size: 12px;
    }

    .uno-product-thumbnail {
        text-align: center !important;
    }

    .uno-product-thumbnail::before {
        display: none;
    }

    .uno-product-remove {
        position: absolute;
        top: 10px;
        right: 0;
    }

    .uno-product-remove::before {
        display: none;
    }

    .uno-coupon-box {
        max-width: 100%;
    }
}


.woocommerce-terms-and-conditions-wrapper>.button {
    display: none !important;
}




/* Header */
.uno-checkout-header {
    text-align: center;
    margin-bottom: 50px;
}

.uno-checkout-header h1 {
    font-family: 'Playfair Display', serif !important;
    font-size: 48px !important;
    color: #000 !important;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.uno-divider {
    width: 60px;
    height: 2px;
    background: #000;
    margin: 0 auto;
}

/* Layout */
.uno-checkout-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: flex-start;
}

.uno-checkout-left {
    flex: 1 1 55%;
}

.uno-checkout-right {
    flex: 1 1 40%;
    /* min-width: 320px; */
    background: #fafafa;
    padding: 40px;
    border: 1px solid #eee;
    border-radius: 8px;
}

/* Override Woo default columns in left section */
.uno-checkout-left .col2-set {
    display: flex;
    flex-direction: column;
    gap: 40px;
    width: 100%;
}

.uno-checkout-left .col-1,
.uno-checkout-left .col-2 {
    width: 100% !important;
    max-width: 100% !important;
    float: none !important;
}

/* Headings inside form */
.woocommerce-checkout h3 {
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 700;
    border-bottom: 2px solid #000;
    margin-top: 15px !important;
    padding-bottom: 5px;
    margin-bottom: 5px;
    color: #000;
    letter-spacing: 1px;
}

/* Form Inputs */
.woocommerce-checkout .form-row {
    margin-bottom: 20px;
}

.woocommerce-checkout label {
    font-weight: 600;
    color: #333;
    font-size: 14px;
    margin-bottom: 8px;
    display: block;
}

.woocommerce-checkout input[type="text"],
.woocommerce-checkout input[type="email"],
.woocommerce-checkout input[type="tel"],
.woocommerce-checkout textarea,
.woocommerce-checkout select {
    width: 100%;
    border: 1px solid #ccc;
    padding: 12px 15px;
    border-radius: 4px;
    font-size: 15px;
    outline: none;
    transition: border-color 0.3s;
    background: #fff;
}

.woocommerce-checkout input:focus,
.woocommerce-checkout textarea:focus {
    border-color: #000;
}

/* Order Table in Right Column */
#order_review table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
}

#order_review th {
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 600;
    color: #555;
    padding: 15px 0;
    border-bottom: 1px solid #ddd;
    text-align: left;
}

#order_review td {
    padding: 15px 0;
    border-bottom: 1px solid #ddd;
    color: #000;
}

#order_review td.product-total,
#order_review th.product-total {
    text-align: right;
}

#order_review .order-total th,
#order_review .order-total td {
    font-size: 18px;
    font-weight: 700;
    color: #000;
    border-bottom: none;
    border-top: 2px solid #000;
    padding-top: 20px;
}

/* Payment Box */
#payment {
    background: transparent !important;
    border-radius: 0 !important;
}

#payment ul.payment_methods {
    padding: 0;
    border-bottom: 1px solid #ddd;
    margin-bottom: 20px;
}

#payment ul.payment_methods li {
    list-style: none;
    margin-bottom: 15px;
}

#payment div.payment_box {
    background: #eee !important;
    color: #333 !important;
    border-radius: 4px;
    padding: 15px !important;
    font-size: 13.5px;
}

#payment div.payment_box::before {
    border-bottom-color: #eee !important;
}

/* Mobile Responsive Setup */
@media (max-width: 768px) {
    .uno-checkout-layout {
        flex-direction: column;
    }

    .uno-checkout-left,
    .uno-checkout-right {
        width: 100%;
    }

    .uno-checkout-right {
        padding: 25px 20px;
    }
}


/* Checkout Place Order Button Design */
.woocommerce #payment #place_order,
.woocommerce-page #payment #place_order {
    float: right !important;
    background-color: #000 !important;
    margin-top: 20px !important;
    /* Set your theme's primary color here */
    color: #fff !important;
    padding: 18px 40px !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 1.5px !important;
    border: none !important;
    border-radius: 0px !important;
    transition: all 0.3s ease !important;
    cursor: pointer !important;
}

/* Button Hover Effect */
.woocommerce #payment #place_order:hover,
.woocommerce-page #payment #place_order:hover {
    background-color: #333 !important;
    color: #fff !important;
}


.woocommerce table.shop_table {
    border: 0px solid !important;
}


/* =========================================
   My Account Page - Premium UNO Design
   ========================================= */

/* Split menu and content area */
.woocommerce-account .woocommerce-MyAccount-navigation {
    width: 25% !important;
    float: left !important;
    padding-right: 30px !important;
}

.woocommerce-account .woocommerce-MyAccount-content {
    width: 75% !important;
    float: left !important;
    padding-left: 30px !important;
    border-left: 1px solid #eee !important;
}

/* Navigation Menu Links */
.woocommerce-MyAccount-navigation ul {
    list-style: none !important;
    padding: 0 !important;
}

.woocommerce-MyAccount-navigation li {
    margin-bottom: 10px !important;
}

.woocommerce-MyAccount-navigation li a {
    font-family: "Playfair Display";
    display: block !important;
    padding: 12px 15px !important;
    text-transform: uppercase !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    color: #666 !important;
    text-decoration: none !important;
    border: 1px solid transparent !important;
    transition: all 0.3s !important;
}

.woocommerce-MyAccount-navigation li.is-active a,
.woocommerce-MyAccount-navigation li a:hover {
    color: #000 !important;
    border: 1px solid #000 !important;
}

/* Content Area Titles */
.woocommerce-MyAccount-content h2 {
    font-family: 'Playfair Display', serif !important;
    font-size: 28px !important;
    margin-bottom: 25px !important;
    color: #000 !important;
}

/* Tables (Orders, etc.) */
.woocommerce-MyAccount-content table {
    width: 100% !important;
    border-collapse: collapse !important;
}

.woocommerce-MyAccount-content th,
.woocommerce-MyAccount-content td {
    padding: 15px !important;
    border: 1px solid #eee !important;
    text-align: left !important;
}

.woocommerce-MyAccount-content th {
    background: #f9f9f9 !important;
    font-size: 13px !important;
}

/* Buttons inside Account */
.woocommerce-button {
    background: #000 !important;
    color: #fff !important;
    padding: 10px 20px !important;
    text-transform: uppercase !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    border: none !important;
}

.woocommerce-button:hover {
    background: #333 !important;
}

/* Mobile Responsive */
@media (max-width: 768px) {

    .woocommerce-account .woocommerce-MyAccount-navigation,
    .woocommerce-account .woocommerce-MyAccount-content {
        width: 100% !important;
        float: none !important;
        border-left: none !important;
        padding: 0 !important;
    }

    .woocommerce-account .woocommerce-MyAccount-navigation {
        margin-bottom: 30px !important;
    }
}

/* Active Menu Link Style */
.woocommerce-MyAccount-navigation li.is-active a {
    color: #000 !important;
    font-weight: 800 !important;
    border-bottom: 2px solid #000 !important;
    /* Add a border here if desired */
}

@media (min-width: 1500px) {
    .site-content {
        padding: 70px 70px !important;
        /* width: 100%; */
    }
}


.woo_sc_frontend_btn {
    display: none !important;
}


/* Contact Form Fields Style */
.wpcf7-form-control.form-control {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 0;
    margin-top: 5px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s;
}

.wpcf7-form-control.form-control:focus {
    border-color: #000;
}

.wpcf7-form-control.wpcf7-submit.button.button1 {
    width: 100%;
    padding: 15px;
    background: #000;
    color: #fff;
    text-transform: uppercase;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
}

.wpcf7-form-control.wpcf7-submit.button.button1:hover {
    background: #333;
}

/* Label Style */
.wpcf7-form label {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    color: #333;
}


.owl-carousel {
    width: 100% !important;
    display: block !important;
}

.owl-carousel.owl-hidden {
    opacity: 1 !important;
}

.banner-home8-center .banner-private {
    margin-bottom: 30px;
    overflow: hidden;
}

.banner-home8-center .banner-private img {
    width: 100%;
    object-fit: cover;
    display: block;
}

@media (min-width: 769px) {
    .banner-home8-center .banner-short img {
        height: 470px;
    }

    .banner-home8-center .banner-tall img {
        height: 930px;
    }
}

@media (max-width: 768px) {

    .banner-home8-center .banner-short img,
    .banner-home8-center .banner-tall img {
        height: 350px;
    }
}

/* --- Mobile Responsive Fixes (For Mobile Only) --- */
@media (max-width: 767px) {

    /* Shipping Section Fix */
    .shipping-content {
        display: none !important;
        flex-direction: column !important;
        /* gap: 25px; */
        /* padding: 20px 0; */
    }

    .shipping-content .col-md-4 {
        width: 100% !important;
        /* margin-bottom: 15px; */
    }

    .shipping-content i {
        font-size: 28px;
        /* margin-bottom: 12px; */
    }

    .product-images .action {
        opacity: 1 !important;
        visibility: visible !important;
        bottom: 10px !important;
    }

    /* Editorial Focus Fix */
    .editorial-focus .row {
        flex-direction: column !important;
        text-align: center !important;
    }

    .editorial-focus .col-md-6 {
        width: 100% !important;
        padding-top: 20px !important;
    }

    /* Best Selling Blocks Stacking Fix */
    .best-selling .col-md-4 {
        width: 100% !important;
        margin-bottom: 40px !important;
    }

    .social-grid-section .social-images {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
    }

    .social-grid-section .social-images img {
        height: 200px !important;
    }
}


/* Attribute Titles (Labels) Above the Select Box / Swatches */
.variations_form .variations select {
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
    background-image: none !important;
    /* Removes browser default arrow */
    width: 100%;
    padding: 0px !important;
    padding-left: 5px !important;
}

.variations_form .variations {
    width: 100%;
}

.variations_form .variations tbody tr {
    display: block;
    margin-bottom: 15px;
}

.variations_form .variations .label {
    display: block;
    text-align: left;
    padding: 0 0 8px 0;
}

.variations_form .variations .label label {
    font-size: 13px;
    font-weight: 700;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.variations_form .variations .value {
    display: block;
    position: relative;
}


.footer-force-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 30px !important;
    width: 100% !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
    text-align: left !important;
}

/* Mobile Responsiveness */
@media (max-width: 991px) {
    .footer-force-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 767px) {
    .footer-force-grid {
        grid-template-columns: 1fr !important;
        text-align: center !important;
    }

    .footer-force-grid ul {
        align-items: center !important;
    }
}




@media (min-width: 768px) {
    .mobile-right-icons {
        display: none !important;
    }
}

@media (max-width: 767px) {

    #topbar {
        display: none !important;
    }

    /* Mobile Header Layout (Flexbox) */
    .header-top .col-md-12 {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        padding-top: 10px;
        padding-bottom: 10px;
    }

    /* Hamburger Icon */
    .my-custom-menu-btn {
        margin: 0 !important;
    }

    .my-custom-menu-btn i {
        color: #242323 !important;
        /* Black Color */
        font-size: 26px !important;
    }

    .logo-mobile {
        flex-grow: 1;
        text-align: center;
        display: flex;
        justify-content: center;
    }

    .logo-mobile img {
        max-width: 120px !important;
        /* Logo Size */
        height: auto !important;
    }

    /* Mobile Right Icons (Account & Cart) */
    .mobile-right-icons {
        display: flex !important;
        align-items: center;
        gap: 18px;
    }

    .mobile-right-icons a {
        position: relative;
        display: inline-block;
        text-decoration: none;
    }

    .mobile-right-icons a i {
        color: #242323 !important;
        /* Black Color */
        font-size: 24px !important;
        display: inline-block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    /* Cart Item Count Badge */
    .mobile-right-icons .cart-count {
        position: absolute;
        top: -6px;
        right: -10px;
        background-color: #000000;
        color: #ffffff;
        font-size: 11px;
        font-weight: bold;
        padding: 2px 6px;
        border-radius: 50%;
        line-height: 1;
    }
}


.faq-accordion {
    background-color: transparent;
    color: #000;
    cursor: pointer;
    padding: 20px 0;
    width: 100%;
    border: none;
    border-bottom: 1px solid #ddd;
    text-align: left;
    outline: none;
    font-size: 18px;
    font-weight: 600;
    transition: 0.3s;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-accordion:hover {
    color: #666;
}

.faq-accordion i {
    font-size: 14px;
    transition: transform 0.3s ease;
    color: #000;
}

.faq-panel {
    padding: 0;
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}

.faq-panel-content {
    padding: 20px 0;
    font-size: 15px;
    line-height: 1.8;
    color: #444;
}


/* Contact Page Custom Styles */
.contact-page-wrapper {
    padding: 80px 20px;
    background-color: #ffffff;
    color: #333;
}

.contact-header {
    text-align: center;
    margin-bottom: 70px;
}

.contact-header h1 {
    font-size: 48px;
    font-weight: 400;
    color: #000;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.contact-header p {
    font-size: 16px;
    color: #777;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.contact-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 60px;
    margin-bottom: 80px;
}

/* Contact Info Section */
.contact-info {
    padding-right: 20px;
}

.contact-title {
    font-size: 22px;
    font-weight: 600;
    color: #000;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.contact-list {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
}

.contact-list li {
    font-size: 16px;
    margin-bottom: 25px;
    display: flex;
    align-items: flex-start;
    color: #555;
    line-height: 1.6;
}

.contact-list li i {
    font-size: 18px;
    color: #000;
    margin-right: 15px;
    margin-top: 4px;
    width: 20px;
    text-align: center;
}

.contact-list li strong {
    color: #000;
    display: block;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 3px;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border: 1px solid #ddd;
    border-radius: 50%;
    color: #000;
    font-size: 18px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-links a:hover {
    background-color: #000;
    color: #fff;
    border-color: #000;
    transform: translateY(-3px);
}

/* Contact Form Section */
.contact-form-area {
    background: #fdfdfd;
    padding: 45px;
    border: 1px solid #eee;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

/* Minimalist Form Styles for Contact Form 7 */
.wpcf7-form-control-wrap input,
.wpcf7-form-control-wrap textarea {
    width: 100%;
    padding: 15px 0;
    border: none;
    border-bottom: 1px solid #ccc;
    background: transparent;
    font-size: 15px;
    margin-bottom: 25px;
    transition: border-color 0.3s ease;
    outline: none;
}

.wpcf7-form-control-wrap input:focus,
.wpcf7-form-control-wrap textarea:focus {
    border-bottom-color: #000;
}

.wpcf7-submit {
    background-color: #000;
    color: #fff;
    border: none;
    padding: 15px 40px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: background 0.3s ease;
    width: 100%;
}

.wpcf7-submit:hover {
    background-color: #333;
}

/* Map Section */
.map-container {
    width: 100%;
    height: 450px;
    background: #eee;
    line-height: 0;
    /* Removes extra bottom space */
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-grid {
        gap: 40px;
    }

    .contact-form-area {
        padding: 30px 20px;
    }

    .contact-header h1 {
        font-size: 36px;
    }
}

.banner-home8-center .banner-private {
    margin-bottom: 0px !important;
}

.banner-home8-center .col-md-6,
.banner-home8-center .col-md-12 {
    padding: 0px !important;
    margin: 0px !important;
}

.banner-home8-center .banner-private .text {
    background: rgba(255, 255, 255, 0.85) !important;
    /* 85% Transparent White */
    padding: 25px 15px !important;
    border-radius: 4px !important;
    width: 76% !important;
    left: 12% !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    margin-top: 0 !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1) !important;
    z-index: 2 !important;
}

.banner-home8-center .banner-private .text a.button1 {
    margin-top: 15px !important;
    display: inline-block !important;
}




/* ==========================================================
   Product Images Force Height Fix (No Excess Space)
   ========================================================== */
.product-images {
    position: relative !important;
    width: 100% !important;
    height: auto !important;
    min-height: unset !important;
    max-height: unset !important;
    overflow: hidden !important;
    aspect-ratio: 3 / 4 !important;
}

.product-images img,
.product-images a img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
}

.product-images .secondary_image {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
}

.woocommerce-tabs {
    display: block !important;
    visibility: visible !important;
}

.woocommerce-tabs .woocommerce-Tabs-panel--description {
    display: block !important;
}


/* Mobile  Cart Remove Button  */
@media (max-width: 768px) {
    .woocommerce-cart-form__cart-item {
        position: relative !important;
        padding-right: 35px !important;
    }

    .woocommerce-cart-form__cart-item .product-remove {
        position: absolute !important;
        top: 15px !important;
        right: 10px !important;
        padding: 0 !important;
        border: none !important;
        text-align: right !important;
    }

    .woocommerce-cart-form__cart-item .product-remove a {
        font-size: 20px !important;
        display: inline-block !important;
        line-height: 1 !important;
    }
}

.woocommerce-tabs .woocommerce-Tabs-panel {
    display: none !important;
}

.woocommerce-tabs .woocommerce-Tabs-panel[style*="display: block"],
.woocommerce-tabs .woocommerce-Tabs-panel:target,
.woocommerce-tabs .woocommerce-Tabs-panel.active {
    display: block !important;
}

.woocommerce-tabs .woocommerce-Tabs-panel h2,
.woocommerce-tabs .woocommerce-Tabs-panel p {
    display: block !important;
    visibility: visible !important;
}

.mega-menu ul.navbar-nav li.level1>a:hover,
.mega-menu ul.navbar-nav li.level1.active>a,
.mega-menu ul.navbar-nav li.level1 a:focus {
    background-color: transparent !important;
}


#footer .menu-footer li a {
    margin: 0px 0px !important;
}



/* ==========================================================
   1. HEADER RESPONSIVE FIX (Mobile & Tablet)
   ========================================================== */

@media (max-width: 991px) {
    #header #topbar {
        display: none !important;
    }

    #header .header-top .container .col-md-12 {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        padding-top: 15px !important;
        padding-bottom: 15px !important;
        flex-wrap: nowrap !important;
    }

    .logo-mobile {
        display: flex !important;
        flex-grow: 1 !important;
        justify-content: center !important;
        align-items: center !important;
    }

    .logo-mobile img {
        max-width: 140px !important;
    }

    .my-custom-menu-btn {
        display: flex !important;
        margin: 0 !important;
        align-items: center !important;
    }

    .mobile-right-icons {
        display: flex !important;
        align-items: center !important;
        gap: 15px !important;
    }
}

@media (min-width: 992px) {

    .mobile-right-icons,
    .logo-mobile,
    .my-custom-menu-btn {
        display: none !important;
    }
}

/* ==========================================================
   2. FOOTER RESPONSIVE & GAP FIX
   ========================================================== */

.footer-force-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 30px !important;
    width: 100% !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
    text-align: left !important;
}

.footer-force-grid>div ul {
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
}

@media (max-width: 991px) {
    .footer-force-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 40px 20px !important;
    }
}

@media (max-width: 767px) {
    .footer-force-grid {
        grid-template-columns: 1fr !important;
        text-align: center !important;
        gap: 40px !important;
    }

    .footer-force-grid>div ul {
        align-items: center !important;
    }

    .footer-force-grid>div ul li {
        justify-content: center !important;
        text-align: center !important;
    }
}


/* ==========================================================
   MOBILE MENU DISPLAY FIX (ULTIMATE)
   ========================================================== */

body>.mega-menu,
.wrappage>.mega-menu,
.pushmenu {
    display: none !important;
}

@media (max-width: 991px) {
    #header .header-top .container {
        position: relative !important;
    }

    .my-custom-mobile-menu {
        text-transform: uppercase;
        display: none !important;
        position: absolute !important;
        top: 100% !important;
        left: 0 !important;
        width: 100% !important;
        background: #fff !important;
        z-index: 999999 !important;
        padding: 15px 20px !important;
        box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.1) !important;
        border-top: 1px solid #eaeaea !important;
    }

    .my-custom-mobile-menu.solenne-menu-show {
        display: block !important;
    }

    .my-custom-mobile-menu ul.navbar-nav {
        display: block !important;
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .my-custom-mobile-menu ul.navbar-nav li {
        text-transform: uppercase;
        padding: 0 !important;
        border-bottom: 1px solid #f5f5f5 !important;
        text-align: left !important;
        position: relative !important;
    }

    .my-custom-mobile-menu ul.navbar-nav li a {
        text-transform: uppercase !important;
        display: block !important;
        padding: 15px 0 !important;
        height: auto !important;
        line-height: normal !important;
        font-size: 14px !important;
        font-weight: 500 !important;
        color: #111 !important;
        text-decoration: none !important;
        background-color: transparent !important;
    }


    .my-custom-mobile-menu ul.navbar-nav li>a:hover,
    .my-custom-mobile-menu ul.navbar-nav li>a:focus,
    .my-custom-mobile-menu ul.navbar-nav li.active>a,
    .my-custom-mobile-menu ul.navbar-nav li.open>a {
        background: transparent !important;
        background-color: transparent !important;
        color: #111 !important;
    }


    .my-custom-mobile-menu ul.navbar-nav li.dropdown>a:after {
        content: "▼" !important;
        font-family: "FontAwesome" !important;
        position: absolute !important;
        right: 0 !important;
        top: 15px !important;
        font-size: 14px !important;
        color: #111 !important;
        background: none !important;
    }

    .my-custom-mobile-menu ul.navbar-nav li.dropdown.mobile-open>a:after {
        content: "▲" !important;
    }

    /* Sub-menu Design */
    .my-custom-mobile-menu ul.navbar-nav .sub-menu {
        display: none;
        position: relative !important;
        min-width: 100% !important;
        padding: 0 0 10px 15px !important;
        border: none !important;
        box-shadow: none !important;
        margin-top: 0 !important;
        background: #fafafa !important;
    }
}


.solenne-announcement-bar {
    font-family: "Poppins";
}


/* ==========================================================
   CHECKOUT PAYMENT METHODS DESIGN FIX (FORCED)
   ========================================================== */

/* Payment List Container */
#payment ul.payment_methods {
    padding: 0 !important;
    margin: 0 0 20px 0 !important;
    list-style: none !important;
    border-bottom: 1px solid #eee !important;
}

/* Individual Payment Method Row */
#payment ul.payment_methods li.wc_payment_method {
    padding: 15px 0 !important;
    border-top: 1px solid #eee !important;
    margin: 0 !important;
    display: block !important;
    position: relative !important;
    text-align: left !important;
}

#payment ul.payment_methods li.wc_payment_method>input.input-radio {
    display: inline-block !important;
    vertical-align: middle !important;
    margin: 0 10px 0 0 !important;
    width: 16px !important;
    height: 16px !important;
    position: static !important;
    opacity: 1 !important;
    -webkit-appearance: radio !important;
    -moz-appearance: radio !important;
    appearance: radio !important;
    float: none !important;
}

#payment ul.payment_methods li.wc_payment_method>label {
    display: inline-block !important;
    vertical-align: middle !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    color: #111 !important;
    margin: 0 !important;
    cursor: pointer !important;
    width: calc(100% - 35px) !important;
}

#payment ul.payment_methods li.wc_payment_method>label img {
    display: inline-block !important;
    vertical-align: middle !important;
    max-height: 35px !important;
    width: auto !important;
    margin-left: 10px !important;
    border-radius: 4px !important;
    box-shadow: none !important;
}

#payment div.payment_box {
    background: #f9f9f9 !important;
    color: #555 !important;
    border-radius: 4px !important;
    padding: 15px 20px !important;
    font-size: 13.5px !important;
    margin-top: 15px !important;
    border: 1px solid #eee !important;
    position: relative !important;
    width: 100% !important;
    box-sizing: border-box !important;
    line-height: 1.6 !important;
    clear: both !important;
}

#payment div.payment_box::before {
    content: "" !important;
    display: block !important;
    border: 10px solid transparent !important;
    border-bottom-color: #f9f9f9 !important;
    position: absolute !important;
    top: -20px !important;
    left: 20px !important;
}

.woocommerce-privacy-policy-text {
    font-size: 13px !important;
    color: #666 !important;
    margin-bottom: 20px !important;
    line-height: 1.6 !important;
}

.woocommerce-privacy-policy-text a {
    color: #000 !important;
    text-decoration: underline !important;
    font-weight: 600 !important;
}

#payment #place_order {
    background-color: #000 !important;
    color: #fff !important;
    padding: 18px 40px !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 1.5px !important;
    border: none !important;
    border-radius: 0 !important;
    width: auto !important;
    float: right !important;
    transition: 0.3s ease !important;
    cursor: pointer !important;
}

#payment #place_order:hover {
    background-color: #333 !important;
}

#ship-to-different-address {
    margin-top: 30px !important;
    margin-bottom: 20px !important;
}

#ship-to-different-address label {
    display: flex !important;
    align-items: center !important;
    font-size: 18px !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    color: #111 !important;
    cursor: pointer !important;
}


.just-dropped-slider .owl-nav {
    display: none !important;
}

/* Custom Slider Container */
.custom-slider-wrap {
    position: relative;
    padding: 0 50px;
}

.custom-owl-prev,
.custom-owl-next {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    z-index: 999;
    width: 35px;
    height: 35px;
    background: #000000;
    color: #ffffff;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.custom-owl-prev {
    left: 0;
}

.custom-owl-next {
    right: 0;
}

.custom-owl-prev:hover,
.custom-owl-next:hover {
    background: #444444;
}

@media (max-width: 768px) {
    .custom-slider-wrap {
        padding: 0 35px;
    }

    .custom-owl-prev,
    .custom-owl-next {
        width: 28px;
        height: 28px;
        font-size: 16px;
    }
}


body.woocommerce div.product form.cart .button,
.woocommerce div.product form.cart .button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
    font-size: initial !important;
    margin: 0 !important;
    line-height: normal !important;
    cursor: pointer !important;
    position: static !important;
    text-decoration: none !important;
    overflow: visible !important;
    padding: 0 !important;
    font-weight: normal !important;
    border-radius: 0 !important;
    left: auto !important;
    color: inherit !important;
    background-color: transparent !important;
    border: none !important;
    display: inline-block !important;
    background-image: none !important;
    box-shadow: none !important;
    text-shadow: none !important;
}



body,
html {
    overflow-x: hidden !important;
}

.page_content {
    width: 100%;
    overflow-x: hidden;
    position: relative;
}

.product-grid-section .container,
.best-selling .container,
.editorial-focus .container,
.shipping-container .container,
.slider-product .container {
    padding-left: 15px !important;
    padding-right: 15px !important;
    width: 100% !important;
    box-sizing: border-box;
}

.product-grid-section .row,
.best-selling .row {
    margin-left: -7.5px !important;
    margin-right: -7.5px !important;
}

.product-grid-section .col-xs-6,
.best-selling .col-md-4 {
    padding-left: 7.5px !important;
    padding-right: 7.5px !important;
}



.custom-slider-wrap {
    position: relative;
    padding: 0 50px;
}

.custom-owl-prev,
.custom-owl-next {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    z-index: 999;
    width: 35px;
    height: 35px;
    background: #000000;
    color: #ffffff;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.custom-owl-prev {
    left: 0;
}

.custom-owl-next {
    right: 0;
}

.custom-owl-prev:hover,
.custom-owl-next:hover {
    background: #444444;
}

.just-dropped-slider .owl-nav {
    display: none !important;
}

@media (max-width: 768px) {
    .custom-slider-wrap {
        padding: 0 35px;
    }

    .custom-owl-prev,
    .custom-owl-next {
        width: 28px;
        height: 28px;
        font-size: 16px;
    }
}