@font-face {
    font-family: "FancyCut";
    src: url("../fonts/FancyCut-Light.ttf") format("truetype");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "FancyCut";
    src: url("../fonts/FancyCut-LightItalic.ttf") format("truetype");
    font-weight: 300;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: "FancyCut";
    src: url("../fonts/FancyCut-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "FancyCut";
    src: url("../fonts/FancyCut-RegularItalic.ttf") format("truetype");
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: "FancyCut";
    src: url("../fonts/FancyCut-Medium.ttf") format("truetype");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "FancyCut";
    src: url("../fonts/FancyCut-Bold.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "FancyCut";
    src: url("../fonts/FancyCut-BoldItalic.ttf") format("truetype");
    font-weight: 700;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: "BrilliantCut";
    src: url("../fonts/BrilliantCut-Light.ttf") format("truetype");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "BrilliantCut";
    src: url("../fonts/BrilliantCut-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "BrilliantCut";
    src: url("../fonts/BrilliantCut-Medium.ttf") format("truetype");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "BrilliantCut";
    src: url("../fonts/BrilliantCut-Bold.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "BrilliantCut";
    src: url("../fonts/BrilliantCut-Black.ttf") format("truetype");
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "BrilliantCut", "Times New Roman", serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.iwc-demo p,
.iwc-demo a {
    font-family:
        "Jost", "futura-pt", "Futura PT", "Helvetica Neue", Arial, sans-serif;
}

.iwc-demo .nav-menu a {
    font-family:
        "Jost", "futura-pt", "Futura PT", "Helvetica Neue", Arial, sans-serif;
    font-weight: 500;
}

/* Header */
.header {
    background-color: #fff;
    border-bottom: 1px solid #e0e0e0;
    top: 0;
    z-index: 1000;
}

/* Top Banner */
.top-banner {
    background-color: #f8f8f8;
    padding: 12px 0;
    text-align: center;
    font-size: 12px;
    color: #333;
    letter-spacing: 0.5px;
    border-bottom: 1px solid #e0e0e0;
}

.banner-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 20px;
}

.banner-item {
    flex: 1;
    text-align: center;
}

.banner-title {
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 2px;
    font-size: 11px;
}

.banner-subtitle {
    font-size: 10px;
    color: #666;
    font-weight: 400;
}

/* Main Navigation */
.main-nav {
    padding: 0;
    background: #fff;
}

.nav-container {
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
}

.logo {
    display: block;
    height: 73px;
    text-decoration: none;
}

.logo img {
    height: 100%;
    width: auto;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    text-decoration: none;
    color: #000000;
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 0.0625rem;
    font-weight: 600;
    transition: color 0.3s ease;
    padding: 5px 0;
}

.nav-menu a:hover {
    color: #000;
}

.nav-icons {
    display: flex;
    gap: 20px;
    align-items: center;
}

.nav-icons i {
    font-size: 16px;
    color: #333;
    cursor: pointer;
    transition: color 0.3s ease;
}

.nav-icons i:hover {
    color: #000;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 20px;
    height: 2px;
    background-color: #333;
    margin: 2px 0;
    transition: 0.3s;
}

/* Hero Slider */
.hero-slider {
    position: relative;
    width: 100%;
    height: 496px;
    overflow: hidden;
}

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

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #000;
    z-index: 10;
}

.slide-title {
    font-family: "Times New Roman", serif;
    font-size: 48px;
    font-style: italic;
    margin-bottom: 30px;
    letter-spacing: 3px;
}

.slide-button {
    display: inline-block;
    background-color: #000;
    color: #fff;
    text-decoration: none;
    padding: 12px 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 12px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid #000;
}

.slide-button:hover {
    background-color: transparent;
    color: #000;
}

/* Slider Navigation */
.slider-nav {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.nav-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.nav-dot.active {
    background-color: #fff;
}

/* Slider Arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.8);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 16px;
    color: #333;
    transition: all 0.3s ease;
    z-index: 10;
}

.slider-arrow:hover {
    background: rgba(255, 255, 255, 1);
}

.slider-arrow.prev {
    left: 30px;
}

.slider-arrow.next {
    right: 30px;
}

.service-info {
    margin-top: 30px;
    background-color: #f8f8f8;
    padding: 20px 0;
}

.service-container {
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 20px;
}

.service-carousel {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
}

.service-item {
    flex: 1;
    text-align: center;
    padding: 0 20px;
    opacity: 1;
    transition: opacity 0.5s ease-in-out;
}

.service-item.mobile-hidden {
    display: none;
}

.service-title {
    font-family: "Jost", "futura-pt", "Futura PT", sans-serif;
    font-size: 17px;
    font-weight: 500;
    color: #000;
    letter-spacing: 0.5px;
    line-height: 23px;
    margin-bottom: 6px;
    text-transform: uppercase;
}

.service-subtitle {
    font-family: "Jost", "futura-pt", "Futura PT", sans-serif;
    font-weight: 400;
    letter-spacing: 0;
    font-size: 1rem;
    line-height: 1.5rem;
    color: #000;
    text-align: center;
}

.service-dots {
    display: none;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.service-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.service-dot.active {
    background-color: #000;
}

/* Cartier Watches Section */
.iwc-watches-section {
    padding: 80px 0;
    background-color: #fff;
}

.iwc-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-family: "Libre Baskerville", "baskerville-urw", "Baskerville", serif;
    font-size: 2rem;
    font-weight: 400;
    color: #000;
    letter-spacing: 0.375rem;
    line-height: 2.5rem;
    margin-bottom: 40px;
    text-transform: uppercase;
}

.section-description {
    max-width: 900px;
    margin: 0 auto;
}

p {
    font-family: "Jost", "futura-pt", "Futura PT", sans-serif;
    font-weight: 400;
    letter-spacing: 0;
    font-size: 1rem;
    line-height: 1.5rem;
    color: #000;
    text-align: center;
}

.category-section {
    margin-top: 60px;
}

.category-title {
    font-family: "Libre Baskerville", "baskerville-urw", "Baskerville", serif;
    font-size: 1.375rem;
    font-weight: 400;
    color: #000;
    letter-spacing: 0.25rem;
    text-align: center;
    text-align: left;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.category-item {
    text-align: left;
    cursor: pointer !important;
}

.category-image {
    width: 100%;
    overflow: hidden;
    margin-bottom: 20px;
    border-radius: 0;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.category-item:hover .category-image img {
    transform: scale(1.05);
}

.category-name {
    font-family: "Jost", "futura-pt", "Futura PT", sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 0px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.category-link {
    font-family: "Jost", "futura-pt", "Futura PT", sans-serif;
    font-size: 1rem;
    color: #000000;
    text-align: left;
    text-decoration: underline !important;
    transition: color 0.3s ease;
    text-transform: capitalize;
}

.category-link:hover {
    color: #000;
}

/* Collections Section */
.collections-section {
    padding: 60px 0;
    background-color: #fff;
}

.collections-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.collection-item {
    display: flex;
    flex-direction: column;
    cursor: pointer !important;
}

.collection-image {
    width: 100%;
    overflow: hidden;
    cursor: pointer !important;
}

.collection-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.collection-item:hover .collection-image img {
    transform: scale(1.02);
}

.collection-content {
    padding: 40px 30px;
    text-align: center;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 200px;
}

.collection-title {
    font-family: "Jost", "futura-pt", "Futura PT", sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #000;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.collection-description {
    font-family: "Jost", "futura-pt", "Futura PT", sans-serif;
    font-weight: 400;
    letter-spacing: 0;
    font-size: 1rem;
    margin-bottom: 10px;
    line-height: 1.375rem;
    color: #000;
}

.collection-link {
    font-family: "Jost", "futura-pt", "Futura PT", sans-serif;
    font-size: 1rem;
    color: #000000;
    text-decoration: underline !important;
    transition: color 0.3s ease;
    text-transform: capitalize;
}

.collection-link:hover {
    color: #000;
}

/* Shop by Collection Section */
.shop-collection-section {
    padding: 80px 0;
    background-color: #fff;
}

.collection-main-title {
    font-family: "Libre Baskerville", "baskerville-urw", "Baskerville", serif;
    font-size: 1.375rem;
    font-weight: 400;
    color: #000;
    letter-spacing: 0.25rem;
    text-align: center;
    text-align: left;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.collection-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.collection-row:last-child {
    margin-bottom: 0;
}

.collection-product {
    text-align: left;
    cursor: pointer !important;
}

.collection-product-image {
    width: 100%;
    height: 320px;
    overflow: hidden;
    margin-bottom: 25px;
    background-color: #f5f5f5;
}

.collection-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    cursor: pointer !important;
}

.collection-product:hover .collection-product-image img {
    transform: scale(1.05);
    cursor: pointer !important;
}

.collection-product-title {
    font-family: "Jost", "futura-pt", "Futura PT", sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #000;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.collection-product-description {
    font-family: "Jost", "futura-pt", "Futura PT", sans-serif;
    font-weight: 400;
    letter-spacing: 0;
    font-size: 1rem;
    line-height: 1.375rem;
    color: #000;
    margin-bottom: 10px;
    text-align: left;
}

.collection-product-link {
    font-family: "Jost", "futura-pt", "Futura PT", sans-serif;
    font-size: 1rem;
    color: #000000;
    text-align: left;
    text-decoration: underline !important;
    transition: color 0.3s ease;
    text-transform: capitalize;
}

.collection-product-link:hover {
    color: #000;
}

/* Responsive Design */
@media (max-width: 768px) {
    .banner-content {
        flex-direction: column;
        gap: 15px;
    }

    .service-container {
        flex-direction: column;
        gap: 0;
        padding: 0 20px;
    }

    .service-carousel {
        position: relative;
        overflow: hidden;
    }

    /* .service-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 0;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.6s ease-in-out;
  } */

    .service-item.active {
        opacity: 1;
        transform: translateX(0);
    }

    .service-dots {
        display: flex;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 170px;
        left: 0;
        width: 100%;
        background: #fff;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        gap: 20px;
        z-index: 9999;
    }

    .nav-menu.active {
        display: flex;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .logo {
        height: 30px;
    }

    .hero-slider {
        height: auto;
        aspect-ratio: auto;
    }

    .slider-container {
        height: auto;
    }

    .slide {
        position: relative;
        opacity: 1;
    }

    .slide img {
        width: 100%;
        height: auto;
        object-fit: cover;
    }

    .slide-title {
        font-size: 32px;
    }

    .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }

    .slider-arrow.prev {
        left: 15px;
    }

    .slider-arrow.next {
        right: 15px;
    }

    .banner-title {
        font-size: 10px;
    }

    .banner-subtitle {
        font-size: 9px;
    }

    /* Cartier Watches Responsive */
    .iwc-watches-section {
        padding: 60px 0;
    }

    .section-header {
        margin-bottom: 60px;
    }

    .section-title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .section-description p {
        font-weight: 400;
        letter-spacing: 0;
        font-size: 0.875rem;
        line-height: 1.375rem;
        color: #000;
    }

    .category-title {
        margin-bottom: 20px;
    }

    .category-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .category-image {
        height: 280px;
    }

    /* Collections Responsive */
    .collections-section {
        padding: 60px 0;
    }

    .collections-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .collection-image {
        height: 360px;
    }

    .collection-content {
        padding: 30px 20px;
        min-height: 160px;
    }

    .collection-title {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .collection-description {
        font-size: 1rem;
        line-height: 1.25rem;
        margin-bottom: 20px;
    }

    /* Shop Collection Responsive */
    .shop-collection-section {
        padding: 60px 0;
    }

    .collection-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        margin-bottom: 50px;
    }

    .collection-product-image {
        height: 280px;
    }

    .collection-product-title {
        font-size: 16px;
        margin-bottom: 12px;
    }
}
@media (max-width: 480px) {
    .top-banner {
        font-size: 10px;
        padding: 8px 0;
    }

    .nav-container {
        padding: 10px 15px;
    }

    .logo {
        height: 73px;
    }

    .hero-slider {
        height: auto;
    }

    .slide-title {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .slide-button {
        padding: 10px 25px;
        font-size: 11px;
    }

    /* Cartier Watches Mobile */
    .iwc-watches-section {
        padding: 40px 0;
    }

    .section-title {
        font-size: 28px;
    }

    .section-description p {
        font-weight: 400;
        letter-spacing: 0;
        font-size: 1.125rem;
        line-height: 1.75rem;
        color: #000;
        margin-bottom: 15px;
    }

    .category-title {
        margin-bottom: 15px;
        text-align: left;
    }

    .category-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .category-image {
        height: 240px;
    }

    .category-name {
        font-size: 17px;
        margin-bottom: 0px;
    }

    .category-link {
        font-size: 15px;
    }

    /* Collections Mobile */
    .collections-section {
        padding: 40px 0;
    }

    .collection-image {
        height: 300px;
    }

    .collection-content {
        padding: 25px 15px;
        min-height: 140px;
    }

    .collection-title {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .collection-description {
        font-size: 1rem;
        line-height: 1.375rem;
        margin-bottom: 15px;
    }

    .collection-link {
        font-size: 1rem;
    }

    /* Shop Collection Mobile */
    .shop-collection-section {
        padding: 40px 0;
    }

    .collection-row {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 40px;
    }

    .collection-product-image {
        height: 300px;
    }

    .collection-product-title {
        font-size: 16px;
        margin-bottom: 10px;
    }

    /* IWC Warranty Mobile */
    .iwc-warranty-section {
        padding: 30px 15px !important;
    }

    .iwc-warranty-content {
        grid-template-columns: 1fr !important;
        padding: 0 !important;
    }

    .iwc-warranty-image {
        order: 1 !important;
    }

    .iwc-warranty-text {
        order: 2 !important;
        padding: 24px 20px !important;
    }

    .iwc-warranty-title {
        font-size: 1rem !important;
    }
}

/* IWC Warranty / Services Banner Section */
.iwc-warranty-section {
    padding: 60px 0;
}

.iwc-warranty-content {
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
}

.iwc-warranty-text {
    color: #000;
    text-align: left;
    background-color: #f7f7f7;
    padding: 40px 44px;
    align-self: stretch;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.iwc-warranty-text * {
    text-align: left;
}

.iwc-warranty-eyebrow {
    font-family: "Jost", "futura-pt", "Futura PT", sans-serif;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin: 0 0 12px;
    color: #000;
}

.iwc-warranty-title {
    font-family: "Libre Baskerville", "baskerville-urw", "Baskerville", serif;
    font-size: 1.375rem;
    font-weight: 400;
    line-height: 1.3;
    letter-spacing: 0.5px;
    margin: 0 0 18px;
    color: #000;
    text-transform: uppercase;
}

.iwc-warranty-paragraph {
    font-family: "Jost", "futura-pt", "Futura PT", sans-serif;
    font-size: 0.9375rem;
    line-height: 1.55;
    margin: 0 0 14px;
    color: #000;
}

.iwc-warranty-button {
    align-self: flex-start;
    display: inline-block;
    background-color: #000;
    color: #fff !important;
    text-decoration: none;
    padding: 12px 26px;
    font-family: "Jost", "futura-pt", "Futura PT", sans-serif;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: background-color 0.3s ease;
    margin: 8px 0 20px;
}

.iwc-warranty-button:hover {
    background-color: #333;
    color: #fff !important;
}

.iwc-warranty-steps-title {
    font-family: "Jost", "futura-pt", "Futura PT", sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin: 0 0 10px;
    color: #000;
}

.iwc-warranty-steps {
    font-family: "Jost", "futura-pt", "Futura PT", sans-serif;
    font-size: 0.9375rem;
    line-height: 1.55;
    padding-left: 20px;
    margin: 0 0 14px;
    color: #000;
    text-align: left;
}

.iwc-warranty-steps li {
    margin-bottom: 6px;
    text-align: left;
}

.iwc-warranty-image {
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
    text-decoration: none;
}

.iwc-warranty-image picture {
    display: block;
    width: 100%;
    height: 100%;
}

.iwc-warranty-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Bestsellers Section */
.bestsellers-section {
    padding: 60px 0;
}

.bestsellers-title {
    font-family: "Libre Baskerville", "baskerville-urw", "Baskerville", serif;
    font-size: 1.375rem;
    font-weight: 400;
    color: #000;
    letter-spacing: 0.25rem;
    text-align: left;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.bestsellers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.bestseller-product {
    background: white;
    text-align: left;
    transition: transform 0.3s ease;
    cursor: pointer !important;
}

.bestseller-product:hover {
    transform: translateY(-5px);
}

.bestseller-image {
    width: 100%;
    height: 350px;
    overflow: hidden;
    margin-bottom: 20px;
}

.bestseller-image img {
    width: 100%;
    height: 100%;
    filter: brightness(0.97);
    object-fit: cover;
}

.bestseller-brand {
    font-family: "Jost", "futura-pt", "Futura PT", sans-serif;
    font-size: 0.81rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: #000000;
    margin-bottom: 8px;
}

.bestseller-name {
    font-family: "Jost", "futura-pt", "Futura PT", sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.4;
    color: #000;
    margin-bottom: 12px;
}

.bestseller-price {
    font-family: "Jost", "futura-pt", "Futura PT", sans-serif;
    font-size: 1.063rem;
    font-weight: 600;
    color: #000;
}

.bestsellers-view-all {
    text-align: left;
}

.view-all-button {
    display: inline-block;
    background-color: #000;
    color: white;
    border: 2px solid #ffffff;
    text-decoration: none;
    padding: 15px 50px;
    font-family: "Jost", "futura-pt", "Futura PT", sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.view-all-button:hover {
    border: 2px solid #000;
    color: #000;
    background-color: white;
}

/* Bestsellers Mobile Styles */
@media (max-width: 768px) {
    .bestsellers-section {
        padding: 40px 0;
    }

    .logo img {
        height: 75% !important;
    }
    .bestsellers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-bottom: 40px;
    }

    .bestseller-image {
        height: 250px;
    }

    .view-all-button {
        padding: 12px 30px;
        font-size: 11px;
    }
}

/* Showroom Section */
.showroom-section {
    padding: 0;
    position: relative;
}

.showroom-content {
    width: 100%;
    max-width: 1570px;
    margin: 0 auto;
    padding: 0 40px;
    height: 1600px;
    background-image: url("/ugursaat/iwc/images/maidan-iwc-corner.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    margin-bottom: 0px;
}

.showroom-text {
    width: 100%;
    padding: 30px;
    background: rgba(255, 255, 255, 0.95);
    text-align: center;
    margin: 0;
}

.showroom-title {
    font-family: "Jost", "futura-pt", "Futura PT", sans-serif;
    font-size: 1.2em;
    font-weight: 600;
    margin-bottom: 5px;
    letter-spacing: 1px;
    color: #000;
    text-transform: uppercase;
}

.showroom-description {
    font-family: "Jost", "futura-pt", "Futura PT", sans-serif;
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 10px;
    color: #000000;
}

.showroom-button {
    display: inline-block;
    color: #000;
    text-decoration: none;
    font-family: "Jost", "futura-pt", "Futura PT", sans-serif;
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 1px;
    border-bottom: 1px solid #000;
    transition: all 0.3s ease;
}

.showroom-button:hover {
    color: #a30101;
    border-bottom-color: #a30101;
}

/* Showroom Mobile Styles */
@media (max-width: 768px) {
    .showroom-section {
        padding: 15px;
    }

    .showroom-content {
        background-image: url("/ugursaat/iwc/images/maidan-iwc-corner.jpg");
        background-size: cover;
        width: 100%;
        padding: 0 15px;
        height: 400px;
    }

    .showroom-text {
        padding: 25px 5px;
        background: rgba(255, 255, 255, 0.95);
    }
}

/* Video Section */
.video-section {
    padding: 40px 0;
    margin: 0;
    overflow: hidden;
}

.video-container {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
}

.iwc-video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    background: #000;
}

.iwc-video-wrapper iframe,
.iwc-video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

/* Video Mobile Styles */
@media (max-width: 768px) {
    .video-section {
        padding: 20px 0;
    }

    .video-container {
        padding: 0 15px;
    }
}

/* About Section */
.about-section {
    padding: 60px 0;
}

.about-content {
    margin-bottom: 40px;
    text-align: left;
}

.about-content:last-child {
    margin-bottom: 0;
}

.about-title {
    font-family: "Jost", "futura-pt", "Futura PT", sans-serif;
    font-size: 1.375rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.about-text {
    font-family: "Jost", "futura-pt", "Futura PT", sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    text-align: left;
    color: #000000;
}

.about-text a {
    color: #a30101;
    text-decoration: none;
    border-bottom: 1px solid #a30101;
    transition: all 0.3s ease;
}

.about-text a:hover {
    color: #000;
    border-bottom-color: #000;
}

.about-list {
    font-family: "Jost", "futura-pt", "Futura PT", sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: #000000;
    padding-left: 20px;
}

.about-list li {
    margin-bottom: 3px;
}

/* About Mobile Styles */
@media (max-width: 768px) {
    .about-section {
        padding: 40px 0;
    }

    .about-content {
        margin-bottom: 30px;
    }
}

.iwc-demo,
.iwc-demo * {
    font-family:
        "Jost", "futura-pt", "Futura PT", "Helvetica Neue", Arial, sans-serif;
}
