* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    font-family: 'Poppins', sans-serif;
}

::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-thumb {
    background-color: var(--main-color);
}

::-webkit-scrollbar-track {
    background-color: var(--text-color);
    width: 50px;
}

:root {
    --text-color: white;
    /* --bg-color: #080808;
    --second-bg-color: #13131313;
    */
    --main-color: orange;
}

html {
    font-size: 60%;
}

body {
    background: #161616;
    background: url('../../images/bg2.jpeg') no-repeat;
    /* background: url('/images/bg2.jpeg') no-repeat; */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    transition: background-image 1.5s ease-in-out;
}

/* Genel: Footer'dan önce oluşan gereksiz boşlukları kaldır */
main {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

section:last-of-type {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1rem 8% 1rem;
    background: rgba(0, 0, 0, 0.3);
    background: transparent;
    backdrop-filter: blur(10px);
    background: black;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 5;
}

.logo {
    font-size: 2.5rem;
    color: var(--text-color);
    font-weight: 800;
    cursor: pointer;
    transition: 0.3s ease;
    text-decoration: none;
}

.logo:hover {
    transform: scale(1.1);
    transition: 0.3s ease;
}

.logo span {
    text-shadow: 0 0 25px var(--main-color);
    color: orange;
    font-size: 3rem;
    font-weight: 700;
}

.navbar a {
    font-size: 1.5rem;
    color: var(--text-color);
    margin-left: 4rem;
    font-weight: 500;
    transition: 0.3s ease;
    border-bottom: 3px solid transparent;
    text-decoration: none;
}

.navbar a:hover,
.navbar a.active {
    border-bottom: 3px solid var(--main-color);
}

/* Dropdown Menu */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--text-color);
    text-decoration: none;
    padding: 10px 15px;
    transition: all 0.3s ease;
}

.dropdown-toggle:hover {
    color: var(--main-color);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.dropdown-menu a:last-child {
    border-bottom: none;
}

.dropdown-menu a:hover {
    background: var(--main-color);
    color: #000;
}

/* Mobile Dropdown */
@media (max-width: 768px) {
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: rgba(255, 255, 255, 0.05);
        margin-top: 10px;
        border-radius: 5px;
        display: none;
    }
    
    .dropdown.active .dropdown-menu {
        display: block;
    }
    
    .dropdown-toggle {
        cursor: pointer;
    }
    
    .dropdown-toggle i {
        transition: transform 0.3s ease;
    }
    
    .dropdown.active .dropdown-toggle i {
        transform: rotate(180deg);
    }
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .dropdown-menu {
        display: none !important;
    }
    
    .dropdown-toggle {
        cursor: pointer;
    }
    
    .dropdown-toggle i {
        display: none;
    }
    
    /* Ürünler linkini direkt yap */
    .dropdown-toggle::after {
        content: " →";
        color: var(--main-color);
        font-weight: bold;
    }
    
    .dropdown-toggle:hover::after {
        content: " →";
        color: var(--main-color);
    }
}

/* About Preview Section */
.about-preview {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.8);
    width: 100%;
    overflow-x: hidden;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

.about-text {
    color: var(--text-color);
}

.about-text h2 {
    font-size: 3.5rem;
    color: var(--main-color);
    margin-bottom: 25px;
    font-weight: 700;
    line-height: 1.2;
}

.about-text p {
    font-size: 1.6rem;
    color: #cccccc;
    line-height: 1.8;
    margin-bottom: 30px;
}

.about-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 165, 0, 0.1);
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .about-preview {
        padding: 60px 0;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 20px;
        text-align: center;
    }

    .about-text h2 {
        font-size: 2.8rem;
    }

    .about-text p {
        font-size: 1.4rem;
    }

    .about-image img {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .about-preview {
        padding: 50px 0;
    }

    .about-content {
        padding: 0 15px;
        gap: 30px;
    }

    .about-text h2 {
        font-size: 2.4rem;
    }

    .about-text p {
        font-size: 1.3rem;
    }

    .about-image img {
        height: 250px;
    }
}

.hide {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0 10px;
}

#menu-icon {
    font-size: 3.6rem;
    color: var(--text-color);
    display: none;
    cursor: pointer;
}

.iv {
    font-size: 2.3rem;
    cursor: pointer;
    color: var(--text-color);
    cursor: pointer;
    display: none;
}

details summary {
    list-style: none;
    width: max-content;
    padding: 5px 10px;
    cursor: pointer;
    z-index: 100;
}

details {
    position: relative;
    z-index: 100;
    display: none;
}

.hidden {
    display: none;
}

details ul {
    position: absolute;
    top: 45px;
    right: 0;
    background: #000;
    backdrop-filter: blur(10px);
    border: 1px solid var(--main-color);
    box-shadow: 0 10px 50px var(--text-color);
    padding: 10px;
    border-radius: 10px;
    z-index: 100;
}

details ul li {
    z-index: 100;
    width: 150px;
    border-radius: 5px;
    cursor: pointer;
    display: grid;
    grid-template-columns: 20px 1fr;
    grid-template-rows: 48px;
    gap: 10px;
    justify-content: center;
    align-items: center;
    padding: 0 10px;
    text-align: left;
    transition: 0.3s ease;
    font-size: 14px;
    color: var(--text-color);
}

details ul li i {
    color: var(--main-color);
}

details ul li:hover {
    background-color: white;
    color: #000;
}

.icons {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.icons a {
    text-decoration: none;
}

.icons a i {
    font-size: 2.5rem;
    color: var(--text-color);
    margin-left: 1.3rem;
    transition: 0.3s ease;
}

.icons a i:hover {
    transform: scale(1.1);
    transition: 0.3s ease;
    color: var(--main-color);
}



@media (max-width: 1285px) {
    html {
        font-size: 55%;
    }
}

@media (max-width: 991px) {
    header {
        padding: 2rem 3%;
    }

    .section {
        min-height: 100vh;
        padding: 10rem 3% 2rem;
    }
}



@media (max-width: 1200px) {
    #menu-icon {
        display: block;
    }

    .iv {
        display: block;
    }

    details {
        display: block;
    }

    .icons {
        display: none;
    }

    .navbar {
        position: absolute;
        top: 100%;
        right: 0;
        width: 50%;
        height: 100vh;
        padding: 1rem 3%;
        background: rgba(0, 0, 0, 0.8);
        backdrop-filter: blur(20px);
        border-bottom-left-radius: 2rem;
        border-left: 2px solid var(--main-color);
        display: none;
    }

    .navbar.active {
        display: block;
    }

    .navbar a {
        display: block;
        font-size: 1.7rem;
        margin: 3rem 0;
        color: white;
    }
}

.home {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0rem 5%;
    padding: 5rem 8% 0rem;
    flex-wrap: wrap;
}

.home .col .span {
    background-color: rgba(0, 0, 0, 0.247);
    color: #ccc;
    padding: 7px 10px;
    font-size: 14px;
    border-radius: 20px;
    letter-spacing: 2px;
    margin-bottom: 10px;
    display: inline-block;
}

.home .col h1 {
    font-size: 45px;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--text-color);
    line-height: 1.3;
}

.home .col p {
    font-size: 14px;
    font-weight: 400;
    color: #ccc;
    margin-top: 20px;
    margin-bottom: 10px;
    line-height: 1.5;
    width: 85vmin;
}

.home .col .anchor {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 0 10px;
}

.home .col .anchor button {
    margin: 10px 0;
    padding: 10px 20px;
    background: var(--main-color);
    color: #fff;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    border-radius: 25px;
    transition: 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0 5px;
    border: 1px solid transparent;
    outline: none;
}

.home .col .anchor button i {
    font-size: 17px;
    transition: 0.3s ease;
}

.home .col .anchor button:hover {
    border: 1px solid #ccc;
    background: transparent;
    transition: 0.3s ease;
}

.home .col .anchor a {
    text-decoration: none;
    border-bottom: 2px solid var(--main-color);
    color: var(--text-color);
    font-size: 14px;
    font-weight: 600;
    transition: 0.3s ease;
}

.home .col .reviews {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 0 20px;
    margin-top: 30px;
}

.home .col .reviews div {
    cursor: pointer;
}

.home .col .reviews div h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-color);
}

.home .col .reviews div h4 {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-color);
}

.column {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0 20px;
    width: 500px;
    overflow: hidden;
}

.div {
    width: 100px;
    height: 430px;
    position: relative;
}

.div img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.div .h4 {
    position: absolute;
    color: var(--text-color);
    bottom: 90px;
    left: 0px;
    transform: rotate(-90deg);
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    z-index: 1;
    right: 0;
    letter-spacing: 3px;
}

.div.act {
    width: 330px;
    height: 430px;
    position: relative;
}

.div.act img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.div.act h4 {
    position: absolute;
    color: var(--text-color);
    bottom: 20px;
    left: 20px;
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
}

.slider-container {
    display: flex;
    align-items: center;
    justify-content: center;
    /* width: 400px;
    overflow: auto;
    overflow-y: hidden;
    overflow-x: scroll; 
     height: 470px; */

}

.slider-images {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 21px;
}

.slider-images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.slider-img {
    width: 100px;
    border-radius: 10px;
    cursor: pointer;
    position: relative;
    transition: 0.3s ease;
}

.slider-images .slider-img:first-child,
.slider-images .slider-img:last-child {
    height: 270px;
}

.slider-images .slider-img:nth-child(2),
.slider-images .slider-img:nth-child(6) {
    height: 330px;
}

.slider-images .slider-img:nth-child(3),
.slider-images .slider-img:nth-child(4),
.slider-images .slider-img:nth-child(5) {
    height: 370px;
}

.slider-img h1 {
    position: absolute;
    top: 50%;
    left: -10px;
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-color);
    transform: rotate(270deg);
}

.slider-img.act {
    width: auto !important;
    height: 430px !important;
}

.slider-img.act h1 {
    color: var(--main-color);
    left: 50%;
    transform: translate(-50%, -50%) rotate(0);
}

.new {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    /* flex-wrap: wrap; */
    background: #fff;
    padding: 10% 8%;
    width: 100%;
}

.box1 .fl {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    background: #cccccc48;
    border-radius: 10px;
    padding: 20px;
}

.box2 .fle {
    display: flex;
    align-items: start;
    justify-content: space-between;
    flex-direction: column;
    background: #cccccc48;
    border-radius: 10px;
    padding: 20px;
    /* height: 90vh; */
    width: 100%;
}

.box2 .fle img {
    width: 300px;
}

.box1 .fle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    background: #cccccc48;
    border-radius: 10px;
    padding: 20px;
}

.fel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0 20px;
    margin-top: 15px;
}

.color {
    background: var(--main-color);
    padding: 20px;
    height: 270px;
    width: 270px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border-radius: 10px;
}

@media (max-width: 1300px) {
    .new {
        flex-direction: column;
    }

    .flex {
        width: 100%;
    }

    .box1 {
        width: 100%;
    }

    .color {
        width: 100%;
        margin-top: 15px;
        margin-bottom: 15px;
    }

    .box1 .fl {
        width: 100%;
    }

    .box2 .fle {
        width: 100%;
        /* height: 90vh; */
        height: auto;
        flex-direction: column;
    }

    .box2 {
        width: 100%;
    }

    .fel {
        width: 100%;
    }

    .fle {
        width: 100%;
    }
}

.collect {
    background-color: #fff;
    color: #777;
    padding: 7px 10px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 20px;
    letter-spacing: 2px;
    margin-bottom: 10px;
    display: inline-block;
    border: 1px solid #ccc;
}

.h2 {
    color: var(--text-color);
    font-size: 30px;
}

.cole {
    color: var(--main-color);
}

.h3 {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.ul {
    list-style: none;
    margin-bottom: 10px;
}

.ul li {
    font-size: 14px;
    font-weight: 500;
}

.a {
    font-size: 14px;
    border-bottom: 2px solid var(--main-color);
    text-decoration: none;
    color: var(--main-color);
}

.a i {
    font-size: 15px;
}

.featured {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    background: var(--text-color);
    width: 100%;
    padding: 7% 8%;
}

.head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
    gap: 5px 20px;
    margin-bottom: 10px;
}

.fea {
    font-size: 35px;
    font-weight: 500;
}

.bt {
    font-size: 25px;
    font-weight: 600;
    color: var(--text-color);
    border: 1px solid transparent;
    background: var(--main-color);
    width: 100px;
    padding: 3px;
    cursor: pointer;
    border-radius: 30px;
    transition: .3s ease;
    outline: none;
}

.bt:hover {
    transition: .3s ease;
    background: var(--text-color);
    color: var(--main-color);
    border: 1px solid var(--main-color);
}

.grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    width: 100%;
    grid-gap: 20px 10px;
    text-align: center;
}

.width {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.width img {
    width: 120px;
    height: 130px;
    object-fit: cover;
    border-radius: 10px;
}

@media (max-width: 1200px) {
    .grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .head {
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .width img {
        width: 100px;
        height: 100px;
        object-fit: cover;
    }

    .width {
        padding: 20px 10px;
    }

    .head {
        margin-bottom: 20px;
    }

    .fea {
        font-size: 25px;
        font-weight: 500;
    }

    .bt {
        font-size: 20px;
        font-weight: 600;
        color: var(--main-color);
        border: 1px solid #ccc;
        background: transparent;
        width: 90px;
        padding: 2px;
    }
}


.h {
    font-size: 17px;
    font-weight: 500;
}

.p {
    font-size: 13px;
    color: #777;
}

.dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0 10px;
    margin-top: 25px;
}


.dots div {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    border: 1px solid var(--main-color);
    cursor: pointer;
}

.dots div.actv {
    border: 1px solid var(--main-color);
    background: var(--main-color);
}


.hideOne,
.hideTwo,
.hideThree {
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
    opacity: 1;
    transform: scale(1);
}

.products {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    min-height: 100vh;
    background: var(--text-color);
    padding: 8% 8%;
}

.view {
    font-size: 16px;
    font-weight: 400;
    color: var(--text-color);
    border: 1px solid transparent;
    background: var(--main-color);
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 30px;
    transition: .3s ease;
    outline: none;
}

.view:hover {
    transition: .3s ease;
    background: transparent;
    color: var(--main-color);
    border: 1px solid var(--main-color);
}

.headings {
    display: flex;
    align-items: center;
    justify-content: start;
    flex-wrap: wrap;
    width: 100%;
    gap: 5px 25px;
    margin-bottom: 10px;
    margin-top: 20px;
}

.headings h3 {
    font-size: 1.5rem;
    font-weight: 500;
    border-bottom: 1px solid transparent;
    cursor: pointer;
}

.hes {
    display: none;
    position: relative;
    width: 150px;
}

.hes .drop {
    position: absolute;
    left: 20px;
    right: 0;
    width: 100%;
    bottom: -50%;
    /* top: -100%; */
    padding: 10px 20px;
    background: var(--main-color);
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease-in-out;
    color: var(--text-color);
}

.drop.sow {
    display: none;
}

.drop h3 {
    display: block;
    margin-bottom: 10px;
    width: 100%;
    border-bottom: 1px solid transparent;
}

.drop h3:hover {
    border-bottom: 1px solid white;
}

.headings h3.now {
    border-bottom: 1px solid var(--main-color);
}

.productGrid {
    display: grid;
    grid-template-columns: repeat(3, 2fr);
    width: 100%;
    grid-gap: 20px 30px;
}

@media (max-width: 1200px) {
    .productGrid {
        grid-template-columns: repeat(2, 2fr);
    }

}

@media (max-width: 768px) {
    .productGrid {
        grid-template-columns: repeat(1, 1fr);
    }

    .hes {
        display: block;
    }

    .lR,
    .dR,
    .oR,
    .iR {
        display: none;
    }
}

.productGrid .start {
    position: relative;
    background-color: #cccccc48;
    border-radius: 10px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    cursor: pointer;
}

.start .price {
    position: absolute;
    top: 10px;
    /* left: 10px; */
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 20px;
}

.price h4 {
    font-size: 12px;
    font-weight: 400;
    color: var(--text-color);
    background-color: var(--main-color);
    border-radius: 30px;
    padding: 5px;
}

.price div i {
    font-size: 17px;
    padding: 5px;
    background-color: var(--text-color);
    border-radius: 50%;
}

.start .img-box img {
    object-fit: cover;
    border-radius: 10px;
}

.start .desc {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: absolute;
    bottom: 0px;
    background: var(--main-color);
    width: 100%;
    padding: 10px 20px;
    border-radius: 0px 0px 10px 10px;
}

.desc h3 {
    font-size: 14px;
    font-weight: 400;
    color: var(--text-color);
}

.desc div i {
    font-size: 18px;
    padding: 10px;
    text-align: center;
    background-color: var(--text-color);
    border-radius: 50%;
    color: var(--main-color);
}

.saleSection {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
    padding: 5% 8%;
    padding-bottom: 3%;
    background: var(--text-color);
}

.saleSect {
    background: #cccccc48;
    border-radius: 10px;
    padding: 20px;
    display: flex;
    align-items: start;
    justify-content: center;
    flex-direction: column;
    height: 450px;
    gap: 20px 0;
}

.flex {
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
    width: 100%;
}

.flexTwo {
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
    width: 100%;
}

.flash {
    font-size: 25px;
    font-weight: 500;
}

.flashPara {
    font-size: 14px;
    font-weight: 400;
    color: #777;
}

.timer {
    text-align: center;
    font-size: 17px;
    font-weight: 500;
    color: var(--main-color);
    margin-bottom: 10px;
    cursor: pointer;
}

.time {
    font-size: 14px;
    cursor: pointer;
    font-weight: 400;
    color: #777;
    padding: 5px 10px;
    margin-right: 10px;
    text-align: center;
    border-radius: 5px;
    border: none;
    outline: none;
    background-color: var(--text-color);
}

.flex div img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.pR {
    font-size: 14px;
    font-weight: 700;
}

.lT {
    font-size: 14px;
    font-weight: 400;
    color: #777;
    text-decoration: line-through;
}

.vn {
    font-size: 20px;
    font-weight: 500;
    color: var(--main-color);
    color: #000;
    margin-bottom: 10px;
}

.pN {
    font-size: 14px;
    font-weight: 400;
    color: #777;
    margin-bottom: 20px;
}

.shop {
    font-size: 15px;
    font-weight: 400;
    margin-bottom: 10px;
    border-radius: 30px;
    border: 1px solid transparent;
    background-color: var(--main-color);
    color: var(--text-color);
    padding: 10px 30px;
    margin: 0;
    cursor: pointer;
    transition: .3s ease;
}

.shop:hover {
    transition: .3s ease;
    background-color: transparent;
    color: var(--main-color);
    border: 1px solid var(--main-color);
}

.twoBox {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    gap: 30px;
}

.rel {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    background-color: #cccccc48;
    border-radius: 10px;
    padding: 5px 0;
    width: 100%;
}

.rel img {
    width: 100%;
    height: 100%;
    width: 300px;
    height: 200px;
}

.rel div {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    width: 100%;
    bottom: 0;
}

.rel div h3 {
    font-size: 14px;
    font-weight: 600;
}

.rel div button {
    font-size: 14px;
    font-weight: 600;
    color: var(--main-color);
    background-color: transparent;
    border: 1px solid var(--main-color);
    padding: 5px 20px;
    cursor: pointer;
    border-radius: 30px;
    transition: .3s ease;
}

.rel div button:hover {
    transition: .3s ease;
    background-color: var(--main-color);
    color: var(--text-color);
    border: 1px solid var(--main-color);
}

@media (max-width: 1200px) {
    .saleSect {
        height: auto;
        gap: 30px 0;
        width: 100%;
    }

    .twoBox {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-direction: column;
        gap: 30px;
        margin-top: 30px;
        width: 100%;
    }
}

.dealFlex {
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
    width: 100%;
    padding: 5% 8%;
    padding-bottom: 2%;
    min-height: 100vh;
    background-color: var(--text-color);
}

.dealBoxOne {
    background: url('../../images/dealBg.jpeg') no-repeat;
    /* background: url('/images/dealBg.jpeg') no-repeat; */
    background-size: cover;
    background-position: center;
    padding: 20px;
    height: 450px;
    width: 450px;
    border-radius: 10px;
    display: flex;
    align-items: start;
    justify-content: center;
    flex-direction: column;
}

.dealBoxOne div {
    display: flex;
    align-items: start;
    justify-content: start;
    gap: 20px;
    margin-bottom: 20px;
}

.dealBoxOne div h3 {
    font-size: 18px;
    font-weight: 500;
    color: #ccc;
}

.dealBoxOne div button {
    font-size: 12px;
    font-weight: 600;
    color: var(--main-color);
    background-color: var(--text-color);
    border: 1px solid transparent;
    padding: 3px 15px;
    cursor: pointer;
    border-radius: 30px;
    transition: .3s ease;
}

.dealBoxOne div button:hover {
    transition: .3s ease;
    background-color: transparent;
    color: var(--text-color);
    border: 1px solid var(--main-color);
}

.dealBoxOne h1 {
    font-size: 30px;
    font-weight: 500;
    color: var(--text-color);
    word-spacing: 5px;
    margin-bottom: 20px;
}

.dealBoxOne p {
    font-size: 14px;
    font-weight: 400;
    color: #ccc;
    margin-bottom: 20px;
}

.dealBoxTwo {
    background: #cccccc48;
    padding: 20px;
    height: 100%;
    border-radius: 10px;
    display: flex;
    align-items: start;
    justify-content: center;
    flex-direction: column;
    height: 450px;
    width: 450px;
}

.dealBoxTwo h3 {
    font-size: 18px;
    font-weight: 600;
    color: #000;
    margin-bottom: 20px;
}

.dealBoxTwo h1 {
    font-size: 30px;
    font-weight: 700;
    color: #000;
    margin-bottom: 20px;
}

.dealBoxTwo p {
    font-size: 15px;
    font-weight: 400;
    color: #000;
    margin-bottom: 20px;
}

@media (max-width: 1200px) {
    .dealFlex {
        justify-content: center;
        flex-wrap: wrap;
        gap: 30px;
        width: 100%;
        padding: 5% 8%;
        padding-bottom: 5%;
    }

    .dealBoxOne {
        width: 100%;
        height: 100%;
        padding: 30px;
    }

    .dealBoxTwo {
        width: 100%;
        height: 100%;
        padding: 30px;
    }
}

.clientSection {
    padding: 8% 8%;
    padding-bottom: 3%;
    min-height: 100vh;
    background-color: var(--text-color);
    width: 100%;
}

.clientSec {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* flex-wrap: wrap; */
    flex-direction: row;
    width: 100%;
    gap: 30px;
}

.clientOne,
.clientTwo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px 30px;
    padding: 10px;
    border-radius: 10px;
    flex-direction: row;
    background-color: var(--main-color);
    cursor: pointer;
    margin-top: 20px;
}

.clientOne div img,
.clientTwo div img {
    width: 300px;
    height: 350px;
    border-radius: 10px;
}

.clientOne div p,
.clientTwo div p {
    font-size: 14px;
    font-size: 1.3rem;
    color: #ffffffe1;
    line-height: 1.8;
    margin-bottom: 20px;
    padding: 20px 0;
    border-bottom: 1px solid #ffffffe1;
}

.clientOne div h3,
.clientTwo div h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #000;
    margin-top: 30px;
}

@media (max-width: 1200px) {
    .clientSec {
        flex-direction: column;
        gap: 30px 0;
        width: 100%;
    }

    .disp {
        display: block !important;
    }

    .clientTwo {
        background-color: var(--main-color) !important;
    }
}

@media (max-width: 768px) {
    .clientSec {
        flex-direction: column;
        gap: 30px 0;
        width: 100%;
    }

    .clientOne,
    .clientTwo {
        flex-direction: column;
        gap: 20px 0;
        padding: 0px;
    }

    .clientOne div img,
    .clientTwo div img {
        height: 350px;
        width: 100%;
        border-radius: 10px 10px 0 0;
    }

    .clientOne div,
    .clientTwo div {
        width: 100%;
    }

    .gap {
        padding: 10px;
    }

    .clientOne div p,
    .clientTwo div p {
        font-size: 1.5rem;
    }
}

.blogSection {
    /* flex-direction: column; */
    gap: 20px;
    min-height: 100vh;
    background: var(--text-color);
    padding: 8% 9%;
    padding-bottom: 3%;
}

.blogSect {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px 0px;
    width: 100%;
    margin-top: 30px;
    text-align: center;
}

.blogSect div {
    padding: 0px;
    cursor: pointer;
    border-radius: 10px;
}

.blogOne div,
.blogTwo div,
.blogThree div {
    width: 100%;
}

.blogOne div img,
.blogTwo div img,
.blogThree div img {
    border-radius: 10px;
    width: 100%;
    height: 100%;
    width: 330px;
    height: 250px;
}

.blogOne h3,
.blogTwo h3,
.blogThree h3 {
    font-size: 1.6rem;
    font-weight: 600;
    margin-top: 20px;
}

.blogOne p,
.blogTwo p,
.blogThree p {
    font-size: 13px;
    margin-top: 8px;
}

.blogOne p span,
.blogTwo p span,
.blogThree p span {
    font-weight: 600;
}

.blogOne p small,
.blogTwo p small,
.blogThree p small {
    color: var(--main-color);
}

@media (max-width: 1300px) {
    .blogSect div {
        padding: 0px;
        cursor: pointer;
        border-radius: 10px;
        width: 100%;
    }

    .blogOne div img,
    .blogTwo div img,
    .blogThree div img {
        border-radius: 10px;
        width: 100%;
        height: 350px;
    }
}

@media (max-width: 768px) {
    .blogSect div {
        padding: 0px;
        cursor: pointer;
        border-radius: 10px;
        width: 100%;
    }

    .blogOne div img,
    .blogTwo div img,
    .blogThree div img {
        border-radius: 10px;
        width: 100%;
        height: 100%;
    }
}

.faqSection {
    min-height: 100vh;
    background: var(--text-color);
    padding: 6% 8%;
    padding-bottom: 4%;
}

.faqHead {
    text-align: center;
}

.faqHead h1 {
    font-size: 3.5rem;
    font-weight: 500;
}

.faqFlexDiv {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 30px;
    width: 100%;
    margin-top: 20px;
}

.faqOne,
.faqTwo,
.faqThree,
.faqFour,
.faqFive {
    width: 100%;
}

.ques {
    background-color: #cccccc48;
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
    padding: 10px 20px;
    border-radius: 10px;
}

.ques h4 {
    font-size: 1.7rem;
    font-weight: 600;
}

.ques .shop {
    padding: 3px 20px;
    border: 1px solid var(--main-color);
    background-color: transparent;
    color: var(--main-color);
    outline: none;
}

.ques .shop:hover {
    background-color: var(--main-color);
    color: var(--text-color);
}

.faqAns {
    padding: 30px 20px;
    background: var(--main-color);
    border-radius: 0px 0 10px 10px;
}

.faqAns p {
    text-align: center;
    color: var(--text-color);
    font-size: 1.5rem;
}

@media (max-width: 768px) {
    .ques h4 {
        font-size: 1.5rem;
    }

    .ques p {
        font-size: 1.2rem;
    }
}

.newsLetterSection {
    min-height: 100vh;
    background-color: var(--text-color);
    /* padding: 8% 8%; */
    /* padding-bottom: 3%; */
    padding-left: 8%;
    padding-right: 8%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.newsFlex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 30px 0;
    flex-wrap: wrap;
    background: #cccccc48;
    border-radius: 10px;
    padding: 20px;
}

.newsFlex div h1 {
    font-size: 4rem;
    font-weight: 600;
}

.newsFlex div p {
    font-size: 1.5rem;
    margin-top: 20px;
    margin-bottom: 20px;
}

.newsFlex div form div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    background: var(--text-color);
    border-radius: 30px;
    padding: 10px 20px;
    gap: 10px;
    position: relative;
}

.newsFlex div form div i {
    position: absolute;
    left: 10px;
    background-color: var(--main-color);
    padding: 10px;
    border-radius: 50%;
    font-size: 1.3rem;
    color: var(--text-color);
}

.newsFlex div form div input {
    padding: 10px 30px;
    border: none;
    outline: none;
}

.newsFlex div form button {
    padding: 10px 30px;
    border: none;
    outline: none;
    background-color: var(--main-color);
    color: var(--text-color);
    border-radius: 30px;
    cursor: pointer;
    font-size: 1.3rem;
    font-weight: 600;
    transition: 0.3s ease;
    outline: none;
    border: 1px solid transparent;
}

.newsFlex div form button:hover {
    transition: 0.3s ease;
    background-color: var(--text-color);
    color: var(--main-color);
    border: 1px solid var(--main-color);
}

.newsFlex div img {
    border-radius: 10px;
    height: 100%;
    /* width: 100%; */
    height: 300px;
    width: 450px;
}

@media (max-width: 1200px) {

    .newsFlex .newsContent,
    .newsFlex .newsImg {
        width: 100%;
    }

    .newsFlex .newsImg img {
        width: 100%;
        height: 100%;
    }
}

@media (max-width: 768px) {
    .newsFlex div h1 {
        font-size: 3rem;
    }

    .newsFlex div form button {
        display: none;
    }

    .on {
        display: block !important;
    }

    .newsFlex div form div i {
        position: absolute;
        left: 10px;
        background-color: var(--main-color);
        padding: 10px;
        border-radius: 50%;
        font-size: 1.3rem;
        color: var(--text-color);
    }

    .newsFlex div form div input {
        padding: 10px 30px;
        border: none;
        width: 100%;
        outline: none;
    }

}

/* Footer Styles */
footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    backdrop-filter: blur(10px);
    padding: 1.5rem 8%;
    border-top: 1px solid #333;
    color: #fff;
    margin-top: 1.5rem;
}

.logoHead h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
    color: #fff;
}

.logoHead h1 span:first-child {
    color: var(--main-color);
}

.logoHead h1 span:last-child {
    color: var(--main-color);
}

.footerFlex {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footerFlex div h3 {
    color: var(--main-color);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    border-bottom: 2px solid var(--main-color);
    padding-bottom: 0.5rem;
    display: inline-block;
}

.footerFlex div a {
    display: block;
    color: #ccc;
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    padding: 0.3rem 0;
}

.footerFlex div a:hover {
    color: var(--main-color);
    transform: translateX(5px);
}

/* İletişim bilgileri için özel stil */
.contactInfo p {
    color: #ccc;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.3rem 0;
    transition: all 0.3s ease;
}

.contactInfo p:hover {
    color: #fff;
    transform: translateX(5px);
}

.contactInfo p i {
    color: var(--main-color);
    font-size: 1.2rem;
    min-width: 25px;
    text-align: center;
}

.copyrightSec {
    padding: 1rem 0;
    text-align: center;
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid #444;
    margin-top: 1rem;
}

.copyrightSec p {
    font-size: 0.9rem;
    color: #999;
    margin: 0;
}

@media (max-width: 768px) {
    footer {
        padding: 2rem 5%;
    }
    
    .logoHead h1 {
        font-size: 2rem;
    }
    
    .footerFlex {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footerFlex div h3 {
        font-size: 1.2rem;
    }
    
    .footerFlex div a {
        font-size: 0.9rem;
    }
    
    .contactInfo p {
        font-size: 0.9rem;
    }
}

/* Ürünler Sayfası Stilleri */
.filter-btn.active {
    background: #333 !important;
    color: white !important;
}

.filter-btn:hover {
    background: #333 !important;
    color: white !important;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* Blog Sayfası Stilleri */
.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.pagination a:hover {
    background: #333 !important;
    color: white !important;
}

/* İletişim Sayfası Stilleri */
.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.faq-question:hover {
    background: #e9ecef !important;
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .filter-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .filter-btn {
        width: 100%;
        max-width: 200px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr !important;
    }
    
    .hero-section h1 {
        font-size: 2rem !important;
    }
    
    .hero-section p {
        font-size: 1rem !important;
    }
}

@media (max-width: 480px) {
    .hero-section h1 {
        font-size: 1.5rem !important;
    }
    
    .product-card,
    .blog-card,
    .contact-card {
        margin: 0 1rem;
    }
}

/* Products Page Styles */
.products-hero {
    background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.5) 100%), url('../images/livingroom.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-bottom: 0;
    position: relative;
    overflow: hidden;
}

.products-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 165, 0, 0.1) 0%, rgba(255, 165, 0, 0.05) 100%);
    pointer-events: none;
}

.products-hero .hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.products-hero .hero-content h1 {
    font-size: 4.5rem;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    background: linear-gradient(135deg, #ffffff 0%, var(--main-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease-out;
}

.products-hero .hero-content p {
    font-size: 2rem;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.95;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease-out 0.3s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.products-filter {
    padding: 40px 8%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(20, 20, 20, 0.9) 100%);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 165, 0, 0.1);
}

.filter-container {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.filter-btn {
    padding: 14px 28px;
    border: 2px solid var(--main-color);
    background: linear-gradient(135deg, transparent 0%, transparent 100%);
    color: var(--text-color);
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.4rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(255, 165, 0, 0.1);
}

.filter-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--main-color) 0%, #ff8c00 100%);
    transition: left 0.3s ease;
    z-index: -1;
}

.filter-btn:hover,
.filter-btn.active {
    color: #000;
    border-color: var(--main-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 165, 0, 0.3);
}

.filter-btn:hover::before,
.filter-btn.active::before {
    left: 0;
}

.filter-btn.active {
    background: linear-gradient(135deg, var(--main-color) 0%, #ff8c00 100%);
    color: #000;
    box-shadow: 0 8px 25px rgba(255, 165, 0, 0.4);
}

/* Arama formu stilleri */
.search-container {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.search-form {
    display: flex;
    gap: 10px;
    max-width: 400px;
    width: 100%;
}

.search-input {
    flex: 1;
    padding: 12px 20px;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    outline: none;
    background: rgba(255, 255, 255, 0.9);
    color: #333;
}

.search-input:focus {
    background: white;
    box-shadow: 0 0 0 3px rgba(255, 165, 0, 0.3);
}

.search-btn {
    padding: 12px 20px;
    background: var(--main-color);
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s ease;
    color: white;
    font-weight: 600;
}

.search-btn:hover {
    background: #ff8c00;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 165, 0, 0.4);
}

.products-grid {
    padding: 50px 8%;
    max-width: 1400px;
    margin: 0 auto;
}

#products-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    width: 100%;
}

/* Responsive grid düzeni */
@media (max-width: 1200px) {
    .products-grid {
        padding: 40px 5%;
    }
    
    #products-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .products-grid {
        padding: 20px 15px;
    }
    
    #products-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .product-card {
        height: 320px;
        border-radius: 12px;
    }
    
    .product-image {
        height: 140px;
    }
    
    .product-info {
        padding: 10px;
    }
    
    .product-info h3 {
        font-size: 1.2rem;
        min-height: 28px;
        margin-bottom: 6px;
    }
    
    .product-info p {
        font-size: 1rem;
        margin-bottom: 6px;
        line-height: 1.3;
    }
    
    .product-category {
        font-size: 0.9rem;
        padding: 4px 8px;
        margin-bottom: 8px;
    }
    
    .product-price {
        font-size: 1.1rem;
        margin-bottom: 8px;
    }
    
    .product-detail-btn {
        padding: 10px 12px;
        font-size: 1rem;
        border-radius: 8px;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .products-filter {
        padding: 20px 15px;
    }

    .filter-container {
        flex-wrap: wrap;
        gap: 8px;
        margin-bottom: 15px;
        justify-content: center;
    }
    
    .filter-btn {
        font-size: 1.1rem;
        padding: 10px 15px;
        border-radius: 8px;
        min-height: 44px;
        min-width: 80px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .search-container {
        margin-bottom: 15px;
    }
    
    .search-input {
        font-size: 1.1rem;
        padding: 10px 12px;
    }
    
    .search-btn {
        padding: 10px 12px;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .products-grid {
        padding: 15px 10px;
    }
    
    #products-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .product-card {
        height: 280px;
        border-radius: 10px;
    }
    
    .product-image {
        height: 120px;
    }
    
    .product-info {
        padding: 8px;
    }
    
    .product-info h3 {
        font-size: 1.1rem;
        min-height: 24px;
        margin-bottom: 4px;
    }
    
    .product-info p {
        font-size: 0.9rem;
        margin-bottom: 4px;
        line-height: 1.2;
    }
    
    .product-category {
        font-size: 0.8rem;
        padding: 3px 6px;
        margin-bottom: 6px;
    }
    
    .product-price {
        font-size: 1rem;
        margin-bottom: 6px;
    }
    
    .product-detail-btn {
        padding: 6px 10px;
        font-size: 0.9rem;
        border-radius: 6px;
    }
    
    .filter-container {
        gap: 6px;
        margin-bottom: 12px;
    }
    
    .filter-btn {
        font-size: 1rem;
        padding: 6px 10px;
        border-radius: 6px;
    }
    
    .search-input {
        font-size: 1rem;
        padding: 8px 10px;
    }
    
    .search-btn {
        padding: 8px 10px;
        font-size: 1rem;
    }
}

.product-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(15px);
    border-radius: 18px;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    position: relative;
    height: 450px;
    display: flex;
    flex-direction: column;
    width: 100%;
    min-width: 0;
    cursor: pointer;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 165, 0, 0.1) 0%, rgba(255, 165, 0, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.product-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 165, 0, 0.3);
}

.product-card:hover::before {
    opacity: 1;
}

@media (max-width: 768px) {
    .product-card:hover {
        transform: none;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
        border-color: rgba(255, 255, 255, 0.1);
    }
    
    .product-card:hover::before {
        opacity: 0;
    }
    
    .product-card:hover .product-image img {
        transform: none;
    }
    
    .product-card:hover .product-category {
        background: rgba(255, 165, 0, 0.2);
        color: var(--main-color);
    }
}

.product-image {
    height: 220px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(45deg, #f0f0f0, #e0e0e0);
    flex-shrink: 0;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-info {
    padding: 18px;
    color: var(--text-color);
    position: relative;
    z-index: 1;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 0;
}

.product-info h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
    min-height: 38px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-align: center;
}

.product-info p {
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 12px;
    line-height: 1.5;
    min-height: 45px;
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    text-align: center;
}

.product-category {
    display: inline-block;
    background: linear-gradient(135deg, var(--main-color) 0%, #ff8c00 100%);
    color: #000;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 12px;
    box-shadow: 0 4px 15px rgba(255, 165, 0, 0.3);
    transition: all 0.3s ease;
    align-self: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-card:hover .product-category {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(255, 165, 0, 0.4);
}

.product-detail-btn {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, transparent 0%, transparent 100%);
    border: 2px solid var(--main-color);
    color: var(--main-color);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    margin-top: auto;
    flex-shrink: 0;
    pointer-events: none;
}

.product-detail-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--main-color) 0%, #ff8c00 100%);
    transition: left 0.3s ease;
    z-index: -1;
}

.product-detail-btn:hover {
    color: #000;
    border-color: var(--main-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 165, 0, 0.3);
}

.product-detail-btn:hover::before {
    left: 0;
}

/* Product Modal */
.product-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 20px;
    backdrop-filter: blur(10px);
}

.modal-content {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(20, 20, 20, 0.95) 100%);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    border: 1px solid rgba(255, 165, 0, 0.2);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 3rem;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10001;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 165, 0, 0.2);
    border-radius: 50%;
    border: 1px solid rgba(255, 165, 0, 0.3);
}

.close-modal:hover {
    background: var(--main-color);
    color: #000;
    transform: scale(1.1);
}

.modal-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    padding: 40px;
}

.modal-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    background: #333;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.modal-image:hover img {
    transform: scale(1.05);
}

.modal-info {
    color: var(--text-color);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.modal-info h2 {
    font-size: 2.4rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
    line-height: 1.2;
}

.modal-info p {
    font-size: 1.5rem;
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 20px;
}

.product-features h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--main-color);
    margin-bottom: 15px;
}

.product-features ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.product-features li {
    font-size: 1.4rem;
    color: #cccccc;
    margin-bottom: 8px;
    padding-left: 25px;
    position: relative;
    line-height: 1.5;
}

.product-features li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--main-color);
    font-weight: bold;
    font-size: 1.6rem;
}

.product-details {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 20px;
    border: 1px solid rgba(255, 165, 0, 0.1);
    margin-bottom: 20px;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.detail-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.detail-label {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--main-color);
}

.detail-item span:last-child {
    font-size: 1.4rem;
    color: #ffffff;
    font-weight: 500;
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #fff;
    border: none;
    padding: 16px 30px;
    border-radius: 12px;
    cursor: pointer;
    font-size: 1.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
    margin-top: 20px;
    margin-right: 10px;
}

.whatsapp-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.4);
    background: linear-gradient(135deg, #128C7E 0%, #25D366 100%);
}

.contact-btn {
    background: linear-gradient(135deg, var(--main-color) 0%, #ff8c00 100%);
    color: #000;
    border: none;
    padding: 16px 30px;
    border-radius: 12px;
    cursor: pointer;
    font-size: 1.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 165, 0, 0.3);
    margin-top: 20px;
}

.contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 165, 0, 0.4);
    background: linear-gradient(135deg, #ff8c00 0%, var(--main-color) 100%);
}

/* Sayfalama stilleri */
.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.page-link {
    padding: 10px 15px;
    border: 2px solid rgba(255, 165, 0, 0.3);
    border-radius: 8px;
    text-decoration: none;
    color: var(--text-color);
    transition: all 0.3s ease;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.page-link:hover, .page-link.active {
    background: var(--main-color);
    color: #000;
    border-color: var(--main-color);
    box-shadow: 0 5px 15px rgba(255, 165, 0, 0.4);
}

/* Ürün bulunamadı mesajı */
.no-products {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-color);
    grid-column: 1 / -1;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.no-products h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
    color: var(--main-color);
}

.no-products p {
    margin-bottom: 20px;
    opacity: 0.8;
}

/* Modal butonları */
.modal-actions {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.close-btn {
    padding: 10px 20px;
    background: #6c757d;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    flex: 1;
    font-size: 14px;
}

.close-btn:hover {
    background: #5a6268;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .products-hero {
        height: 40vh;
        padding: 20px;
    }

    .products-hero .hero-content h1 {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }

    .products-hero .hero-content p {
        font-size: 1.3rem;
        line-height: 1.4;
    }

    .filter-container {
        flex-wrap: wrap;
        gap: 10px;
    }

    .filter-btn {
        font-size: 1.3rem;
        padding: 10px 15px;
    }

    .products-grid {
        padding: 30px 5%;
    }

    .product-card {
        height: 350px;
    }

    .product-image {
        height: 160px;
    }

    .product-info {
        padding: 12px;
    }

    .product-info h3 {
        font-size: 1.3rem;
        min-height: 32px;
    }

    .product-info p {
        font-size: 1.1rem;
        margin-bottom: 8px;
    }

    .product-detail-btn {
        padding: 8px 12px;
        font-size: 1.2rem;
    }

    .modal-content {
        margin: 10px;
        max-height: 95vh;
        border-radius: 15px;
    }

    .modal-body {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 15px;
    }

    .modal-image {
        order: -1;
        border-radius: 10px;
        overflow: hidden;
    }

    .modal-image img {
        border-radius: 10px;
    }

    .modal-info h2 {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }

    .modal-info p {
        font-size: 1.2rem;
        line-height: 1.4;
        margin-bottom: 15px;
    }

    .product-features h3 {
        font-size: 1.4rem;
        margin-bottom: 10px;
    }

    .product-features li {
        font-size: 1.1rem;
        margin-bottom: 6px;
    }

    .product-details {
        padding: 12px;
        border-radius: 10px;
    }

    .detail-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
        margin-bottom: 8px;
    }

    .detail-label {
        font-size: 1.1rem;
        font-weight: 600;
    }

    .detail-item span:last-child {
        font-size: 1.1rem;
    }

    .modal-actions {
        gap: 8px;
        margin-top: 15px;
    }

    .whatsapp-btn {
        padding: 12px 20px;
        font-size: 1.2rem;
        border-radius: 10px;
    }

    .close-btn {
        padding: 12px 20px;
        font-size: 1.2rem;
        border-radius: 10px;
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 20px 3%;
    }

    .product-card {
        border-radius: 15px;
    }

    .product-info {
        padding: 20px;
    }

    .product-info h3 {
        font-size: 1.6rem;
    }

    .product-info p {
        font-size: 1.2rem;
    }

    .product-detail-btn {
        padding: 12px;
        font-size: 1.3rem;
    }

    .modal-content {
        margin: 10px;
        max-height: 95vh;
    }

    .modal-body {
        padding: 15px;
    }

    .modal-info h2 {
        font-size: 1.8rem;
    }

    .modal-info p {
        font-size: 1.3rem;
    }

    .whatsapp-btn {
        padding: 12px 20px;
        font-size: 1.3rem;
    }

    .contact-btn {
        padding: 14px 25px;
        font-size: 1.4rem;
    }
}

/* About Page Styles */
.about-hero {
    background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.5) 100%), url('../images/aboutus.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-bottom: 0;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 165, 0, 0.1) 0%, rgba(255, 165, 0, 0.05) 100%);
    pointer-events: none;
}

.about-hero .hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.about-hero .hero-content h1 {
    font-size: 4.5rem;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    background: linear-gradient(135deg, #ffffff 0%, var(--main-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease-out;
}

.about-hero .hero-content p {
    font-size: 2rem;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.95;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease-out 0.3s both;
}

.about-content {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.8);
}

.about-content .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text {
    color: var(--text-color);
}

.about-text h2 {
    font-size: 3.5rem;
    margin-bottom: 25px;
    font-weight: 700;
    color: var(--main-color);
    line-height: 1.2;
}

.about-text p {
    font-size: 1.6rem;
    line-height: 1.8;
    color: #cccccc;
    margin-bottom: 30px;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.feature {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(15px);
    border-radius: 15px;
    padding: 25px;
    border: 1px solid rgba(255, 165, 0, 0.1);
    transition: all 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 165, 0, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.feature i {
    font-size: 3rem;
    color: var(--main-color);
    margin-bottom: 15px;
}

.feature h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: #ffffff;
    font-weight: 600;
}

.feature p {
    font-size: 1.4rem;
    color: #cccccc;
    line-height: 1.6;
}

.about-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

.mission-vision {
    padding: 80px 8%;
    background: rgba(0, 0, 0, 0.9);
}

.mission-vision .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.mission, .vision {
    text-align: center;
    padding: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.mission h2, .vision h2 {
    font-size: 2.5rem;
    color: var(--main-color);
    margin-bottom: 20px;
}

.mission p, .vision p {
    font-size: 1.6rem;
    color: #ccc;
    line-height: 1.6;
}

.values {
    padding: 80px 8%;
    background: rgba(0, 0, 0, 0.8);
}

.values .container {
    max-width: 1200px;
    margin: 0 auto;
}

.values h2 {
    text-align: center;
    font-size: 3rem;
    color: var(--text-color);
    margin-bottom: 50px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.value-item {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.value-item:hover {
    transform: translateY(-10px);
}

.value-item i {
    font-size: 4rem;
    color: var(--main-color);
    margin-bottom: 20px;
}

.value-item h3 {
    font-size: 2rem;
    color: var(--text-color);
    margin-bottom: 15px;
}

.value-item p {
    font-size: 1.4rem;
    color: #ccc;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .about-hero .hero-content h1 {
        font-size: 3rem;
    }
    
    .about-hero .hero-content p {
        font-size: 1.5rem;
    }
    
    .about-content .container {
        flex-direction: column;
        text-align: center;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .mission-vision .container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .about-text h2,
    .values h2 {
        font-size: 2.5rem;
    }
    
    .mission h2, .vision h2 {
        font-size: 2rem;
    }
}

.featured {
    padding: 80px 8%;
    background: rgba(0, 0, 0, 0.8);
}

.head {
    text-align: center;
    margin-bottom: 50px;
}

.fea {
    font-size: 3rem;
    color: var(--text-color);
    margin-bottom: 15px;
}

.category-subtitle {
    font-size: 1.6rem;
    color: #ccc;
    max-width: 600px;
    margin: 0 auto;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.category-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.category-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    border-color: var(--main-color);
    background: rgba(255, 255, 255, 0.15);
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 165, 0, 0.1), transparent);
    transition: left 0.6s ease;
}

.category-card:hover::before {
    left: 100%;
}

.width {
    width: 120px;
    height: 120px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.4s ease;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.category-card:hover .width {
    background: var(--main-color);
    transform: scale(1.1) rotate(5deg);
    border-color: var(--main-color);
    box-shadow: 0 10px 30px rgba(255, 165, 0, 0.3);
}

.category-card .width img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 12px;
    transition: all 0.4s ease;
    filter: brightness(0.9) contrast(1.1);
}

.category-card:hover .width img {
    transform: scale(1.1);
    filter: brightness(1.1) contrast(1.2);
}

.h {
    font-size: 2.2rem;
    color: var(--text-color);
    margin-bottom: 12px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.category-card:hover .h {
    color: var(--main-color);
    transform: scale(1.05);
}

.p {
    font-size: 1.5rem;
    color: #ccc;
    margin-bottom: 25px;
    font-weight: 400;
    transition: all 0.3s ease;
}

.category-card:hover .p {
    color: #fff;
}

.category-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--main-color);
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 12px 25px;
    border: 2px solid transparent;
    border-radius: 30px;
    background: rgba(255, 165, 0, 0.1);
}

.category-link:hover {
    background: var(--main-color);
    color: #000;
    border-color: var(--main-color);
    transform: translateX(8px);
    box-shadow: 0 5px 15px rgba(255, 165, 0, 0.3);
}

.category-link i {
    transition: transform 0.3s ease;
    font-size: 1.8rem;
}

.category-link:hover i {
    transform: translateX(5px);
}

/* Button Styles */
.btn-1, .btn-2 {
    display: inline-block;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 8px;
    font-size: 1.6rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-1 {
    background: var(--main-color);
    color: #000;
    border-color: var(--main-color);
}

.btn-1:hover {
    background: transparent;
    color: var(--main-color);
    border-color: var(--main-color);
    transform: translateY(-2px);
}

.btn-2 {
    background: transparent;
    color: var(--text-color);
    border-color: var(--text-color);
}

.btn-2:hover {
    background: var(--text-color);
    color: #000;
    transform: translateY(-2px);
}

/* Home Section Button Container */
.btn {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .btn {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-1, .btn-2 {
        width: 100%;
        max-width: 250px;
        text-align: center;
    }
    
    .category-card {
        padding: 20px;
    }
    
    .fea {
        font-size: 2.5rem;
    }
    
    .category-subtitle {
        font-size: 1.4rem;
    }
}

/* Mobile Optimizations */
@media (max-width: 768px) {
    /* Header */
    header {
        padding: 15px 5%;
    }
    
    .logo h1 {
        font-size: 1.8rem;
    }
    
    nav ul {
        gap: 15px;
    }
    
    nav ul li a {
        font-size: 1.3rem;
        padding: 8px 12px;
    }
    
    /* Hero Section */
    .home {
        padding: 60px 5%;
        text-align: center;
    }
    
    .home h1 {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }
    
    .home p {
        font-size: 1.4rem;
        margin-bottom: 25px;
    }
    
    .btn {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn-1, .btn-2 {
        width: 100%;
        max-width: 280px;
        padding: 12px 20px;
        font-size: 1.4rem;
    }
    
    /* Categories */
    .featured {
        padding: 50px 5%;
    }
    
    .fea {
        font-size: 2.2rem;
        margin-bottom: 10px;
    }
    
    .category-subtitle {
        font-size: 1.3rem;
    }
    
    .grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .category-card {
        padding: 20px 15px;
    }
    
    .width {
        width: 70px;
        height: 70px;
        margin-bottom: 15px;
    }
    
    .width img {
        width: 50px;
        height: 50px;
    }
    
    .h {
        font-size: 1.6rem;
        margin-bottom: 8px;
    }
    
    .p {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }
    
    .category-link {
        font-size: 1.2rem;
        padding: 8px 15px;
    }
    
    /* About Preview */
    .about-preview {
        padding: 50px 5%;
    }
    
    .about-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .about-text h2 {
        font-size: 2.2rem;
    }
    
    .about-text p {
        font-size: 1.4rem;
    }
    
    .about-image img {
        width: 100%;
        height: 250px;
    }
    
    /* Footer */
    footer {
        padding: 30px 5%;
    }
    
    .logoHead h1 {
        font-size: 2rem;
    }
    
    .footerFlex {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .footerFlex div h3 {
        font-size: 1.6rem;
    }
    
    .footerFlex div a {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .grid {
        grid-template-columns: 1fr;
    }
    
    .home h1 {
        font-size: 2.2rem;
    }
    
    .fea {
        font-size: 2rem;
    }
    
    .about-text h2 {
        font-size: 2rem;
    }
}

/* WhatsApp Button */
.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    background: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    text-decoration: none;
    animation: whatsapp-pulse 2s infinite;
}

.whatsapp-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
    color: white;
    text-decoration: none;
}

.whatsapp-button i {
    font-size: 28px;
    color: white;
}

@keyframes whatsapp-pulse {
    0% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.8);
    }
    100% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    }
}

/* Footer Copyright */
.copyrightSec {
    padding: 20px 0;
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 30px;
}

.copyrightSec p {
    font-size: 1.4rem;
    color: #ccc;
    margin: 0;
}

@media (max-width: 768px) {
    .copyrightSec {
        padding: 15px 0;
    }
    
    .copyrightSec p {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .dropdown-toggle {
        pointer-events: auto !important;
    }
}

/* Select ve Option Stilleri */
select, select:focus {
    background: #222 !important;
    color: #fff !important;
    border: 1px solid #444 !important;
}

select option {
    background: #222 !important;
    color: #fff !important;
}

select:disabled, select[disabled] {
    color: #888 !important;
    background: #333 !important;
}

/* Mobil Arka Plan Optimizasyonu */
@media (max-width: 768px) {
    .home {
        background-size: cover !important;
        background-position: center !important;
        background-repeat: no-repeat !important;
        min-height: 100vh;
        background-attachment: scroll !important;
    }
    
    .about-hero {
        background-size: cover !important;
        background-position: center !important;
        background-repeat: no-repeat !important;
        background-attachment: scroll !important;
    }
    
    .products-hero {
        background-size: cover !important;
        background-position: center !important;
        background-repeat: no-repeat !important;
        background-attachment: scroll !important;
    }
    
    .contact-hero {
        background-size: cover !important;
        background-position: center !important;
        background-repeat: no-repeat !important;
        background-attachment: scroll !important;
    }
    
    /* Hero section için genel optimizasyon */
    section[style*="background"] {
        background-size: cover !important;
        background-position: center !important;
        background-repeat: no-repeat !important;
        background-attachment: scroll !important;
    }
}

/* Mobil Menü Optimizasyonu */
@media (max-width: 768px) {
    .dropdown-toggle {
        pointer-events: auto !important;
        cursor: pointer !important;
    }
    
    .dropdown-toggle:hover {
        color: var(--main-color) !important;
    }
    
    /* Ürünler linkinin tıklanabilir olmasını garanti altına al */
    .navbar a[href="urunler.html"] {
        pointer-events: auto !important;
        cursor: pointer !important;
    }
    
    /* Dropdown menüyü mobilde gizle */
    .dropdown-menu {
        display: none !important;
    }
    
    /* Dropdown ikonunu mobilde gizle */
    .dropdown-toggle .bx-chevron-down {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .whatsapp-button {
        bottom: 15px;
        right: 15px;
        width: 50px;
        height: 50px;
    }
    
    .whatsapp-button i {
        font-size: 24px;
    }
}

/* Contact Page Styles */
.contact-hero {
    background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.5) 100%), url('../images/contactbg.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-bottom: 0;
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 165, 0, 0.1) 0%, rgba(255, 165, 0, 0.05) 100%);
    pointer-events: none;
}

.contact-hero .hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.contact-hero .hero-content h1 {
    font-size: 4.5rem;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    background: linear-gradient(135deg, #ffffff 0%, var(--main-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease-out;
}

.contact-hero .hero-content p {
    font-size: 2rem;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.95;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease-out 0.3s both;
}

.contact-content {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.8);
}

.contact-content .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info {
    color: var(--text-color);
}

.contact-info h2 {
    font-size: 3.5rem;
    margin-bottom: 25px;
    font-weight: 700;
    color: var(--main-color);
    line-height: 1.2;
}

.contact-info p {
    font-size: 1.6rem;
    line-height: 1.8;
    color: #cccccc;
    margin-bottom: 30px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(15px);
    border-radius: 15px;
    border: 1px solid rgba(255, 165, 0, 0.1);
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 165, 0, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.contact-item i {
    font-size: 2.5rem;
    color: var(--main-color);
    min-width: 40px;
}

.contact-item div h3 {
    font-size: 1.8rem;
    margin-bottom: 5px;
    color: #ffffff;
    font-weight: 600;
}

.contact-item div p {
    font-size: 1.4rem;
    color: #cccccc;
    margin: 0;
}

.contact-form {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 165, 0, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.contact-form h3 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: var(--main-color);
    font-weight: 700;
    text-align: center;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-size: 1.4rem;
    color: #ffffff;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 15px;
    border: 2px solid rgba(255, 165, 0, 0.2);
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.3);
    color: #ffffff;
    font-size: 1.4rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--main-color);
    box-shadow: 0 0 20px rgba(255, 165, 0, 0.3);
    background: rgba(0, 0, 0, 0.5);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #cccccc;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, var(--main-color) 0%, #ff8c00 100%);
    color: #000;
    border: none;
    border-radius: 12px;
    font-size: 1.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 165, 0, 0.3);
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 165, 0, 0.4);
    background: linear-gradient(135deg, #ff8c00 0%, var(--main-color) 100%);
}

/* Responsive Design for About and Contact Pages */
@media (max-width: 768px) {
    .about-hero .hero-content h1,
    .contact-hero .hero-content h1 {
        font-size: 3rem;
    }

    .about-hero .hero-content p,
    .contact-hero .hero-content p {
        font-size: 1.6rem;
    }

    .about-content .container,
    .contact-content .container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 15px;
    }

    .about-text h2,
    .contact-info h2 {
        font-size: 2.8rem;
    }

    .about-text p,
    .contact-info p {
        font-size: 1.4rem;
    }

    .about-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .feature {
        padding: 20px;
    }

    .feature h3 {
        font-size: 1.6rem;
    }

    .feature p {
        font-size: 1.3rem;
    }

    .contact-details {
        gap: 15px;
    }

    .contact-item {
        padding: 15px;
    }

    .contact-item i {
        font-size: 2rem;
    }

    .contact-item div h3 {
        font-size: 1.6rem;
    }

    .contact-item div p {
        font-size: 1.3rem;
    }

    .contact-form {
        padding: 30px 20px;
    }

    .contact-form h3 {
        font-size: 2.2rem;
    }

    .form-group label {
        font-size: 1.3rem;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 12px;
        font-size: 1.3rem;
    }

    .submit-btn {
        padding: 14px;
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .about-hero .hero-content h1,
    .contact-hero .hero-content h1 {
        font-size: 2.5rem;
    }

    .about-hero .hero-content p,
    .contact-hero .hero-content p {
        font-size: 1.4rem;
    }

    .about-content,
    .contact-content {
        padding: 60px 0;
    }

    .about-text h2,
    .contact-info h2 {
        font-size: 2.4rem;
    }

    .about-text p,
    .contact-info p {
        font-size: 1.3rem;
    }

    .feature {
        padding: 18px;
    }

    .feature i {
        font-size: 2.5rem;
    }

    .feature h3 {
        font-size: 1.5rem;
    }

    .feature p {
        font-size: 1.2rem;
    }

    .contact-form {
        padding: 25px 15px;
    }

    .contact-form h3 {
        font-size: 2rem;
    }

    .form-group {
        margin-bottom: 20px;
    }

    .form-group label {
        font-size: 1.2rem;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 10px;
        font-size: 1.2rem;
    }

    .submit-btn {
        padding: 12px;
        font-size: 1.3rem;
    }
}

/* Form Mesaj Animasyonları */
@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

/* Form Loading Durumu */
.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    background: #666;
}

.submit-btn:disabled:hover {
    transform: none;
    box-shadow: none;
}