* {
    font-family: 'Cormorant Garamond', serif;
}

html {
    font-size: 14px;
    font-family: 'Cormorant Garamond',serif;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

header .navbar {
    height: 50px;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

header .container-fluid.border-bottom {
    height: 16px;
    line-height: 16px;
    padding: 0 !important;
}

.header-main {
    transition: transform .3s ease;
}

.header-hide {
    transform: translateY(-100%);
}

body {
  margin-bottom: 60px;
}

.search-bar-container {
    position: absolute; 
    top: 100%;
    left: 0;
    width: 100%;
    z-index: 1050;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05); 
}

#searchInput {
    font-size: 1.2rem; 
    font-family: 'Times New Roman', serif;
}

    #searchInput::placeholder {
        color: #ccc;
        font-style: italic;
    }

/* ürün grid */
.product-card {
    border: 1px solid #eee;
    padding: 40px 25px;
    background: #fff;
    text-align: center;
    height: 100%;
    transition: all .3s ease;
}

    .product-card:hover {
        border-color: #d5d5d5;
    }

/* ürün görseli */
.product-img {
    width: 100%;
    height: 260px;
    object-fit: contain;
    transition: transform .5s ease;
}

.product-card:hover .product-img {
    transform: scale(1.05);
}

/* ürün bilgi */
.product-info {
    margin-top: 25px;
}

.product-title {
    font-size: 15px;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

    .product-title a {
        text-decoration: none;
        color: #222;
    }

.product-price {
    font-size: 13px;
    color: #777;
}

.category-tabs {
    display: flex;
    justify-content: space-evenly;
    max-width: 1000px;
    margin: auto;
    border-bottom: 1px solid #eee;
    padding-bottom: 30px;
    gap: 25px;
}

.category-tab {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: none !important;
    border: none !important;
    color: #777;
    font-size: 12px;
    letter-spacing: 2px;
    font-family: 'Cormorant Garamond',serif;
    position: relative;
    padding: 10px 0;
}

.nav-link:focus, .nav-link:hover {
    color: #5e2483;
}

    .category-tab img {
        width: 36px;
        height: 36px;
        margin-bottom: 10px;
        opacity: .6;
        transition: .3s;
    }

    .category-tab span {
        text-transform: uppercase;
    }

    .category-tab:hover img {
        opacity: 1;
        transform: scale(1.1);
    }

    .category-tab::after {
        content: "";
        position: absolute;
        bottom: -10px;
        left: 50%;
        width: 0;
        height: 2px;
        background: #000;
        transition: .3s;
        transform: translateX(-50%);
    }

    .category-tab:hover::after {
        width: 60%;
    }

    .category-tab.active {
        color: #000;
    }

        .category-tab.active::after {
            width: 60%;
        }

        .category-tab.active img {
            opacity: 1;
        }

/* HERO */

.hero-wrapper {
    position: relative;
    width: 100%;
    height: calc(100vh - 104px);
    overflow: hidden;
}

.hero-slider {
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-media {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* overlay */

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.2);
}

/* text */

.hero-content {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    color: white;
    max-width: 500px;
}

.hero-title {
    font-family: 'Cormorant Garamond',serif;
    font-size: 48px;
    font-weight: 400;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 16px;
    opacity: .9;
    margin-bottom: 30px;
}

.hero-btn {
    color: white;
    text-decoration: none;
    border-bottom: 1px solid white;
    padding-bottom: 4px;
    transition: all .3s ease;
}

    .hero-btn:hover {
        color: #6b2cff;
        border-bottom: 1px solid black;
    }

/* arrows */

.hero-arrow {
    color: white;
    width: 50px;
    height: 50px;
}

.editorial-campaign {
    width: 100%;
}

.editorial-row {
    display: flex;
    height: 90vh;
    width: 100%;
}

    .editorial-row.reverse {
        flex-direction: row-reverse;
    }

.editorial-text {
    width: 40%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 8%;
    background: #8c9ab0;
    color: white;
}

    .editorial-text h2 {
        font-family: 'Cormorant Garamond',serif;
        font-size: 42px;
        margin-bottom: 15px;
    }

.editorial-desc {
    opacity: .9;
    margin-bottom: 20px;
}

.editorial-btn {
    border-bottom: 1px solid white;
    text-decoration: none;
    color: white;
    width: max-content;
    padding-bottom: 4px;
    transition: .3s;
}

    .editorial-btn:hover {
        color: black;
        border-color: black;
    }

.editorial-image {
    width: 60%;
}

    .editorial-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.editorial-row {
    height: 100vh;
    border-bottom: 20px solid #fff;
}

.scroll-top-btn {
    position: absolute;
    right: 40px;
    width: 45px;
    height: 45px;
    border: none;
    border-radius: 50%;
    background: #000;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    transition: all .3s ease;
    opacity: .7;
}

    .scroll-top-btn:hover {
        opacity: 1;
        transform: translateY(-3px);
    }