<style>

 

* {

    margin: 0;

    padding: 0;

    box-sizing: border-box;

}

 

body {

    font-family: 'Arial', sans-serif;

}

 

/* Logo Styles */

.logo-container {

    padding: 2rem 0;

    text-align: center;

}

 

.brand-logo {

    max-width: 200px;

    height: auto;

}

 

/* Banner Styles */

.banner {

    width: 100%;

    height: 700px;

    overflow: hidden;

}

 

.banner-image {

    width: 100%;

    height: 100%;

    object-fit: cover;

}

 

/* Logo placeholder styles */

.placeholder-logo {

    width: 200px;

    height: 80px;

    background-color: #e0e0e0;

    margin: 0 auto;

    display: flex;

    align-items: center;

    justify-content: center;

    text-align: center;

    color: #666;

    font-size: 14px;

}

.placeholder-logo img {

    width: 100%;

    height: 100%;

    object-fit: cover;

}

/* Banner placeholder styles */

.placeholder-banner {

    width: 100%;

    height: 700px;

    background-color: #d0d0d0;

    display: flex;

    align-items: center;

    justify-content: center;

    text-align: center;

    color: #666;

    font-size: 24px;

}

.placeholder-banner img {

    width: 100%;

    height: 100%;

    object-fit: cover;

}

 

/* Category Section Styles */

.category-section {

    display: flex;

    gap: 2rem;

    padding: 4rem 2rem;

    background-color: #f5f5f5;

}

 

.category-card {

    flex: 1;

    position: relative;

    overflow: hidden;

    display: block;

    border-radius: 8px;

    transition: transform 0.3s ease;

}

 

.category-card:hover {

    transform: scale(1.02);

}

 

.category-card img {

    width: 100%;

    height: 600px;

    object-fit: cover;

}

 

.placeholder-image {

    width: 100%;

    height: 600px;

    background-color: #c0c0c0;

    display: flex;

    align-items: center;

    justify-content: center;

    text-align: center;

    color: #666;

    font-size: 18px;

}

 

.category-overlay {

    position: absolute;

    bottom: 0;

    left: 0;

    right: 0;

    background: linear-gradient(transparent, rgba(0,0,0,0.7));

    color: white;

    padding: 2rem;

    text-align: center;

}

 

/* Model Section Styles */

.model-section {

    padding: 4rem 1rem;

    background-color: #fff;

}

 

.model-section h2 {

    text-align: center;

    margin-bottom: 3rem;

    font-size: 2rem;

    color: #333;

}

 

.model-grid {

    max-width: 1400px;

    margin: 0 auto;

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 1.2rem;

    padding: 0 0.5rem;

}

 

.model-card {

    background: #fff;

    border-radius: 8px;

    overflow: hidden;

    box-shadow: 0 2px 10px rgba(0,0,0,0.1);

    transition: all 0.3s ease;

    display: flex;

    flex-direction: column;

}

 

.model-card:hover {

    transform: translateY(-10px);

    box-shadow: 0 5px 20px rgba(0,0,0,0.15);

}

 

.placeholder-model {

    width: 100%;

    height: 350px;

    aspect-ratio: 1;

    display: flex;

    align-items: center;

    justify-content: center;

    text-align: center;

    color: #666;

    font-size: 16px;

    transition: all 0.3s ease;

    border:2px solid #f2f2f2;

}

.placeholder-model img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    padding:20px;

}

.model-card:hover h3{

    background-color: #333;

    color: #fff;

}

.model-card h3 {

    margin: 0;

    font-size: 1.2rem;

    color: #333;

    text-align: center;

    width: 100%;

    height: 60px;

    display: flex;

    align-items: center;

    justify-content: center;

    transition: all 0.3s ease;

}

 

/* Responsive Design */

@media (max-width: 1400px) {

    .model-grid {

        grid-template-columns: repeat(3, 1fr);

    }

}

 

@media (max-width: 1024px) {

    .model-grid {

        grid-template-columns: repeat(2, 1fr);

    }

}

 

@media (max-width: 600px) {

    .model-section {

        padding: 4rem 0;

    }

 

    .model-grid {

        grid-template-columns: 1fr;

        gap: 1rem;

        padding: 0 20px;

    }

   

    .model-card {

        max-width: none;

        margin: 0;

        border-radius: 8px;

        box-shadow: 0 2px 10px rgba(0,0,0,0.05);

        border-bottom: 1px solid #eee;

    }

 

    .model-card:hover {

        transform: none;

        box-shadow: 0 2px 10px rgba(0,0,0,0.05);

    }

 

    .placeholder-model {

        border-radius: 8px 8px 0 0;

    }

 

    .model-card h3 {

        padding: 1rem 1.5rem 0.5rem;

    }

 

    .model-card .price {

        padding: 0 1.5rem 1rem;

    }

}

 

/* Responsive kategori kartları için */

@media (max-width: 768px) {

    .category-section {

        flex-direction: column;

    }

   

    .category-card {

        width: 100%;

        max-width: 600px;

        margin: 0 auto;

    }

   

    .placeholder-image {

        height: 400px;

    }

    .banner{

        height: 400px;

    }

    .placeholder-banner {

        height: 400px;

    }

    .placeholder-model{

        height: 400px;

    }

    .placeholder-model img{

        padding:0;

    }

}

 

/* Link stillerini sıfırlama */

a {

    text-decoration: none;

    color: inherit;

}

 

/* Banner link stili */

.banner-link {

    display: block;

    width: 100%;

    height: 100%;

}

 

/* Category card stilleri güncelleniyor */

.category-card {

    cursor: pointer;

}

 

/* Model card stilleri güncelleniyor */

.model-card {

    cursor: pointer;

}

 

</style>

    <!-- Logo Section -->

    <header class="logo-container">

        <div class="placeholder-logo"><img src="https://static.ticimax.cloud/45295//uploads/dosyalar/ozel-sayfalar/hublot/hublot-logo.jpg" alt="Logo"></div>

    </header>

 

    <!-- Banner Section -->

    <section class="banner">

        <a href="#" class="banner-link">

            <div class="placeholder-banner"><img src="https://static.ticimax.cloud/45295//uploads/dosyalar/ozel-sayfalar/hublot/hublot-banner.jpg" alt="Banner"></div>

        </a>

    </section>

 

    <!-- Kategori Section -->

    <section class="category-section">

        <a href="https://permun.com/hublot/kadin" class="category-card">

            <div class="placeholder-image"><img src="https://static.ticimax.cloud/45295//uploads/dosyalar/ozel-sayfalar/hublot/hublot-kadin-banner.jpg" alt="Kadin"></div>

            <div class="category-overlay">

                <h2>KADIN</h2>

                <p>Koleksiyonu Keşfet</p>

            </div>

        </a>

        <a href="https://permun.com/hublot/erkek" class="category-card">

            <div class="placeholder-image"><img src="https://static.ticimax.cloud/45295//uploads/dosyalar/ozel-sayfalar/hublot/hublot-erkek-banner.jpg" alt="Erkek"></div>

            <div class="category-overlay">

                <h2>ERKEK</h2>

                <p>Koleksiyonu Keşfet</p>

            </div>

        </a>

    </section>

 

    <!-- Model Cards Section -->

    <section class="model-section">

        <h2>Öne Çıkan Koleksiyonlar</h2>

        <div class="model-grid">

            <a href="https://www.permun.com/hublot-big-bang" class="model-card">

                <div class="placeholder-model"><img src="https://static.ticimax.cloud/45295//uploads/dosyalar/ozel-sayfalar/hublot/hublot-big-bang.jpg" alt="Big Bang"></div>

                <h3>Big Bang</h3>

            </a>

            <a href="https://www.permun.com/hublot-classic-fusion" class="model-card">

                <div class="placeholder-model"><img src="https://static.ticimax.cloud/45295//uploads/dosyalar/ozel-sayfalar/hublot/hublot-classic-fuison.jpg" alt="Classic Fusion"></div>

                <h3>Classic Fusion</h3>

            </a>

            <a href="https://www.permun.com/hublot-square-bang" class="model-card">

                <div class="placeholder-model"><img src="https://static.ticimax.cloud/45295//uploads/dosyalar/ozel-sayfalar/hublot/hublot-square.jpg" alt="Square Bang"></div>

                <h3>Square Bang</h3>

            </a>

        </div>

    </section>

 

cultureSettings.RegionId: 0 cultureSettings.LanguageCode: EN