/** Shopify CDN: Minification failed

Line 6:40 Unexpected "/"

**/
* Custom Rug Categories Section Styles */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;1,400;1,500&family=Lato:ital,wght@0,400;0,600&display=swap');
 
.custom-rug-categories {
    margin: 0;
    padding: 0;
    font-family: 'Lato', sans-serif;
    background-color: #0c0c0c;
    position: relative;
    overflow: hidden;
}
 
/* Remove all section spacing */
.section-full-width {
    padding: 0 !important;
    margin: 0 !important;
}
 
/* Slider Container */
.rug-categories-slider-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}
 
.rug-categories-slider-wrapper {
    position: relative;
    width: 100%;
}
 
/* Horizontal Scrollable Slider */
.rug-categories-slider {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE and Edge */
    cursor: grab;
    padding: 0;
    margin: 0;
    width: 100%;
}
 
.rug-categories-slider::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari, Opera */
}
 
.rug-categories-slider.active {
    cursor: grabbing;
}
 
/* Category Slide */
.rug-category-slide {
    flex: 0 0 auto;
    width: 100%;
    scroll-snap-align: start;
 
    /* Responsive widths */
    width: 100%;
    /* Mobile: full width */
}
 
@media screen and (min-width: 750px) {
    .rug-category-slide {
        width: 50%;
        /* Tablet: half width */
    }
}
 
@media screen and (min-width: 990px) {
    .rug-category-slide {
        width: 33.333%;
        /* Desktop: one-third width */
    }
}
 
/* Category Card */
.rug-category-card {
    position: relative;
    overflow: hidden;
    margin: 0;
    padding: 0;
    height: 100%;
}
 
.rug-category-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
    height: 100%;
}
 
.rug-category-image-container {
    position: relative;
    overflow: hidden;
    height: 500px;
    /* Default height, can be overridden by section settings */
}
 
.rug-category-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s ease;
}
 
.rug-category-card:hover .rug-category-image {
    transform: scale(1.05);
}
 
/* Overlay */
.rug-category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.15) 45%, rgba(0, 0, 0, 0.08) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    box-sizing: border-box;
    transition: background 0.5s ease;
}
 
.rug-category-card:hover .rug-category-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 45%, rgba(0, 0, 0, 0.12) 100%);
}
 
.rug-category-content {
    text-align: center;
    transform: translateY(4px);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
 
.rug-category-card:hover .rug-category-content {
    transform: translateY(-4px);
}
 
.rug-category-prefix {
    display: block;
    font-family: 'Lato', sans-serif;
    font-size: 11px;
    font-weight: 600;
    color: #b08d55;
    margin-bottom: 14px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
}
 
.rug-category-title {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 36px;
    font-weight: 400;
    color: #ffffff;
    margin: 0;
    letter-spacing: 0.04em;
    line-height: 1.15;
    text-transform: uppercase;
}
 
.rug-category-divider {
    width: 40px;
    height: 1px;
    background-color: #b08d55;
    margin: 18px auto 0;
    transition: width 0.4s ease;
}
 
.rug-category-card:hover .rug-category-divider {
    width: 60px;
}
 
/* Navigation Buttons -- positioned at the bottom so they never collide
   with the vertically-centered category title */
.rug-categories-navigation {
    position: absolute;
    bottom: 28px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    padding: 0 28px;
    pointer-events: none;
    z-index: 10;
}
 
.rug-categories-nav-button {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: rgba(12, 12, 12, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s ease, border-color 0.3s ease;
    pointer-events: auto;
    backdrop-filter: blur(2px);
}
 
.rug-categories-nav-button:hover {
    background-color: #b08d55;
    border-color: #b08d55;
}
 
.rug-categories-nav-button svg {
    width: 18px;
    height: 18px;
}
 
/* Double Row Layout */
.custom-rug-categories[data-layout="double_row"] .rug-categories-slider {
    flex-wrap: wrap;
    height: auto;
}
 
.custom-rug-categories[data-layout="double_row"] .rug-category-slide {
    height: 50vh;
    min-height: 400px;
}
 
/* Responsive Adjustments */
@media screen and (max-width: 989px) {
    .rug-category-title {
        font-size: 32px;
    }
 
    .rug-category-image-container {
        height: 400px;
    }
 
    .rug-categories-nav-button {
        width: 40px;
        height: 40px;
    }
 
    .rug-categories-nav-button svg {
        width: 16px;
        height: 16px;
    }
}
 
@media screen and (max-width: 749px) {
    .rug-category-title {
        font-size: 26px;
    }
 
    .rug-category-prefix {
        font-size: 10px;
    }
 
    .rug-category-image-container {
        height: 350px;
    }
 
    .rug-categories-navigation {
        bottom: 20px;
        padding: 0 20px;
    }
 
    .rug-categories-nav-button {
        width: 36px;
        height: 36px;
    }
 
    .rug-categories-nav-button svg {
        width: 14px;
        height: 14px;
    }
}