.rtc-wrapper {
    font-family: Arial, sans-serif;
    margin: 0 auto;
    padding: 20px;
    background-color: #fafafa;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 10vh;
    box-sizing: border-box;
}

.rtc-wrapper .rtc-container {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 1200px;
    width: 100%;
    text-align: center;
    box-sizing: border-box;
}

.rtc-wrapper .rtc-section-title {
    font-size: 2.5em;
    color: #2B2C5A;
    margin-bottom: 30px;
    font-weight: bold;
    background: linear-gradient(to right, #f8d0a2, #c79a5b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.rtc-wrapper .rtc-categories {
    margin-bottom: 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.rtc-wrapper .rtc-category-btn {
    background-color: #2B2C5A;
    border: 1px solid #ccc;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.rtc-wrapper .rtc-category-btn:hover {
    background-color: #e0e0e0;
}

.rtc-wrapper .rtc-category-btn.active {
    background-color: #2B2C5A;
    color: #fff;
    border-color: #a0a0a0;
}

.rtc-wrapper .rtc-product-carousel {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    width: 100%;
}

.rtc-wrapper .rtc-product-list-wrapper {
    width: 100%;
    overflow: hidden;
    max-width: 100%;
}

.rtc-wrapper .rtc-product-list {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 20px;
    padding: 10px 0;
    width: fit-content;
}

.rtc-wrapper .rtc-product-item {
    min-width: 200px;
    max-width: 200px;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    text-align: center;
    padding: 15px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
}

.rtc-wrapper .rtc-product-item[data-product-color="red"] { background-color: #F8DADA; }
.rtc-wrapper .rtc-product-item[data-product-color="brown"] { background-color: #DCD7D0; }
.rtc-wrapper .rtc-product-item[data-product-color="gray"] { background-color: #E6E6E6; }
.rtc-wrapper .rtc-product-item[data-product-color="dark-gray"] { background-color: #D4D8D7; }

.rtc-wrapper .rtc-product-item img {
    max-width: 80%;
    height: auto;
    margin-bottom: 10px;
    border: 1px solid #eee;
    padding: 10px;
    background-color: #fff;
    border-radius: 5px;
    display: block;
}

.rtc-wrapper .rtc-product-name {
    font-weight: bold;
    color: #333;
    margin-top: 10px;
    font-size: 1em;
}

.rtc-wrapper .rtc-nav-arrow {
    background-color: #007bff;
    color: #fff;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.5em;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    min-height: 44px;
}

.rtc-wrapper .rtc-nav-arrow:hover {
    background-color: #0056b3;
}

/* Responsive tweaks */
@media (max-width: 768px) {
    .rtc-wrapper .rtc-product-item { min-width: 160px; max-width: 160px; }
}
@media (max-width: 480px) {
    .rtc-wrapper .rtc-product-item { min-width: 130px; max-width: 130px; }
}
.rtc-wrapper .rtc-nav-arrow:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}