    /*
    Theme Name: Kadence Child
    Template: kadence
    Version: 1.0.7
    */
    body,
    .single-collection-container,
    .product-header h2,
    .product-description,
    .technical-properties,
    .technical-properties h2,
    .technical-properties table,
    .product-gallery,
    .product-gallery img,
    .collection-title,
    .collection-item a,
    .product-image img {
        font-family: "ZapfHumnst", sans-serif !important;
    }


    .single-collection-container {
        display: grid;
        grid-template-columns: 3fr 1fr;
        gap: 30px;
        font-family: Arial, sans-serif;
        line-height: 1.6;
        align-items: start;
        /* Align content to the top */
        width: 100%;

    }

    .content-area,
    .container,
    .single-collection-container {
        max-width: 100%;
        /* Use full width of the viewport */
        padding: 0;
        margin: 0;
    }

    .collection-left {
        display: flex;
        flex-direction: column;
        /* Stack the featured image and gallery vertically */
        align-items: center;
        /* Center align content */
        gap: 20px;
        /* Space between the featured image and the gallery */
        width: 100%;
        /* Ensure full-width container */
    }

    .collection-right {
        display: flex;
        align-items: left;
        flex-direction: column;
        /* Stack description and technical properties */
        margin-top: 10px;
        margin-left: -50px;
    }

    /* Header Section */
    .product-header {
        grid-column: span 2;
        text-align: left;
        margin-bottom: 20px;
    }

    .product-title {
        font-size: 2.5rem;
        font-weight: bold;
        color: #A57164;
    }

    /* Product Title */
    .product-header h2,
    /* Adjust for your product title selector */
    .technical-properties h2 {
        color: #A57164;
        /* Apply the desired color */
        font-weight: bold;
        /* Ensure it's bold for emphasis */
    }

    /* Additional Styling (Optional) */
    .product-header h2 {
        font-size: 2rem;
        /* Adjust font size for the product title */
        margin-bottom: 10px;
        /* Add some spacing below the title */
    }

    .technical-properties h2 {
        font-size: 1.5rem;
        /* Adjust font size for the section heading */
        margin-top: 20px;
        /* Add some spacing above the heading */
    }

    /* Left Section: Description and Details */
    .product-description {
        grid-column: 2 / 3;
        /* Place this in the second column */
        width: 90%;
        /* Ensure it spans the entire width of the column */
        max-width: 800px;
        /* Fixed width horizontally */
        height: 385px;
        background-color: #fff;
        overflow: hidden;
        /* Allow vertical expansion */
        word-wrap: break-word;
        /* Wrap long text */
        line-height: 1.8;
        text-align: justify;
    }

    .technical-properties {
        margin-top: auto;
        padding: 15px;
        background-color: #f0;

    }

    .technical-properties table {
        width: 90%;
        border-collapse: collapse;
        margin-top: 10px;
    }

    .technical-properties th,
    .technical-properties td {
        padding: 10px;
        text-align: left;
        font-size: 1rem;
    }

    .technical-properties tr:nth-child(odd) {
        background-color: #f5f5f5;
    }

    .technical-properties tr:nth-child(even) {
        background-color: #ffffff;
    }

    /* Material and Color Section */
    .product-materials,
    .product-colors {
        margin-top: 20px;
    }

    .product-materials h3,
    .product-colors h3 {
        font-size: 1.2rem;
        color: #555;
    }

    /* Right Section: Image and Gallery */
    .product-image-gallery {
        grid-column: 1 / 2;
        /* Place this in the first column */
        display: flex;
        flex-direction: column;
        gap: 20px;
        align-items: center;
        margin-top: -500px;
    }

    .product-image {
        width: 960px;
        /* Fixed width for the featured image */
        height: 600px;
        /* Fixed height for the featured image */
        overflow: hidden;
        /* Hide any overflow */
        position: relative;
        /* Allow absolute positioning inside */
        display: flex;
        align-items: center;
        /* Center the image vertically */
        justify-content: center;
        /* Center the image horizontally */
        border-radius: 5px;
        /* Optional: Rounded corners for aesthetics */
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        /* Optional: Add shadow */
    }

    .product-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        /* Scale the image to fill the container */
        object-position: center;
        /* Center the cropped image */
    }

    .product-gallery {
        display: grid;
        grid-template-columns: repeat(10, 1fr);
        /* Responsive grid layout */
        gap: 10px;
        /* Space between gallery images */
        width: 960px;
        /* Match the width of the featured image */
    }

    .product-gallery img {
        width: 100%;
        /* Stretch to fill grid item */
        height: 80px;
        /* Uniform height for gallery images */
        object-fit: cover;
        /* Crop and scale the image */
        object-position: center;
        /* Center the cropped image */
        border-radius: 5px;
        /* Optional: Rounded corners */
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        /* Optional: Add shadow */
    }

    /* Responsive Design */
    @media (max-width: 768px) {
        .single-collection-container {
            grid-template-columns: 1fr;
        }

        .product-header {
            grid-column: span 1;
        }

        .product-gallery img {
            width: 60px;
            height: 60px;
        }
    }


    /* Responsive Design */
    @media (max-width: 768px) {
        .product-content {
            grid-template-columns: 1fr;
        }

        .product-right {
            margin-top: 20px;
        }
    }




    .collection-filters {
        display: flex;
        justify-content: space-between;
        /* Align start with logo and end with search box */
        align-items: center;
        /* Vertically align everything */
        max-width: 1400px;
        /* Match the header width */
        margin: 0 auto;
        /* Center align with the page */
        padding: 0;
        /* No extra padding */
        width: 100%;
        /* Full-width container */
        box-sizing: border-box;
        /* Include padding and border in width calculation */
    }

    .filter-container {
        display: flex;
        justify-content: space-between;
        /* Space out groups and actions */
        align-items: center;
        /* Vertically align items */
        width: 100%;
        /* Full width */
    }

    .filter-buttons-wrapper {
        display: flex;
        flex-wrap: nowrap;
        /* Keep buttons in one line */
        gap: 8px;
        /* Add space between buttons */
        flex: 1;
        /* Allow buttons to fill available space */
        justify-content: flex-start;
        /* Align buttons to the left */
        overflow-x: auto;
        /* Allow horizontal scrolling if needed */
    }

    .filter-group {
        display: flex;
        align-items: center;
        /* Vertically align label and buttons */
        gap: 8px;
        /* Space between label and buttons */
    }

    .filter-group label {
        font-weight: bold;
        font-size: 0.85rem;
        /* Adjust font size */
        white-space: nowrap;
        /* Prevent wrapping */
        margin-right: -5px;
        /* Add space after the label */
        margin-left: 5px;
    }

    .filter-buttons {
        display: flex;
        gap: 3px;
        /* Add space between buttons */
        flex-wrap: nowrap;
        /* Prevent buttons from wrapping */
    }

    .filter-button {
        padding: 6px 12px;
        /* Adjust padding for compact size */
        font-size: 0.8rem;
        /* Adjust font size */
        background-color: white;
        color: #A57164;
        border: 1px solid #A57164;
        border-radius: 4px;
        /* Add a slight curve */
        cursor: pointer;
        white-space: nowrap;
        /* Prevent text wrapping */
        transition: background-color 0.3s ease, color 0.3s ease;
    }

    .filter-button:hover {
        background-color: #A57164;
        color: white;
    }

    .filter-button.selected {
        background-color: #A57164;
        color: white;
    }

    .filter-actions {
        display: flex;
        gap: 3px;
        /* Space between Filter and Reset buttons */
        justify-content: flex-end;
        /* Align actions to the right */
        align-items: center;
        /* Vertically align buttons */
        margin-left: 225px;
    }

    .filter-actions button {
        padding: 6px 12px;
        /* Adjust padding */
        font-size: 0.8rem;
        font-weight: 600;
        /* Slightly bolder font */
        background-color: white;
        color: #A57164;
        border: 1px solid #A57164;
        border-radius: 4px;
        /* Add slight curve */
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .filter-actions button:hover {
        background-color: #A57164;
        color: white;
    }

    .filter-actions button:active {
        background-color: #A57164;
        color: white;
    }

    #reset-filters {
        background-color: white;
        color: #A57164;
    }

    #reset-filters:hover {
        background-color: #A57164;
        color: white;
    }

    #reset-filters:active {
        background-color: #A57164;
        color: white;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
        .collection-filters {
            flex-direction: column;
            /* Stack items vertically */
            align-items: flex-start;
            /* Align to the start */
            padding: 0 10px;
            /* Adjust padding */
        }

        .filter-container {
            flex-wrap: wrap;
            /* Allow wrapping */
            gap: 15px;
            /* Adjust spacing */
        }

        .filter-buttons-wrapper {
            flex-wrap: wrap;
            /* Allow buttons to wrap */
            gap: 10px;
        }

        .filter-actions {
            justify-content: flex-start;
            /* Align actions to the start */
            width: 100%;
            /* Full width */
        }
    }

    /* Grid Styling */
    .collection-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        /* 4 columns */
        gap: 5px;
        margin-top: 10px;
        padding: 10px 15px;
        width: 100%;
        /* Ensure full width */
    }

    /* Collection Item */
    /* Collection Item */
    .collection-item {
        display: flex;
        flex-direction: column;
        /* Stack image and title vertically */
        justify-content: space-between;
        /* Ensure space between image and title */
        align-items: stretch;
        /* Stretch content to full width */
        text-align: center;
        /* Center align title */
        width: 100%;
        /* Full width of the grid column */
        height: auto;
        /* Dynamically adjust height */
        overflow: hidden;
    }

    /* Collection Item Link */
    .collection-item a {
        display: flex;
        /* Use flexbox to align content */
        flex-direction: column;
        width: 100%;
        /* Full width of the parent container */
        text-decoration: none;
        /* Remove underlines */
        color: inherit;
        /* Inherit color from parent */
        align-items: stretch;
        /* Ensure it stretches fully */
        justify-content: center;
        /* Align content to the center */
    }

    /* Product Thumbnail Container */
    .collection-image {
        width: 100%;
        /* Full width of the grid column */
        height: 250px;
        /* Fixed height */
        overflow: hidden;
        /* Crop overflow */
        display: flex;
        align-items: center;
        /* Center image vertically */
        justify-content: center;
        /* Center image horizontally */
        margin-bottom: 10px;
    }

    .collection-image img {
        width: 100%;
        /* Stretch to fill container width */
        height: 100%;
        /* Stretch to fill container height */
        object-fit: cover;
        /* Ensure the image fills the container while cropping */
        object-position: center;
        /* Crop from the center */
        display: block;
        /* Consistent rendering */
    }



    /* Title Styling */
    .collection-title {
        font-size: 1rem;
        /* Adjust font size */
        font-weight: normal;
        /* Use normal weight for text */
        color: #A57164;
        /* Ensure readability */
        line-height: 1.2;
        /* Adjust spacing for readability */
        text-align: center;
        /* Center-align title text */
        overflow: hidden;
        /* Prevent long text from spilling out */
        text-overflow: ellipsis;
        /* Add ellipsis for long titles */
        white-space: nowrap;
        /* Keep title on one line */
    }

    /* Responsive Design for Tablets */
    @media (max-width: 1024px) {
        .collection-grid {
            grid-template-columns: repeat(4, 1fr);
        }
    }

    /* Responsive Design for Mobile */
    @media (max-width: 768px) {
        .collection-grid {
            grid-template-columns: repeat(2, 1fr);
        }

        .collection-filters {
            flex-direction: column;
            gap: 10px;
        }

        .collection-filters label,
        .collection-filters select {
            width: 100%;
        }
    }

    /* Responsive Design for Smaller Mobile Screens */
    @media (max-width: 480px) {
        .collection-grid {
            grid-template-columns: 1fr;
        }
    }

    .product-slider-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 20px;
        text-align: center;
        position: relative;

    }

    .slider-item img {
        width: 100%;
        height: auto;
        max-height: 650px;
        object-fit: cover;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        overflow: hidden;
    }

    /* Adjust the size of the arrow containers */
    .slick-prev,
    .slick-next {
        width: 50px;
        /* Increase the width */
        height: 50px;
        /* Increase the height */
        background: none;
        /* White background with transparency */
        border: none;
        outline: none;
        display: flex;
        align-items: center;
        /* Center content vertically */
        justify-content: center;
        /* Center content horizontally */
        cursor: pointer;
        transition: all 0.3s ease;
        z-index: 1000 !important;
        /* Ensure it is above other elements */
    }

    /* Hover Effect */
    .slick-prev:hover,
    .slick-next:hover {
        background: rgba(255, 255, 255, 0.8);
        /* Less transparent on hover */
        transform: scale(1.1);
        /* Slight enlargement on hover */
    }

    /* Adjust the arrow icons */
    .slick-prev::before,
    .slick-next::before {
        font-size: 2rem !important;
        /* Increase the size of the arrow icons */
        color: black;
        /* Ensure the arrows are visible */
        content: '';
        /* Add custom styles here if needed */
        display: inline-block;
    }

    /* Position adjustments */
    .slick-prev {
        left: 10px !important;
        /* Adjust spacing from the left */
    }

    .slick-next {
        right: 20px !important;
        /* Adjust spacing from the right */
    }

    /* Dots (Optional) */
    .slick-dots {
        bottom: -30px;
        display: flex !important;
        justify-content: center;
        list-style: none;
        padding: 0;
    }

    .slick-dots li {
        margin: 0 5px;
    }

    .slick-dots li button {
        border: none;
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background-color: rgba(78, 77, 77, 0.5);
        cursor: pointer;
        transition: background-color 0.3s ease;
    }

    .slick-dots li.slick-active button {
        background-color: rgba(104, 103, 103, 0.8);
    }

    /* Close Button Styling */
    .close-btn {
        position: absolute;
        /* Position relative to the container */
        top: 15px;
        /* Adjust distance from the top of the image */
        right: 15px;
        /* Adjust distance from the right of the image */
        font-size: 1rem;
        /* Slightly smaller text size for the 'X' */
        font-weight: bold;
        /* Make it bold */
        color: black;
        /* Change text color to black */
        background: rgba(255, 255, 255, 0.6);
        /* White background with 0.6 alpha */
        border: none;
        /* Remove border */
        border-radius: 50%;
        /* Circular background */
        width: 30px;
        /* Slightly smaller width */
        height: 30px;
        /* Slightly smaller height */
        display: flex;
        /* Center the 'X' */
        align-items: center;
        /* Vertically align 'X' */
        justify-content: center;
        /* Horizontally align 'X' */
        cursor: pointer;
        /* Pointer cursor */
        z-index: 1000;
        /* Ensure it's above other elements */
        transition: background-color 0.3s ease, transform 0.3s ease;
        /* Smooth hover and transform effects */
        margin-top: 5px;
        margin-right: 5px;
        text-decoration: none;
    }

    /* Hover Effect for Close Button */
    .close-btn:hover {
        background: rgba(255, 255, 255, 0.8);
        /* White background with 0.8 alpha on hover */
        transform: scale(1.1);
        /* Slightly enlarge on hover */
        color: black;
        /* Keep the text color black */
    }