﻿* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: "Raleway", sans-serif;
    font-size: 10px;
    font-weight: 400;
    line-height: 1.5;
    overflow-x: hidden;
    background-color: #fff;
}

.container-fluid {
    padding-left: 0;
    padding-right: 0;
    margin: 0;
}

#Website {
    display: none;
}

a {
    text-decoration: none;
}

ul {
    list-style-type: none;
}

.clearfix::after {
    content: "";
    display: block;
    clear: both;
}

#customCarousel {
    margin-top: 100px;
}

/*Navbar*/
.navbar {
    background-color: #000 !important;
    height:100px;
    position:fixed;
    top:0;
    left:0;
    right:0;
    z-index:10;
    width:100%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:0 15px;
}

.navbar .nav-link {
    color: #f5f5f5 !important;
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 1.5rem;
    margin: 5px;
}

.navbar .nav-link:hover {
    color: #ebb74c !important;
}

.navbar .dropdown-menu {
    background-color:#000;
    border: none;
}

.navbar .dropdown-item {
    color: #f5f5f5 !important;
    font-size: 1.3rem;
    transition: color 0.3s ease;
}

.navbar .dropdown-item:hover {
    background-color: #000;
    color: #ebb74c !important;
}

.social-icons {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-right:5px;
}

.social-icons a {
    color: #f5f5f5 !important;
    font-size: 1.8rem;
    margin: 0 0.8rem;
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-icons i.fa-facebook:hover {
    color: #3b5998 !important;
}

.social-icons i.fa-instagram:hover {
    color: #E4405F !important;
}

.social-icons i.fa-whatsapp:hover {
    color: #25D366 !important;
}

.social-icons i.fa-youtube:hover {
    color: #c4302b !important;
}

.navbar .navbar-brand img {
    height: auto; 
    width: 250px;
    margin-left:20px;
}

.navbar-toggler {
    background: none;
    border: none;
    padding: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width:50px;
    height:50px;
}

.navbar-toggler svg {
    width: 30px; 
    height: 30px; 
}

.navbar-toggler svg rect {
    transition: all 0.3s ease-in-out, opacity 0.3s ease-in-out;
    transform-origin: center;
    width:100%;
    height:5px;
    border-radius:5px;
}

.navbar-toggler[aria-expanded="true"] svg rect:nth-of-type(1) {
    transform: translateY(10px) rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] svg rect:nth-of-type(2) {
    opacity: 0;
}

.navbar-toggler[aria-expanded="true"] svg rect:nth-of-type(3) {
    transform: translateY(-10px) rotate(-45deg);
}


.navbar-nav {
    display:flex;
    align-items:center;
    margin: 0 auto;
}

.navbar .dropdown-toggle::after {
    border-top-color: #ebb74c; 
}

.container, .navbar-nav {
    padding: 0;
    margin: 0;
}

.navbar .dropdown-item:focus,
.navbar .dropdown-item:active {
    background-color: #000 !important;
    color: #ebb74c !important;
    outline: none !important;
    box-shadow: none !important;
}

@media (max-width: 992px) {
    .navbar {
        height: auto;
        padding: 15px 10px;
    }

    .navbar .navbar-brand img {
        height: auto;
        width: 200px; 
        margin-top: 0; 
    }

    .navbar-nav {
        flex-direction: column;
        margin-top: 10px;
    }

    .social-icons {
        margin-top: 10px;
        justify-content: center;
    }

    .social-icons a {
        font-size: 1.5rem;
        margin: 0 0.5rem;
    }

    .navbar-toggler {
        border-color: #ffd700;
        margin-left: auto;
        margin-right:25px;
    }
}

@media (max-width: 576px) {
    .navbar .navbar-brand img {
        height: auto;
        width: 180px; 
    }

    .navbar-nav {
        flex-direction: column;
    }

    .navbar .nav-link {
        font-size: 1.2rem;
    }

    .social-icons a {
        font-size: 1.5rem;
    }

    .navbar-toggler {
        margin-right: 25px; 
    }
}

/*sayfa bannerları*/
.breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    position:relative;
    background: url('../images/page-banner.webp') no-repeat center center;
    background-size: cover;
    border-radius: 10px;
    margin:100px 30px 10px 30px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
    height: 250px;
    color:white;
}

.breadcrumb::after {
    content: ""; 
    position: absolute; 
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); 
    border-radius: 10px;
    z-index: 1; 
}

.breadcrumb-item {
    font-size: 2rem; 
    color: white; 
    z-index:2;
    position:relative;
}

.breadcrumb-item a {
    color: white; 
    text-decoration: none; 
}

.breadcrumb-item a:hover {
    text-decoration: underline; 
}

.breadcrumb-item.active {
    font-weight: bold; 
    color:#ebb74c;
}

@media (max-width: 992px) {
    .breadcrumb {
        height: 200px;
        margin: 80px 20px 10px 20px;
    }

    .breadcrumb-item {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .breadcrumb {
        height: 150px;
        margin: 60px 15px 10px 15px;
    }

    .breadcrumb-item {
        font-size: 1.2rem;
    }
}

/*hakkımızda sayfası*/
.section-centered {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: center;
}

.content-block {
    max-width: 600px;
    margin: 0 auto;
}

.rich-text p {
    font-size: 1.8rem;
    line-height: 1.6;
    color: #333;
}

.rich-text a {
    color: #000;
    text-decoration: underline;
}

.rich-text a:hover{
    text-decoration:underline;
}

.fixed-image {
    width: 600px;
    height: 300px;
    object-fit: cover;
    border-radius: 30px;
    margin: 30px 0;
}

.about-icon {
    font-size: 1.8rem; 
    color: #ebb74c;
    margin-right: 10px; 
    vertical-align: middle;
}

.contact-icon {
    font-size: 1.8rem; 
}

.rich-text ul {
    list-style-type: none; 
    padding-left: 1rem; 
}

.rich-text ul li {
    padding-left:2rem;
    position:relative;
    font-size: 1.6rem; 
    line-height: 1.5; 
    margin-bottom: 0.5rem; 
}

.fa-rug{
    color:#ebb74c;
    padding-right:1rem;
}

.section-title {
    text-align: center; 
    margin: 4rem 0; 
    position: relative; 
}

.section-title h2 {
    display: inline-block; 
    font-size: 3rem; 
    font-weight: bold; 
    padding-left: 1rem; 
    border-left: 10px solid #ebb74c; 
}

.slogan {
    font-family: "Playfair Display", serif;
    color: #000;
    font-weight: bold;
}

@media (max-width: 992px) {
    .fixed-image {
        width: 100%;
        height: 300px;
    }

    .content-block {
        max-width: 90%;
        padding: 0 1rem;
    }

    .rich-text p {
        font-size: 1.6rem;
    }

    .contact-icon {
        font-size: 1.6rem;
    }

    .about-icon {
        font-size: 1.6rem;
    }

    .section-title h2 {
        font-size: 2.5rem;
    }

    .slogan p {
        font-size: 1.6rem;
    }
}

@media (max-width: 576px) {
    .fixed-image {
        width: 100%;
        height: 200px;
    }

    .content-block {
        max-width: 95%;
        padding: 0 1rem;
    }

    .rich-text p {
        font-size: 1.4rem;
    }

    .contact-icon {
        font-size: 1.4rem;
    }

    .about-icon {
        font-size: 1.4rem;
    }

    .section-title h2 {
        font-size: 2.2rem;
    }

    .slogan p {
        font-size: 1.4rem;
    }
}

/*Blog sayfası*/
.blog-container {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
    align-items:start;
}

.card {
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    display:flex;
    flex-direction:column;
    height:100%;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card-content {
    padding:20px;
    display:flex;
    flex-direction:column;
    flex-grow:1;
    justify-content:space-between;
    height:100%;
}

.card-content h3 {
    font-size: 1.5rem;
    margin: 0 0 10px;
    color: #343a40;
    text-align:center;
}

.card-content p {
    font-size: 1rem;
    color: #6c757d;
    margin-bottom: 15px;
    flex-grow: 1;
    text-align: center;
}

.card-content a {
    display: inline-block;
    padding: 12px 25px;
    font-size: 1rem;
    color: #fff;
    background: #ebb74c;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-top:auto;
    align-self:center;
}

.card-content a:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
    background: linear-gradient(90deg, #feb47b, #ff7e5f);
}

@media (max-width: 992px) {
    .blog-container {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    .card img {
        height: 180px;
    }

    .card-content h3 {
        font-size: 1.25rem;
    }

    .card-content p {
        font-size: 0.95rem;
    }

    .card-content a {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .blog-container {
        grid-template-columns: 1fr;
    }

    .card img {
        height: 150px;
    }

    .card-content h3 {
        font-size: 1.1rem;
    }

    .card-content p {
        font-size: 0.85rem;
    }

    .card-content a {
        padding: 8px 15px;
        font-size: 0.85rem;
    }
}

/*ana banner*/
.carousel-inner {
    width: 100%;
    height: 650px;
    overflow:hidden;
    position:relative;
}

.carousel-item {
    width: 100%;
    height: 650px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.carousel-inner, .carousel-item {
    width: 100%;
    height: 70vh;
    min-height: 350px; 
    max-height: 650px; 
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

.banner-1 {
    z-index: 2;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    padding: 0 15px;
}

.banner-1 h1 {
    color: #846343;
    font-family: "Yeseva One", serif;
    font-size:60px;
    font:bold;
}

.banner-1 p {
    color: #422A1A;
    font-size: 20px;
    font-family: "Open Sans", sans-serif;
    max-width:60%;
    margin:5px auto;
    text-align:center;
    margin-top:10px;
}

.banner-1-btn {
    background-color: #846343;
    border: 1px solid #846343;
    padding: 10px 25px;
    color: white;
    font-size: 1.8rem;
    border-radius: 15px;
    display: inline-block;
    margin-top: 30px;
    margin-bottom: 10px;
    transition: background-color 0.5s ease, color 0.5s ease;
}

.banner-1-btn:hover {
    background-color: #422A1A;
    color: #846343;
}

.banner-2 {
    z-index: 2;
    position: absolute;
    top: 45%;
    left: 70%;
    transform: translate(-50%,-50%);
    text-align: center;
    padding: 0 30px;
    width:60%;
    max-width:700px;
}

.banner-2 h1 {
    color: #24281D;
    font-family: "Open Sans", sans-serif;
    font-size: 60px;
    text-align:center;
    margin-bottom:20px;
    line-height:1.2;
}

.banner-2 p {
    color: #3a3f2d;
    font-size: 20px;
    font-family: "Open Sans", sans-serif;
    margin: 5px auto;
    text-align: center;
    margin-top: 20px;
}

.banner-2-btn {
    background-color: #24281D;
    border: 1px solid #24281D;
    padding: 10px 25px;
    color: white;
    font-size: 1.8rem;
    border-radius: 15px;
    display: inline-block;
    margin-top: 40px;
    margin-bottom: 10px;
    transition: background-color 0.5s ease, color 0.5s ease;
}

.banner-2-btn:hover {
    background-color: #3a3f2d; 
    color: #f4e8d5;
}

.banner-3 {
    z-index: 2;
    position: absolute;
    top: 50%;
    left: 30%;
    transform: translate(-50%,-50%);
    text-align: center;
    padding: 0 15px;
    max-width: 700px;
}

.banner-3 h1 {
    color: #301F1A;
    font-family: "Poppins", sans-serif;
    font-size: 60px;
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.2;
}

.banner-3 p {
    color: #301F1A;
    font-family: "Poppins", sans-serif;
    font-size: 20px;
    margin: 5px auto;
    text-align: center;
    margin-top: 20px;
}

.banner-3-btn {
    background-color: #301F1A;
    border: 1px solid #301F1A;
    padding: 10px 25px;
    color: white;
    font-size: 1.8rem;
    border-radius: 15px;
    display: inline-block;
    margin-top: 40px;
    margin-bottom: 10px;
    transition: background-color 0.5s ease, color 0.5s ease;
}

.banner-3-btn:hover {
    background-color: #5E3A2A;
    color: #d0cdc7;
}

@media (max-width: 992px) {
    #customCarousel {
        margin-top: 0; 
    }

    .carousel-inner, .carousel-item {
        height: 60vh;
        min-height:300px;
    }

    .banner-1 h1
    .banner-2 h1,
    .banner-3 h1{
        font-size:36px;
    }

    .banner-1 p{
        font-size:16px;
        max-width:80%;
    }
    .banner-2 p,
    .banner-3 p {
        font-size: 18px;
        max-width: 80%;
    }

    .banner-1-btn,
    .banner-2-btn,
    .banner-3-btn {
        font-size: 1.5rem;
        padding: 8px 20px;
    }

    .banner-1 {
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .banner-2 {
        top: 50%;
        left: 70%;
        width: 70%;
    }

    .banner-3 {
        top: 50%;
        left: 30%;
        width: 70%;
    }
}

@media (max-width: 576px) {
    #customCarousel {
        margin-top: 0; 
    }

    .carousel-inner, .carousel-item {
        height: 50vh;
        min-height:250px;
    }

    .banner-1 h1{
        font-size:16px;
    }

    .banner-2 h1{
        font-size: 18px; 
    }

    .banner-3 h1 {
        font-size: 20px;
        max-width: 60%;
        text-align: center;
        margin:0 auto;
        display:block;
    }

    .banner-1 p{
        font-size:10px;
        max-width:40%;
    }

    .banner-2 p{
        font-size:14px;
        max-width:75%;
    }

    .banner-3 p {
        font-size: 12px;
        max-width: 50%;
    }

    .banner-1-btn,
    .banner-2-btn,
    .banner-3-btn {
        font-size: 1.2rem;
        padding: 6px 15px;
    }

    .banner-1 {
        top: 50%;
        left: 50%;
        width: 90%;
        transform: translate(-50%, -50%);
    }

    .banner-2 {
        top: 50%;
        left: 70%; 
        width: 80%;
        transform: translate(-50%, -50%);
    }

    .banner-3 {
        top: 50%;
        left: 30%; 
        transform: translate(-50%, -50%);
    }
}

/*ara resim*/
.background-container {
    width: 700px;
    height: 200px;
    background: url('../images/bg.png') no-repeat center center;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    margin:30px auto;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
}

.content {
    display: flex;
    gap: 60px;
}

.image-box {
    text-align: center;
    margin:0 20px;
}

.image-box i {
    font-size: 60px; 
    margin-bottom: 10px;
}

.image-box p {
    margin-top: 10px;
    font-size: 16px;
    font-weight: bold;
}

@media (max-width: 992px) {
    .background-container {
        height: auto;
        padding: 30px 10px;
        width:100%;
        max-width:700px;
        box-sizing:border-box;
    }

    .content {
        gap: 30px;
        flex-wrap:wrap;
        justify-content:center;
        flex-direction:row;
    }

    .image-box{
        flex: 1 1 30%;
        max-width:200px;
        margin:0 10px;
        text-align:center;
    }

    .image-box i {
        font-size: 50px;
    }

    .image-box p {
        font-size: 15px;
    }
}

@media (max-width: 576px) {
    .background-container {
        padding: 20px 10px;
        width: 100%;
        max-width: 700px;
        box-sizing: border-box;
    }

    .content {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
        flex-direction: row;
    }

    .image-box {
        flex: 1 1 40%; 
        max-width: 160px;
        margin: 0 5px;
        text-align: center;
    }

    .image-box i {
        font-size: 40px;
    }

    .image-box p {
        font-size: 14px;
    }

}

/*kategoriler*/
.main-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: bold;
    margin: 20px 0;
}

.natural-carpets .category {
    background-color: #eae0c8 !important;
    color: #8b5e3b;
}

.natural-carpets .category-info h2 {
    font-family: "Yeseva One", serif;
    color: #8b5e3b;
}

.natural-carpets .category-info p {
    color: #555;
}

.natural-carpets .view-all {
    background-color: #8b5e3b;
    color: white;
}

.natural-carpets .view-all:hover {
    background-color: #a77147;
}

.natural-carpets {
    border-color: #eae0c8; 
    background-color: #f0e3b7;
}

.modern-carpets .category {
    background-color: #b0b8a9 !important;
    color: #333;
}

.modern-carpets .category-info h2 {
    color: #24281D;
    font-family: "Open Sans", sans-serif;
}

.modern-carpets .category-info p {
    color: #24281D;
    font-family: "Open Sans", sans-serif;
}

.modern-carpets .view-all {
    background-color: #333;
    color: white;
}

.modern-carpets .view-all:hover {
    background-color: #555;
}

.modern-carpets {
    border-color: #b0b8a9; 
    background-color: #dfe1d0;
}

.modern-carpets .carpet-card {
    border-color: #24281D !important;
}

.classic-carpets .category {
    background-color: #f2e8e3 !important;
    color: #5a3e36;
}

.classic-carpets .category-info h2 {
    font-family: "Yeseva One", serif;
    color: #5a3e36;
}

.classic-carpets .category-info p {
    color: #5a3e36;
}

.classic-carpets .view-all {
    background-color: #5a3e36;
    color: white;
}

.classic-carpets .view-all:hover {
    background-color: #7b5b4f;
}

.classic-carpets {
    border-color: #f2e8e3;
    background-color: #f6f1ed;
}

.classic-carpets .carpet-card {
    border-color: #5a3e36 !important;
}


/* Ortak stiller */
.category {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border-radius: 10px;
    margin: 20px;
}

.category-info {
    flex: 1;
    padding: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.category-info h2 {
    font-size: 2.2rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.category-info p {
    font-size: 1.4rem;
    margin-bottom: 15px;
    width: 70%;
}

.category-image {
    flex: 1;
    text-align: center;
}

.category-image img {
    width: 700px;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.category-image img:hover {
    transform: translateY(-5px);
}

.view-all {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 12px;
}

.sub-categories {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 30px;
}

.carpet-card {
    position: relative;
    width: 300px;
    text-align: center;
    border: 2px solid #d4af37;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    background-color: #fff;
}

.carpet-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.carpet-card img {
    width: 100%;
    height:350px;
    object-fit:cover;
    display: block;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.carpet-card:hover .overlay {
    opacity: 1;
}

.overlay i {
    color: white;
    font-size: 2rem;
}

.carpet-card p {
    margin: 10px 0;
    font-weight: bold;
    font-size: 12px;
    font-family: "Yeseva One", serif;
    color: #8b5e3b;
}

@media (max-width: 992px) {
    .category {
        flex-direction: column !important;
        text-align: center;
    }

    .category-image,
    .category-info {
        width: 100% !important;
        padding: 10px;
    }

    .category-image img {
        width: 100%;
        height: auto;
        border-radius: 10px;
    }

    .category-info p {
        width: 100%;
    }

    .sub-categories {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .carpet-card {
        width: 45%;
    }
}

@media (max-width: 576px) {
    .carpet-card {
        width: 45%;
        height: auto;
    }

    .carpet-card img {
        height: 200px;
        object-fit: cover;
    }

    .category-info h2 {
        font-size: 1.6rem;
    }

    .category-info p {
        font-size: 1rem;
    }

    .view-all {
        font-size: 1rem;
        padding: 8px 12px;
    }
}

/*bilgilendirme kartı*/
.info-card {
    background: linear-gradient(135deg, #fff3e0, #ffe0b2); 
    color: #4e342e; 
    border-left: 8px solid #a67c52;
    padding: 2rem;
    margin: 3rem auto;
    max-width: 1000px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15); 
    font-family: 'Montserrat', sans-serif;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
    transform: scale(1.02); 
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.info-card .info-message {
    font-size: 1.6rem;
    line-height: 1.7;
    font-weight: 500;
}

.info-card .info-message strong {
    font-size: 1.6rem;
    color: #6d4c41; 
    margin-top: 0.5rem;
}

@media (max-width: 992px) {
    .info-card {
        padding: 1.5rem;
        margin-left:12px;
        margin-right:12px;
    }

    .info-card .info-message {
        font-size: 1.8rem;
    }
}

@media (max-width: 576px) {
    .info-card {
        padding: 1.2rem;
        margin-left: 8px;
        margin-right: 8px;
    }

    .info-card .info-message {
        font-size: 1rem;
    }
}

/*yan menü*/
.side-collections {
    background-color: #fff;
    padding: 20px;
    width: 100%;
    max-width: 250px;
    margin-top: 25px;
    position: relative;
    z-index: 1;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    float: none;
    height:500px;
}

.side-main-category {
    font-size: 1.8rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
}

.side-all-collections {
    font-size: 1.2rem;
    color: #ebb74c;
    display: block;
    margin-bottom: 20px;
    text-decoration: none;
}

.side-category-title a {
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
    text-decoration: none;
    display: block;
    margin-top: 20px;
    transition: color 0.3s ease;
}

.side-category-title a:hover {
    color: #ebb74c;
}

.side-category {
    margin-bottom: 20px;
}

.side-subcategory-list {
    margin-top: 10px;
    list-style-type: none;
    padding-left: 0;
}

.side-subcategory-list li {
    font-size: 1.2rem;
    color: #888;
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.side-subcategory-list li::before {
    content: "\2022"; 
    color: #bbb;
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: 0;
}

.side-subcategory-list a {
    color: #888;
    text-decoration: none;
    transition: color 0.3s ease;
}

.side-subcategory-list a:hover {
    color: #ebb74c;
}

@media (max-width: 992px) {
    .side-collections {
        max-width: 100%;
        width: 90%;
        margin: 20px auto;
        padding: 16px;
        height: auto;
        text-align: center;
    }

    .side-main-category {
        font-size: 2rem;
        margin-bottom: 16px;
    }

    .side-all-collections {
        font-size: 1.1rem;
        margin-bottom: 16px;
    }

    .side-category-title a {
        font-size: 1.7rem;
        margin-top: 16px;
    }

    .side-subcategory-list {
        padding-left: 0;
    }

    .side-subcategory-list li {
        font-size: 1.5rem;
        margin-bottom: 8px;
        padding-left: 0;
        text-align: center;
    }

    .side-subcategory-list li::before {
        display: none; 
    }
}

@media (max-width: 576px) {
    .side-collections {
        width: 95%;
        padding: 14px;
        border-radius: 6px;
        text-align: center;
    }

    .side-main-category {
        font-size: 1.5rem;
    }

    .side-all-collections {
        font-size: 1rem;
    }

    .side-category-title a {
        font-size: 1.2rem;
    }

    .side-subcategory-list li {
        font-size: 1rem;
        margin-bottom: 6px;
        padding-left: 0;
    }

    .side-subcategory-list li::before {
        display: none;
    }
}

/*alt kategoriler*/
.content-wrapper {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.product-gallery {
    flex: 1;
    padding: 10px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.product-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    margin-bottom: 5px;
    background-color: #ffffff;
    text-align: center;
    height:420px;
}

.product-item img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.product-item .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
}

.product-item:hover img {
    transform: scale(1.05);
    filter: brightness(70%);
    cursor: zoom-in;
}

.product-item:hover .overlay {
    opacity: 1;
}

.zoom-icon {
    color: #fff;
    font-size: 2rem;
}

@media (max-width: 992px) {
    .content-wrapper {
        flex-direction: column;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .product-item {
        height: auto;
    }
}

@media (max-width: 576px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .product-item {
        height: auto; 
    }

    .product-title {
        font-size: 0.9rem; 
    }
}

/*footer*/
.footer {
    background-color: black;
    padding: 50px 0;
    position:static !important;
    font-size:0.95rem;
}

.footer .footer-container {
    max-width: 1140px;
    margin: auto;
}

.footer .footer-row {
    display: flex;
    flex-wrap: wrap;
}

.footer .footer-col {
    width: 25%;
    padding: 0 10px;
}

.footer .footer-col h4 {
    font-size: 16px;
    color: #ffffff;
    text-transform: capitalize;
    margin-bottom: 25px;
    font-weight: 500;
    position: relative;
}

.footer .footer-col h4::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    background-color: #ebb74c;
    height: 2px;
    box-sizing: border-box;
    width: 40px;
}

.footer .footer-col ul li:not(:last-child) {
    margin-bottom: 8px;
}

.footer .footer-col ul li a {
    font-size: 15px;
    text-transform: capitalize;
    color: #ffffff;
    text-decoration: none;
    font-weight: 300;
    color: #bbbbbb;
    display: block;
    transition: all 0.3s ease;
}

.footer .footer-col ul li a:hover {
    color: #ffffff;
    padding-left: 6px;
}

.footer .footer-col .footer-social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    width: 40px;
    background-color: rgba(255, 255, 255, 0.2);
    margin: 0 8px 8px 0;
    border-radius: 50%;
    color: #ffffff;
    font-size: 18px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer .footer-col .footer-social-links a:hover {
    color: #24262b;
    background-color: #ffffff;
}

.footer-bottom {
    text-align: center; 
    padding: 15px 0; 
    background-color: #000; 
}

.footer-bottom p {
    color: #fff; 
    font-size: 1rem; 
    margin: 0; 
}

.footer-bottom a {
    color: #fff; 
    text-decoration: underline; 
    font-weight: 500;
}

.footer-bottom a:hover {
    color: #ddd; 
}

@media (max-width: 991px) {
    .footer .footer-col {
        width: 50%;
        margin-bottom: 30px;
        text-align: center;
    }

    .footer .footer-col h4::before {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 576px) {
    .footer .footer-col {
        width: 100%;
        text-align: center;
    }

    .footer .footer-col h4::before {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer .footer-col ul {
        padding-left: 0;
    }

    .footer .footer-col ul li a {
        justify-content: center;
        font-size:14px;
    }

    .footer .footer-col .footer-social-links {
        justify-content: center;
    }

    .footer .footer-col .footer-social-links a {
        margin-left: 5px;
        margin-right: 5px;
    }
}

/*alt blog sayfaları*/
.blog-article-wrapper {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #fff;
    color: #333;
    max-width: 960px;
    margin: 2rem auto;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    line-height: 1.7;
}

.blog-article-wrapper h1 {
    font-size: 2.2rem;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 1.5rem;
}

.blog-article-wrapper h3 {
    color: #ebb74c;
    margin-top: 2.1rem;
    font-size: 1.4rem;
    border-left: 4px solid #d7a338;
    padding-left: 0.6rem;
}

.blog-article-wrapper p {
    margin-top: 0.5rem;
    margin-bottom: 1.2rem;
    font-size: 1.3rem;
}

.blog-article-wrapper a {
    color: #2980b9;
    text-decoration: none;
}

.blog-article-wrapper a:hover {
    text-decoration: underline;
}

.custom-list {
    padding-left: 1.5rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
    list-style: none;
}

.custom-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
    line-height: 1.4;
    color: #333;
    border-left: 3px solid #ebb74c;
    background-color: #fdf9f3;
    padding: 0.75rem 1rem 0.75rem 1.5rem;
    border-radius: 6px;
}

.custom-list li::before {
    content: "✔";
    position: absolute;
    left: 5px;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #ebb74c;
    font-weight: bold;
}

@media (max-width: 992px) {
    .blog-article-wrapper {
        padding: 1.5rem;
        margin: 1.5rem;
    }

    .blog-article-wrapper h1 {
        font-size: 2.6rem;
    }

    .blog-article-wrapper h3 {
        font-size: 2.1rem;
    }

    .blog-article-wrapper p {
        font-size: 1.8rem;
    }

    .custom-list li {
        font-size: 1.8rem;
    }
}


@media (max-width: 576px) {
    .blog-article-wrapper {
        padding: 1rem;
        margin: 1rem;
    }

    .blog-article-wrapper h1 {
        font-size: 1.7rem;
    }

    .blog-article-wrapper h3 {
        font-size: 1.4rem;
    }

    .blog-article-wrapper p {
        font-size: 1.2rem;
    }

    .custom-list li {
        font-size: 0.95rem;
        padding: 0.6rem 0.9rem 0.6rem 1.2rem;
    }
}

/*CONTACT*/
.contact-page {
    margin-top: 100px;
    display: flex;
    height: auto;
    flex-direction: column;
    align-items: center;
}

.contact-content {
    display: flex;
    width: 100%;
    max-width: 1200px;
    align-items:stretch;
}

.left-section {
    flex: 1;
    margin-left: 20px;
    margin-top:20px;
}

.right-section {
    flex: 1;
    background-color: #fff;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.x-group {
    margin-top:0;
    margin-bottom: 20px;
}

.x-lbl-sm {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #343a40;
}

.login-form-input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
    box-sizing: border-box;
    background-color: #f8f9fa;
}

.login-form-input:focus {
    border-color: #343a40;
    outline: none;
}

textarea.login-form-input {
    resize: vertical;
}

.login-form-submit {
    width: 100%;
    padding: 12px;
    background-color: #000;
    color: white;
    font-size: 1rem;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.login-form-submit:hover {
    background-color: #333;
}

.contact-extra {
    margin-top: 40px;
    padding: 20px;
    background-color: #f1f1f1;
    border-radius: 8px;
    font-size: 1rem;
    color: #343a40;
    max-width: 600px;
    width: 100%;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.contact-extra h3 {
    margin-bottom: 15px;
    font-size: 1.6rem;
    color: #000;
}

.contact-extra p {
    margin-bottom: 15px;
}

.contact-extra a {
    color: #007bff;
    text-decoration: none;
}

.contact-extra a:hover {
    text-decoration: underline;
}


/* Hata mesajları stili */
.text-danger {
    color: #dc3545;
    font-size: 0.9rem;
    margin-top: 5px;
}

@media (max-width: 992px) {
    .contact-content {
        flex-direction: column-reverse;
        padding: 0 15px;
    }

    .left-section,
    .right-section {
        margin: 0;
        width: 100%;
    }

    .left-section iframe {
        width: 100%;
        height: 300px;
    }

    .contact-extra {
        padding: 15px;
        font-size: 0.95rem;
        max-width: 100%;
    }

    .contact-extra h3 {
        font-size: 1.4rem;
    }
}


@media (max-width: 576px) {
    .contact-page {
        margin-top: 60px;
    }

    .login-form-input,
    .login-form-submit,
    textarea.login-form-input {
        font-size: 0.95rem;
        padding: 10px;
    }

    .x-lbl-sm {
        font-size: 0.95rem;
    }

    .left-section iframe {
        height: 250px;
    }

    .contact-extra {
        padding: 10px;
        font-size: 0.9rem;
        border-radius: 6px;
        text-align: center;
    }

    .contact-extra h3 {
        font-size: 1.2rem;
    }

    .contact-extra p {
        font-size: 0.95rem;
    }

    .contact-extra a {
        display: block;
        margin-top: 10px;
    }
}

/*wp butonu*/
.whatsapp-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    background-color: #25d366;
    padding: 10px;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    transition: transform 0.2s ease;
}

.whatsapp-button:hover {
    transform: scale(1.1);
}

.whatsapp-button img {
    width: 38px;
    height: 38px;
}

@media (max-width: 576px) {
    .whatsapp-button {
        bottom: 20px;
        right: 20px;
        padding: 8px;
    }

    .whatsapp-button img {
        width: 32px;
        height: 32px;
    }
}

@media (max-width: 992px) {
    .whatsapp-button {
        bottom: 25px;
        right: 25px;
        padding: 9px;
    }

    .whatsapp-button img {
        width: 40px;
        height: 40px;
    }
}