.dc-swiper {
  position: relative;
}
.dc-swiper .swiper-btn {
  position: absolute;
  top: 50%;
}

.dc-swiper .swiper-btn.prev-btn {
  left: 0;
  right: auto;
}
.dc-swiper .swiper-btn.next-btn {
  right: 0;
  left: auto;
}

.swiper-btn {
    background-color: #d4d4d44d;
    border-radius: 9999px;
    width: 40px;
    height: 40px;
    display: flex;
    left: 50%;
    position: relative;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.swiper-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

.swiper-btn svg path {
    fill: #452c1e;
    transition: fill 0.3s ease;
}

.swiper-btn img {
    width: 14px;
    height: 14px
}

.swiper-btn.swiper-button-disabled {
    opacity: 0;
    visibility: hidden
}

.dc-swiper .swiper-btn.prev-btn {
    transform: translateX(calc(-100% - 20px)) translateY(-100%);
}
.dc-swiper .swiper-btn.prev-btn img {
  transform: rotate(-180deg);
}

@media screen and (max-width: 479px) {
    .swiper-btn.prev-btn {
        display:none !important
    }
}

.dc-swiper .swiper-btn.next-btn {
    transform: translateX(calc(100% + 20px)) translateY(-100%);
}

@media screen and (max-width: 479px) {
    .swiper-btn.next-btn {
        display:none !important
    }
}

.swiper-pagination {
    position: relative !important
}

.swiper-bullet span {
    background-color: #D4D4D4 !important
}

.cor-roller-paging-active {
    background: transparent !important;
    opacity: 1 !important;
    width: 50px
}

.cor-roller-paging-active span {
    background-color: #127749 !important
}

/* Unified Slider Styles */
.unified-slider {
    position: relative;
    width: 100%;
    /* overflow: hidden; */
}

.unified-slider .slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.unified-slider .swiper {
    height: 100%;
}

.unified-slider .swiper-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.unified-slider .swiper-slide {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Hero Style Specific */
.unified-slider .slide-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.unified-slider .slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Grid System like Rolex */
.slide-content-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 0 2vw;
    padding: 0 8vw;
    z-index: 2;
    align-items: center;
}

.slide-text {
    grid-column: 2 / span 10;
    margin-bottom: 70px;
    align-self: end;
}

@media (min-width: 48rem) {
    .slide-text {
        grid-column: 8 / span 6;
        align-self: center;
        margin-bottom: 0;
    }
}

.slide-kicker {
    font-size: clamp(1.375rem, 1.25rem + .3125vw, 1.625rem);
    opacity: 0.9;
    font-weight: 700;
    line-height: 1.1;
}

.slide-title {
    font-size: clamp(2.25rem, 1.1875rem + 2.6563vw, 4.375rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 30px;
    word-break: break-word;
    hyphens: auto;
}

.slide-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 120px;
    height: 44px;
    padding: 0 30px;
    background-color: #127749;
    color: white;
    font-weight: bold;
    font-size: 0.9rem;
    border-radius: 22px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.slide-button:hover {
    background-color: #0f5f3a;
}

/* Pagination Dots */
.unified-slider .slider-pagination {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.unified-slider .swiper-pagination {
    display: flex;
    gap: 8px;
    justify-content: center;
}

.unified-slider .swiper-pagination-bullet {
    width: 20px;
    height: 4px;
    border-radius: 3px;
    background: #D4D4D4;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease-out;
    opacity: 1;
}

.unified-slider .swiper-pagination-bullet:hover {
    background: #D4D4D4;
}

.unified-slider .swiper-pagination-bullet-active {
    width: 50px;
    background: #127749;
    border-radius: 3px;
}

/* Dark theme: change individual dot background to #5a3825 */
.unified-slider .slider-pagination.theme-light .swiper-pagination-bullet {
    background: #5a3825; /* Dark theme dot color */
}


.unified-slider .slider-pagination.theme-light .swiper-pagination-bullet:hover {
    background: #5a3825; /* No color change on hover for dark theme */
}

.unified-slider .slider-pagination.theme-light .swiper-pagination-bullet-active {
    background: #127749; /* Keep same active color */
}

/* Content slider specific styles */
.unified-slider.keep-exploring-section .swiper-slide {
    height: auto;
}

.unified-slider.keep-exploring-section .swiper-wrapper {
    height: auto;
}

.unified-slider.keep-exploring-section .swiper {
    height: auto;
}

.unified-slider.keep-exploring-section .slider-pagination {
    position: relative;
    bottom: auto;
    left: auto;
    transform: none;
    margin-top: 30px;
    display: flex;
    justify-content: center;
}

.unified-slider.keep-exploring-section .swiper-pagination {
    position: static;
    display: flex;
    /* gap: 8px; */
    justify-content: center;
}

/* Hero slider navigation - position arrows properly within the slider */
.unified-slider .swiper-btn {
    opacity: 0.8;
    z-index: 10;
}

.unified-slider .swiper-btn.prev-btn {
    transform: translateX(100%) translateY(-50%);
}

.unified-slider .swiper-btn.next-btn {
    transform: translateX(calc(-100%)) translateY(-50%);
}

/* Content slider navigation - keep arrows outside for content sliders */
.unified-slider.keep-exploring-section .swiper-btn.prev-btn {
    transform: translateX(calc(-100% - 20px)) translateY(-100%);
}

.unified-slider.keep-exploring-section .swiper-btn.next-btn {
    transform: translateX(calc(100% + 20px)) translateY(-100%);
}

/* Show nav buttons more prominently on hover for desktop */
@media (min-width: 48rem) {
    .unified-slider:hover .swiper-btn {
        opacity: 1;
    }
}

/* Mobile Responsive */
@media (max-width: 47.9375rem) {
    .slide-content-grid {
        padding: 0 4vw;
    }
    
    .slide-title {
        font-size: 2.5rem;
        margin-bottom: 20px;
        max-width: 350px;
    }
    
    .unified-slider .slider-pagination {
        bottom: 20px;
        gap: 8px;
    }
    
    .unified-slider .swiper-pagination-bullet {
        width: 16px;
        height: 5px;
    }
    
    .unified-slider .swiper-pagination-bullet-active {
        width: 40px;
    }
    
    .unified-slider.keep-exploring-section .slider-pagination {
        margin-top: 20px;
    }
}

.cover-carousel .swiper-slide img {
    aspect-ratio: 322/433
}

@media screen and (min-width: 768px) {
    .cover-carousel .swiper-slide img {
        aspect-ratio:96/35
    }
}

.cover-carousel .swiper-slide .light-theme {
    color: #fff
}

.cover-carousel .swiper-slide .dark-theme {
    color: #000
}

.cover-carousel .cover-carousel-swiper-pagination .swiper-bullet span {
    transition: all 0.2s
}

.cover-carousel .cover-carousel-swiper-pagination:not(.theme-dark) .swiper-bullet span {
    background-color: #fff !important
}

.cover-carousel .cover-carousel-swiper-pagination.theme-dark .swiper-bullet span {
    background-color: #000 !important
}
