/* -----------------------------------------
   WRAPPER
------------------------------------------ */
.dt-rs-wrapper {
    background: #131518;
    padding: 20px 0;
    font-family: 'Poppins';
}
@media(min-width:1024px){.dt-rs-card {
  margin: 0px 10px
    }}
.dt-rs-nav{
    display: none !important;
}
.dt-rs-tab-icon {
    padding-right: 20px
}
.dt-rs-tab{
    display: flex;
margin-right: 10px;
}

/* -----------------------------------------
   TABS
------------------------------------------ */
.dt-rs-tabs {
    display: flex;
    border-bottom: 1px solid #c6a977;
    margin-bottom: 20px;
    gap: 2px;
    flex-wrap: wrap;
}

.dt-rs-tab {
    padding: 12px 24px;
    border: none;
    background: #f7f7f7;
    cursor: pointer;
    font-weight: 600;
    font-size: 16px;
    color: #444;
    display: flex;
    align-items: center;
    gap: 8px;
margin-right: 10px;
}

.dt-rs-tab.active,.dt-rs-tab:hover {
    background: #c6a977 !important;
    border: 1px solid #c6a977;
    color: #fff !important;
font-weight: 600;
}
.dt-rs-tab{
	color:#c6a977 !important;
border-color:#c6a977 !important;
border:6px 6px 0px 0px !important;
}

/* Tab icons */
.dt-rs-tab-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    flex-shrink: 0;
display:none !important
}

.dt-rs-tab-icon-all {
    background-color: #f6b800;
    position: relative;
}
.dt-rs-tab-icon-all::after {
    content: "★";
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: #000;
}

.dt-rs-tab-icon-google {
    background-color: #fff;
    border: 1px solid #ddd;
    position: relative;
}
.dt-rs-tab-icon-google::after {
    content: url('https://gunayydin.myskyworks.com/wp-content/uploads/2025/11/icons8-google-18.png');
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #4285F4;
}

.dt-rs-tab-icon-tripadvisor {
    background-color: #fff;
    border: 1px solid #ddd;
    position: relative;
}
.dt-rs-tab-icon-tripadvisor::after {
     content: url('https://gunayydin.myskyworks.com/wp-content/uploads/2025/11/trip-advisor.png');
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #34E0A1;
}

.dt-rs-panel {
    display: none;
}

.dt-rs-panel.active {
    display: block;
}

/* -----------------------------------------
   SLIDER STRUCTURE
------------------------------------------ */
.dt-rs-slider {
    position: relative;
    display: flex;
    align-items: center;
}

.dt-rs-viewport {
    overflow: hidden;
    width: 100%;
}

.dt-rs-track {
    display: flex;
    transition: transform 0.4s ease;
    /* IMPORTANT: no gap, no margin */
}

/* -----------------------------------------
   CARD LAYOUT (MOST IMPORTANT PART)
------------------------------------------ */

/* Mobile: 1 card */
.dt-rs-card {
    flex: 0 0 100%;
    max-width: 100%;
    background: #fff7ec;
    border-radius: 16px;
    padding: 20px;
    box-sizing: border-box;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

/* Tablet: 2 cards */
@media (min-width: 768px) {
    .dt-rs-card {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

/* Desktop: 4 cards */
@media (min-width: 1024px) {
    .dt-rs-card {
        flex: 0 0 25%;
        max-width: 25%;
    }
}

/* -----------------------------------------
   CARD CONTENT
------------------------------------------ */
.dt-rs-header {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.dt-rs-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #f58a33;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 22px;
    margin-right: 12px;
}

.dt-rs-meta {
    display: flex;
    flex-direction: column;
}

.dt-rs-name {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 2px;
}

.dt-rs-date {
    font-size: 13px;
    color: #777;
}

.dt-rs-rating {
    margin-bottom: 10px;
}

.dt-rs-star {
    font-size: 18px;
    color: #ddd;
}

.dt-rs-star.filled {
    color: #f6b800;
}

.dt-rs-content {
    font-size: 14px;
    line-height: 1.5;
    color: #444;
    margin-bottom: 15px;
}

.dt-rs-footer {
    font-size: 13px;
    font-weight: 600;
    color: #14a800;
    display: flex;
    align-items: center;
}

.dt-rs-posted {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.dt-rs-posted-icon {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

/* Posted icon replacement */
.dt-rs-posted-google .dt-rs-posted-icon {
    background-color: #fff;
    border: 1px solid #ddd;
    position: relative;
}
.dt-rs-posted-google .dt-rs-posted-icon::after {
    content: "G";
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    color: #4285F4;
}

.dt-rs-posted-tripadvisor .dt-rs-posted-icon {
    background-color: #fff;
    border: 1px solid #ddd;
    position: relative;
}
.dt-rs-posted-tripadvisor .dt-rs-posted-icon::after {
    content: "T";
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    color: #34E0A1;
}

/* -----------------------------------------
   NAV BUTTONS
------------------------------------------ */
.dt-rs-nav {
    border: none;
    background: #f3b267;
    color: #fff;
    width: 36px;
    height: 36px;
    border-radius: 999px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
