* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: transparent !important;
}

html, body {
    overflow: hidden;
    font-family: Arial, sans-serif;
    width: 750px;
    height: 275px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    width: 750px;
    height: 275px;
    position: relative;
}

/* Top Navigation Bar */
.top-nav {
    height: 46px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    color: #d4a574;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.nav-link:hover {
    color: #f0c896;
}

.nav-separator {
    color: #d4a574;
    font-size: 14px;
}

.social-icons {
    display: flex;
    gap: 12px;
    align-items: center;
}

.social-icon {
    display: block;
    width: 32px;
    height: 32px;
    cursor: pointer;
    transition: opacity 0.2s;
}

.social-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Carousels Wrapper */
.carousels-wrapper {
    display: flex;
    gap: 18px;
}

/* Carousel Container */
.carousel-container {
    position: relative;
    overflow: hidden;
}

.left-carousel {
    width: 508px;
    height: 229px;
}

.right-carousel {
    width: 224px;
    height: 229px;
}

.carousel-slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
    height: 100%;
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.carousel-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    flex-shrink: 0;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.left-carousel .carousel-slide {
    width: 508px;
    height: 229px;
}

.right-carousel .carousel-slide {
    width: 224px;
    height: 229px;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    transform: translateZ(0);
}

/* Navigation Arrows */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 15;
    transition: opacity 0.3s;
    width: 40px;
    height: 40px;
}

.carousel-nav img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.carousel-nav.prev {
    left: 20px;
}

.carousel-nav.next {
    right: 20px;
}

/* Carousel Dots */
.carousel-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 15;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.dot.active {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(255, 255, 255, 0.9);
}

.dot:hover {
    background: rgba(255, 255, 255, 0.7);
}
