@import url('https://fonts.googleapis.com/css2?family=Poiret+One&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Karla:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Abril+Fatface&display=swap');


/* Genel Stiller */
:root {
    --primary-color: #2c3e50;
    --secondary-color: #e74c3c;
    --accent-color: #3498db;
    --text-color: #333;
    --light-gray: #f8f9fa;
    --dark-gray: #343a40;
    --t: 2.5s;
    --e1: cubic-bezier(0.8, 0.00, 0.1, 1);
    --e2: cubic-bezier(0.600, 0.040, 0.980, 0.335);
    --er: linear;
    --color: hsl(15,75%,40%);
    --font: 'Abril Fatface', sans-serif;
    --slides: 4;
}

html {
    overflow-x: hidden;
    max-width: 100vw;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    padding-top: 146px; /* Header yüksekliği + boşluk için */
    margin: 0;
    padding: 0;
    width: 100vw;
    max-width: 100vw;
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

/* Mobile için body padding düzenlemesi */
@media (max-width: 768px) {
    body {
        padding-top: 100px; /* Mobile'da daha az padding */
    }
}

@media (max-width: 480px) {
    body {
        padding-top: 80px; /* Küçük ekranlarda daha da az */
    }
}

/* Hero Section */
.hero-section {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    margin-bottom: 2rem;
    margin-top: 2rem;
    padding-top: 120px;
}

.hero-slider {    
    position: relative;
    height: 45vh;
    width: 100%;
    overflow: hidden;
    animation: rotateHue infinite calc(var(--t) * var(--slides) * 2) linear;
    animation-delay: calc(var(--t) / 4);
}

@keyframes rotateHue {
    0%{ filter: hue-rotate(0deg); }
    20%{ filter: hue-rotate(0deg); }
    25%{ filter: hue-rotate(90deg); }
    45%{ filter: hue-rotate(90deg); }
    50%{ filter: hue-rotate(180deg); }
    70%{ filter: hue-rotate(180deg); }
    75%{ filter: hue-rotate(270deg); }
    95%{ filter: hue-rotate(270deg); }
    100%{ filter: hue-rotate(360deg); }
}

.hero-slider__shutters {
    position: absolute;
    height: 150vmax;
    width: 150vmax;
    left: calc(50% - 75vmax);
    top: calc(50% - 75vmax);
    pointer-events: none;
    z-index: 2;
    animation: rotateFrame calc(var(--t) * 4) var(--er) infinite;
}

@keyframes rotateFrame {
    0%{ transform: rotate(0deg);}
    100%{ transform: rotate(180deg);}
}

.hero-slider__shutters:before,
.hero-slider__shutters:after {
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    left: 50%;
    transform: translate3d(-50%, 0, 0);
    background-color: var(--color);
    pointer-events: auto;
}

.hero-slider__shutters:before {
    bottom: 50%;
    animation: openTop calc(var(--t) * 2) infinite;
}

.hero-slider__shutters:after {
    top: 50%;
    animation: openBottom calc(var(--t) * 2) infinite;
}

@keyframes openTop {
    0%{ transform: translate3d(-50%, 0, 0); animation-timing-function: var(--e1); }
    40%{ transform: translate3d(-50%, -65vmax, 0); animation-timing-functon: var(--e2); }
    70%{ transform: translate3d(-50%, -65vmax, 0); animation-timing-functon: var(--e2); }
    100%{ transform: translate3d(-50%, 0, 0); animation-timing-function: var(--e2); }
}

@keyframes openBottom {
    0%{ transform: translate3d(-50%, 0, 0); animation-timing-function: var(--e1); }
    40%{ transform: translate3d(-50%, 65vmax, 0); animation-timing-functon: var(--e2); }
    70%{ transform: translate3d(-50%, 65vmax, 0); animation-timing-functon: var(--e2); }
    100%{ transform: translate3d(-50%, 0, 0); animation-timing-function: var(--e2); }
}

.hero-slider__slides {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background-color: var(--color);
}

.hero-slider__slide {
    position: absolute;
    height: 100%;
    width: 100%;
    opacity: 0;
    animation: showHideSlide infinite calc(var(--t) * var(--slides) * 2) steps(1);
}

.hero-slider__slide:nth-child(1) { animation-delay: 0s; }
.hero-slider__slide:nth-child(2) { animation-delay: calc(var(--t) * 2); }
.hero-slider__slide:nth-child(3) { animation-delay: calc(var(--t) * 4); }
.hero-slider__slide:nth-child(4) { animation-delay: calc(var(--t) * 6); }

@keyframes showHideSlide {
    0%{
        opacity: 1; 
        pointer-events: auto;
        z-index: 1;
    }
    25%{
        opacity: 0;
        pointer-events: none;
        z-index: -1;
    }
    100%{
        opacity: 0;
        pointer-events: none;
        z-index: -1;
    }
}

.hero-slider__slide-bg {
    position: relative;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background-size: cover;
    background-position: center;
    background-color: var(--color);
    background-blend-mode: hard-light;
    opacity: 1;
    z-index: -1;
    animation: bgInOut calc(var(--t) * 4) calc(var(--t) * -2) infinite;
}

@keyframes bgInOut {
    0%{ transform: rotate(-45deg) scale(1.1); animation-timing-function: cubic-bezier(0.165, 0.840, 0.440, 1.000);}
    33%{ transform: rotate(0deg);}
    50%{ transform: rotate(0deg); }
    66%{ transform: rotate(0deg); animation-timing-function: cubic-bezier(0.895, 0.030, 0.685, 0.220); }
    100%{ transform: rotate(45deg) scale(0.9);}
}

.hero-slider__slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate3d(-50%,-50%,0);
    color: white;
    font-family: var(--font);
    line-height: 1.2;
    letter-spacing: -0.025em;
    z-index: 2;
    opacity: 1;
    text-shadow: 0 0 0.5em rgba(255, 0, 0, 0.25);
    mix-blend-mode: lighten;
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero-slider__slide-content span {
    display: block;
    font-size: 15vmin;
    text-align: center;
    line-height: 1;
}

/* Mobile slideshow optimizasyonu */
@media (max-width: 768px) {
    .hero-slider__slide-content span {
        font-size: 12vmin; /* Mobile'da daha küçük font */
    }
    
    .button {
        font-size: 3vmin; /* Button text boyutu artırıldı */
        padding: 3vmin 3vmin 2.5vmin 3vmin; /* Touch-friendly padding */
        min-width: 120px; /* Minimum genişlik */
    }
}

@media (max-width: 480px) {
    .hero-slider__slide-content span {
        font-size: 10vmin; /* Küçük ekranlarda daha da küçük */
    }
    
    .button {
        font-size: 3.5vmin;
        padding: 4vmin 4vmin 3.5vmin 4vmin;
        min-width: 140px;
    }
}

.button {
    font-family: 'Roboto Mono', sans-serif;
    text-decoration: none;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 2vmin;
    display: inline-block;
    position: relative;
    border: 3px solid white;
    box-shadow: -0.5vmin 0.5vmin 0 rgba(255, 255, 255, 0.5);
    background: transparent;
    margin-top: 3vmin;
    mix-blend-mode: lighten;
    color: white;
    padding: 2vmin 2vmin 1.8vmin 2vmin;
    letter-spacing: 0.1em;
    text-shadow: none;
    line-height: 1;
    transform: translate3d(0.5vmin, -0.5vmin, 0);
    transition: all 100ms linear;
    text-align: center;
}

.button:hover { 
    transform: translate3d(1vmin, -1vmin, 0);
    box-shadow: -1vmin 1vmin 0 rgba(255, 255, 255, 0.5);
    background: transparent;
    color: white;
}

.button:active { 
    transform: translate3d(0px, 0px, 0);
    box-shadow: -0px 0px 0 rgba(255, 255, 255, 0.5);
}

/* Ürün Kartları */
.product-card {
    transition: all 0.3s ease;
    border-radius: 16px;
    overflow: hidden;
    max-width: 300px; /* Kartın maksimum genişliği */
    margin: 0 auto;
}

/* Genel product-card flexbox düzeni */
.featured-products .product-card,
.featured-products-slider .product-card {
    display: flex !important;
    flex-direction: column !important;
}

.featured-products .card-img-top,
.featured-products-slider .card-img-top {
    flex: 0 0 auto !important;
    object-fit: cover !important;
    width: 100% !important;
}

.featured-products .card-body,
.featured-products-slider .card-body {
    flex: 1 1 auto !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    text-align: center !important;
}

/* Bootstrap h-100 override - Desktop */
.featured-products .card.product-card.h-100,
.featured-products .card.product-card,
.featured-products div.card.product-card {
    min-height: 520px !important;
    height: 520px !important;
    max-width: 380px !important;
    display: flex !important;
    flex-direction: column !important;
}

/* Mobile specific card layout forcing */
@media screen and (max-width: 768px) {
    .featured-products .product-card,
    .featured-products .card,
    .featured-products div[class*="card"] {
        display: flex !important;
        flex-direction: column !important;
        height: 480px !important;
        min-height: 480px !important;
        max-height: 480px !important;
    }
    
    .featured-products .card-img-top,
    .featured-products img[class*="card-img"] {
        height: 310px !important;
        min-height: 310px !important;
        max-height: 310px !important;
        object-fit: cover !important;
        flex: 0 0 auto !important;
    }
    
    .featured-products .card-body {
        height: 170px !important;
        min-height: 170px !important;
        max-height: 170px !important;
        flex: 1 1 auto !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: flex-start !important;
        align-items: center !important;
        text-align: center !important;
    }
}

@media screen and (max-width: 480px) {
    .featured-products .product-card,
    .featured-products .card,
    .featured-products div[class*="card"] {
        height: 450px !important;
        min-height: 450px !important;
        max-height: 450px !important;
    }
    
    .featured-products .card-img-top,
    .featured-products img[class*="card-img"] {
        height: 290px !important;
        min-height: 290px !important;
        max-height: 290px !important;
    }
    
    .featured-products .card-body {
        height: 160px !important;
        min-height: 160px !important;
        max-height: 160px !important;
    }
}

/* Bootstrap h-100 override - Mobile */
@media (max-width: 768px) {
    .featured-products .card.product-card.h-100,
    .featured-products .card.product-card,
    .featured-products div.card.product-card {
        min-height: 480px !important;
        height: 480px !important;
        max-width: 380px !important;
        display: flex !important;
        flex-direction: column !important;
    }
    
    .featured-products .product-card .card-img-top,
    .featured-products .card-img-top {
        height: 310px !important;
        min-height: 310px !important;
        max-height: 310px !important;
        flex: 0 0 auto !important;
    }
    
    .featured-products .product-card .card-body,
    .featured-products .card-body {
        height: 170px !important;
        min-height: 170px !important;
        max-height: 170px !important;
        flex: 1 1 auto !important;
    }
}

@media (max-width: 480px) {
    .featured-products .card.product-card.h-100,
    .featured-products .card.product-card,
    .featured-products div.card.product-card {
        min-height: 450px !important;
        height: 450px !important;
        max-width: 350px !important;
        display: flex !important;
        flex-direction: column !important;
    }
    
    .featured-products .product-card .card-img-top,
    .featured-products .card-img-top {
        height: 290px !important;
        min-height: 290px !important;
        max-height: 290px !important;
        flex: 0 0 auto !important;
    }
    
    .featured-products .product-card .card-body,
    .featured-products .card-body {
        height: 160px !important;
        min-height: 160px !important;
        max-height: 160px !important;
        flex: 1 1 auto !important;
    }
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.product-image-wrapper {
    position: relative;
    width: 100%;
    padding-top: 75%; /* 4:3 oranı için */
    overflow: hidden;
}

.product-image-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-main-image {
    z-index: 1;
}

.product-model-image {
    z-index: 2;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-image-wrapper:hover .product-model-image {
    opacity: 1;
}

.product-card .card-body {
    padding: 1rem;
    background: white;
}

.product-card .card-title {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
    line-height: 1.3;
}

.product-card .price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0;
}

/* Özellikler Bölümü */
.features {
    background-color: var(--light-gray);
}

.features i {
    color: var(--accent-color);
}

/* Navbar */
.navbar {
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.navbar .navbar-brand {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    background: transparent;
    padding: 0;
    margin: 0;
}

.navbar .navbar-nav.me-auto {
    margin-right: auto !important;
}

.navbar .navbar-nav:last-child {
    margin-left: auto !important;
}

.navbar-brand img {
    max-height: 48px; 
    filter: none;
    box-shadow: none;
    border: none;
    background: transparent;
    mix-blend-mode: normal;
}

/* Mobile Navbar Optimizasyonu */
@media (max-width: 992px) {
    .navbar .navbar-brand {
        position: relative;
        left: auto;
        transform: none;
        margin: 0 auto;
    }
    
    .navbar-brand img {
        max-height: 40px; /* Mobile'da biraz daha küçük logo */
    }
    
    .navbar-nav .nav-link {
        padding: 0.75rem 1rem; /* Touch-friendly padding */
        text-align: center;
    }
    
    .navbar-toggler {
        border: none;
        padding: 0.5rem;
    }
    
    .navbar-toggler:focus {
        box-shadow: none;
    }
}

@media (max-width: 768px) {
    .navbar-brand img {
        max-height: 36px; /* Daha küçük ekranlarda daha küçük logo */
    }
    
    .navbar-nav .nav-link {
        font-size: 1.1rem; /* Mobile'da daha büyük text */
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .navbar-brand img {
        max-height: 32px;
    }
    
    .navbar-nav .nav-link {
        font-size: 1.2rem;
        padding: 1.2rem 1rem;
    }
}

/* Footer */
footer {
    background-color: var(--dark-gray);
    margin-top: auto;
}

/* Size guides sayfası için footer margin override */
body:has(.size-guides-container) footer,
.size-guides-container ~ footer {
    margin-top: 0 !important;
}

/* Size guides sayfası için body flexbox düzenini devre dışı bırak */
body:has(.size-guides-container) {
    display: block !important;
    min-height: auto !important;
}

/* Size guides sayfası için main flexbox özelliğini kaldır */
body:has(.size-guides-container) main {
    flex: none !important;
}

/* JavaScript ile eklenen class için alternatif çözüm */
body.size-guides-page {
    display: block !important;
    min-height: auto !important;
}

body.size-guides-page footer {
    margin-top: 0 !important;
}

body.size-guides-page main {
    flex: none !important;
}

footer a {
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-links a {
    font-size: 1.5rem;
    margin-right: 1rem;
}

/* Animasyonlar */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeIn 0.5s ease forwards;
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .hero-section {
        height: auto;
        margin-top: 0;
        padding-top: 0;
    }
    
    .hero-section .carousel-item {
        height: 400px;
    }
    
    .category-card img {
        height: 200px;
    }
    
    .product-card {
        max-width: 250px;
    }
    
    .product-image-wrapper {
        padding-top: 100%; /* Mobilde 1:1 oranı */
    }
}

/* Form Stilleri */
.form-control:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 0.2rem rgba(52, 152, 219, 0.25);
}

.btn-primary {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
}

.btn-primary:hover {
    background-color: #2980b9;
    border-color: #2980b9;
}

/* Sepet Stilleri */
.cart-item {
    border-bottom: 1px solid #eee;
    padding: 1rem 0;
}

.cart-item img {
    max-width: 100px;
    height: auto;
}

/* Ürün Detay Sayfası */
.product-gallery {
    margin-bottom: 2rem;
}

.product-gallery img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.product-info {
    padding: 2rem;
}

.product-price {
    font-size: 2rem;
    color: var(--secondary-color);
    margin: 1rem 0;
}

/* Loading Spinner */
.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid var(--accent-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.header-top {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 48px);
    max-width: 1400px;
    background: #f8f9fa;
    color: var(--primary-color);
    border-radius: 0 0 15px 15px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    z-index: 1060;
    min-height: 38px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 1rem;
    font-weight: 500;
    opacity: 1;
    transition: opacity 0.4s, top 0.4s;
    padding-left: 16px;
    padding-right: 16px;
}

.header-top.hide {
    opacity: 0;
    top: -50px;
    pointer-events: none;
}

.header-glass {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    margin-top: 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    min-height: 90px;
    position: fixed;
    top: 56px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1050;
    width: calc(100% - 48px);
    max-width: 1400px;
    padding: 10px 20px;
    margin-bottom: 0;
    transition: top 0.4s;
    border: none;
}

.header-glass.header-up {
    top: 18px;
}

/* Slideshow özel stilleri */
.main-content {
  width: 100vw;
  max-width: 100vw;
  margin: 0;
  padding: 0;
  position: relative;
  left: 0;
}
.slideshow {
  width: 100vw;
  min-width: 100vw;
  left: 0;
  right: auto;
  margin: -40px 0 0 -16.3vw;
  padding: 0;
  position: relative;
  overflow: hidden;
  height: 100vh;
  z-index: 1;
}
.slideshow .slideshow-inner,
.slideshow .slides {
  width: 100vw;
  left: 0;
  right: 0;
}
.slideshow .slideshow-inner { 
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.slideshow .slides { 
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.slideshow .slide { 
  display: none;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.slideshow .slide.is-active {
  display: block;
}
.slideshow .slide.is-loaded{
  opacity: 1;
}
.slideshow .slide-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  color: #fff;
  text-align: right;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  flex-direction: column;
  padding: 0 120px 120px 0;
}
.slideshow .slide:first-child .slide-content {
  text-align: left;
  padding: 0 0 120px 240px;
  align-items: flex-start;
}
.slideshow .slide:first-child .title {
  text-align: left;
  margin-left: 0;
}
.slideshow .slide .title { 
  margin: 0;
  max-width: 1000px;
  text-align: right;
}
.slideshow .slide .text {
  margin: 0 auto;
  max-width: 1000px;
  font-size: 18px;
  line-height: 1.4;
}
.slideshow .slide .btn {
  margin: 15px 0 0;
  border-color: #fff;
}
.slideshow .slide .btn::before {
  background:#fff
}
.slideshow .pagination { 
  position: absolute;
  bottom: 35px;
  left: 50%;
  width: max-content;
  min-width: unset;
  height: 12px;
  cursor: default;
  z-index: 2;
  text-align: center;
  transform: translateX(-50%);
}
.slideshow .pagination .item { 
  display: inline-block;
  padding: 15px 5px;
  position: relative;
  width: 46px;
  height: 32px;
  cursor: pointer;
  text-indent: -999em;
  z-index: 1;
}
.slideshow .pagination .item + .page {
  margin-left: -2px;
}
.slideshow .pagination .item::before {
  content: "";
  display: block;
  position: absolute;
  top: 15px;
  left: 5px;
  width: 36px;
  height: 2px;
  background: rgba(255, 255, 255, 0.5);
  transition: background 0.2s ease;
}
.slideshow .pagination .item::after {
  width: 0;
  background: #fff;
  z-index: 2;
  transition: width 0.2s ease;
}
.slideshow .pagination .item:hover::before,
.slideshow .pagination .item.is-active::before {
  background-color: #fff;
}
.slideshow .arrows {
  display: none !important;
}
.slideshow .arrows .arrow {
  margin: -33px 0 0;
  padding: 20px;
  position: absolute;
  top: 50%;
  cursor: pointer;
  z-index: 3;
}
.slideshow .arrows .prev {
  left: 30px;
}
.slideshow .arrows .prev:hover .svg {
  left: -10px;
}
.slideshow .arrows .next {
  right: 30px;
}
.slideshow .arrows .next:hover .svg {
  left: 10px;
}
.slideshow .arrows .svg {
  position: relative;
  left: 0;
  width: 14px;
  height: 26px;
  fill: #fff;
  transition: left 0.2s ease;
}

.btn {
  display: inline-block;
  padding: 13px 20px;
  color: #fff;
  text-decoration: none;
  position: relative;
  background: transparent; 
  border: 1px solid #e1e1e1;
  font: 12px/1.2 "Oswald", sans-serif;
  letter-spacing: 0.4em;
  text-align: center;
  text-indent: 2px;
  text-transform: uppercase;
  transition: color 0.1s linear 0.05s;
}
.btn::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background: #e1e1e1;
  z-index: 1;
  opacity: 0;
  transition: height 0.2s ease, top 0.2s ease, opacity 0s linear 0.2s;
}
.btn::after {
  transition:border 0.1s linear 0.05s;
}
.btn .btn-inner {
  position: relative;
  z-index: 2;
}
.btn:hover {
  color: #373737;
  transition: color 0.1s linear 0s;
}
.btn:hover::before {
  top: 0;
  height: 100%;
  opacity: 1;
  transition: height 0.2s ease, top 0.2s ease, opacity 0s linear 0s;
}
.btn:hover::after {
  border-color: #373737;
  transition:border 0.1s linear 0s;
}

.header-top.low-opacity {
  opacity: 0.6;
  transition: opacity 0.4s;
}
.header-glass.low-opacity {
  opacity: 0.8;
  transition: opacity 0.4s;
}

.italianno-regular {
  font-family: "Italianno", cursive;
  font-weight: 400;
  font-style: normal;
  text-transform: none !important;
  font-size: 64px;
  letter-spacing: normal;
  line-height: 1.05;
}

.navbar-nav {
  display: flex;
  align-items: center;
}

.navbar-nav .nav-link {
  font-family: "Poiret One", sans-serif !important;
  font-optical-sizing: auto;
  font-weight: 700 !important;
  font-style: normal;
  font-size: 1.2rem;
  letter-spacing: 0.02em;
  text-transform: none;
  margin: 0 8px;
  padding: 4px 0;
  display: flex;
  align-items: center;
  height: 100%;
}

.navbar-nav .nav-link.shop-link {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 1.08rem;
  background: rgb(147, 157, 118);
  color: #fff !important;
  border-radius: 999px;
  padding: 10px 32px;
  display: inline-block;
  border: none;
  transition: background 0.2s, color 0.2s;
  box-shadow: none;
}

.navbar-nav .nav-link.shop-link:hover, .navbar-nav .nav-link.shop-link:focus {
  background: #8b9467;
  color: #fff !important;
  text-decoration: none;
}

/* Dropdown Menü Stilleri */
.dropdown-menu {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(6px);
    border: none;
    border-radius: 8px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    padding: 12px 0;
    margin-top: 10px;
}

.dropdown-item {
    font-family: "Poiret One", sans-serif !important;
    font-size: 1.2rem;
    color: var(--primary-color);
    padding: 10px 24px;
    transition: all 0.2s ease;
    font-weight: 900 !important;
    letter-spacing: 0.05em;
}

.dropdown-item:hover {
    background-color: rgba(147, 157, 118, 0.1);
    color: rgb(147, 157, 118);
}

.dropdown-menu.show {
    animation: fadeIn 0.3s ease;
}

.slideshow .slide:nth-child(2) .slide-content {
  text-align: center;
  padding: 0;
  align-items: flex-end;
  justify-content: flex-end;
  flex-direction: row;
  width: 100%;
}

.slideshow .slide:nth-child(2) .caption {
  width: 50%;
  padding: 0 60px 120px 60px;
}

.slideshow .slide:nth-child(2) .caption:first-child {
  text-align: right;
  color: #000;
  padding: 0 90px 120px 120px;  
}

.slideshow .slide:nth-child(2) .caption:last-child {
  text-align: left;
  padding: 0 30px 120px 190px;
}

.slideshow .slide:nth-child(2) .caption:first-child .title,
.slideshow .slide:nth-child(2) .caption:first-child .text,
.slideshow .slide:nth-child(2) .caption:first-child .btn {
  color: #000;
}

.slideshow .slide:nth-child(2) .caption:first-child .btn {
  border-color: #000;
}

.slideshow .slide:nth-child(2) .caption:first-child .btn:hover {
  color: #fff;
  background: #000;
}

.slideshow .slide:nth-child(2) .title {
  text-align: inherit;
  margin-bottom: 15px;
}

.slideshow .slide:nth-child(2) .text {
  margin: 0;
}

.video-control-btn {
  position: absolute;
  left: 40px;
  bottom: 40px;
  z-index: 10;
  width: 56px;
  height: 56px;
  background: rgba(0,0,0,0.7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 1;
  pointer-events: auto;
  transition: opacity 1s;
}

/* Mobilde video control butonunu sola kaydır */
@media (max-width: 768px) {
  .video-control-btn {
    left: 20px;
  }
}
.video-control-btn.inactive {
  opacity: 0;
  pointer-events: none;
}
.video-control-btn svg {
  width: 32px;
  height: 32px;
  fill: #fff;
}

.poiret-one-regular {
  font-family: "Poiret One", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.footer-custom {
  background: rgb(86,86,85) !important;
  color: #fff;
  font-family: 'Karla', Arial, Helvetica, sans-serif !important;
}
.footer-custom .footer-logo {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.footer-custom .footer-desc {
  font-size: 1.1rem;
  font-weight: 400;
  text-align: left;
}
.footer-custom .footer-social {
  margin-top: 1;
  margin-bottom: 1.5rem;
}
.footer-custom .footer-social a {
  color: #fff;
  margin-right: 12px;
  transition: color 0.2s;
}
.footer-custom .footer-social a:last-child {
  margin-right: 0;
}
.footer-custom .footer-social a:hover {
  color: #e0c36e;
}
.footer-custom .newsletter-form .form-control {
  border-radius: 30px 0 0 30px;
  border: none;
  background: #fff;
  color: #333;
}
.footer-custom .newsletter-form .btn {
  border-radius: 0 30px 30px 0;
  background: #e0c36e;
  color: #333;
  border: none;
  font-weight: bold;
}
.footer-custom .newsletter-form .btn:hover {
  background: #fff;
  color: #e0c36e;
}
.footer-custom h5 {

  letter-spacing: 0.04em;
  margin-bottom: 1.2rem;
}
.footer-custom ul {
  padding-left: 0;
  list-style: none;
}
.footer-custom .footer-payments i {
  color: #fff;
  opacity: 0.8;
  transition: opacity 0.2s;
}
.footer-custom .footer-payments i:hover {
  opacity: 1;
}
.footer-custom .footer-col {
  min-width: 150px;
  max-width: 220px;
}
@media (max-width: 992px) {
  .footer-custom .d-flex.flex-row {
    flex-direction: column !important;
    align-items: center !important;
    gap: 1.5rem !important;
  }
  .footer-custom .footer-col {
    min-width: unset;
    max-width: unset;
    width: 100%;
    text-align: center !important;
  }
}

/* Typewriter animasyonu */
.header-typewriter .wrapper {
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header-typewriter .typing-demo {
  width: 30ch;
  animation: typing 2s steps(30), blink .5s step-end infinite alternate;
  white-space: nowrap;
  overflow: hidden;
  border-right: 3px solid #bbb;
  font-family: monospace;
  font-size: 1.2em;
  min-height: 1.5em;
  transition: border-right-color 0.2s;
}
.header-typewriter .typing-demo.nocursor {
  border-right: 3px solid transparent;
}
@keyframes typing {
  from { width: 0 }
}
@keyframes blink {
  50% { border-color: transparent }
}

/* Arama kutusu stillerini kaldır */
.header-search,
.search,
.search__wrapper,
.search__field,
.search__icon {
  display: none;
}

.header-top .header-social {
  min-width: 110px;
  max-width: 140px;
  flex: 0 0 120px;
  justify-content: flex-start;
}
.header-top .header-typewriter {
  flex: 1 1 0;
  min-width: 0;
  justify-content: center !important;
  display: flex;
  margin-left: 175px;
  padding-right: 20px;
}

/* Modern Arama Kutusu Stilleri */
.modern-search {
  position: relative;
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  padding: 5px;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.modern-search:hover {
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.modern-search__input {
  width: 0;
  background: transparent;
  border: none;
  outline: none;
  padding: 0;
  color: #333;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  opacity: 0;
}

.modern-search:hover .modern-search__input {
  width: 200px;
  padding: 0 10px;
  opacity: 1;
}

.modern-search__input::placeholder {
  color: #666;
}

.modern-search__button {
  width: 35px;
  height: 35px;
  border: none;
  background: rgb(147, 157, 118);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.modern-search__button i {
  color: #fff;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.modern-search:hover .modern-search__button {
  background: rgb(147, 157, 118);
  transform: scale(1.05);
}

.modern-search__button:hover {
  background: rgb(147, 157, 118);
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .modern-search:hover .modern-search__input {
    width: 150px;
  }
}

/* Footer Logo Card Styles */
/* SLAYT BUTONLARI AYRI STİLLER */
.btn-left-slide {
  border: 2px solid #222 !important;
  color: #222 !important;
  background: transparent !important;
  position: relative;
}
.btn-left-slide:hover {
  background: #222 !important;
  color: #fff !important;
  border-color: #222 !important;
}
.btn-left-slide::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background: #222 !important;
  z-index: 1;
  opacity: 0;
  transition: height 0.2s ease, top 0.2s ease, opacity 0s linear 0.2s;
}
.btn-left-slide:hover::before {
  top: 0;
  height: 100%;
  opacity: 1;
  background: #222 !important;
}

.btn-right-slide {
  border: 2px solid #fff !important;
  color: #fff !important;
  background: rgba(0,0,0,0.2) !important;
  position: relative;
}
.btn-right-slide:hover {
  background: #fff !important;
  color: #222 !important;
  border-color: #fff !important;
}

.product-label, .featured-products .product-label {
    background-color: #0d6efd !important;
    border: 2px solid #0d6efd !important;
    color: #fff !important;
    opacity: 1 !important;
    display: inline-block;
    min-width: 80px;
    text-align: center;
    z-index: 10;
}

/* Yeni Newsletter Form Stilleri */
.input-wrapper {
  width: fit-content;
  height: 45px;
  border-radius: 20px;
  padding: 5px;
  box-sizing: content-box;
  display: flex;
  align-items: center;
  background-color: #292524;
}

.icon {
  width: 30px;
  fill: rgb(255, 255, 255);
  margin-left: 8px;
  transition: all 0.3s;
}

.input {
  max-width: 170px;
  height: 100%;
  border: none;
  outline: none;
  padding-left: 15px;
  background-color: #292524;
  color: white;
  font-size: 1em;
}

.input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px #292524 inset;
  -webkit-text-fill-color: #ffffff;
}

.Subscribe-btn {
  height: 100%;
  width: 95px;
  border: none;
  border-radius: 15px;
  color: rgb(0, 0, 0);
  cursor: pointer;
  background-color: #ffffff;
  font-weight: 500;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all 0.3s;
}

.arrow {
  position: absolute;
  margin-right: 150px;
  transition: all 0.3s;
}

.input-wrapper:active .icon {
  transform: scale(1.3);
}

.Subscribe-btn:hover {
  color: white;
}

.Subscribe-btn:hover .arrow {
  margin-right: 0;
  animation: jello-vertical 0.9s both;
  transform-origin: right;
}

@keyframes jello-vertical {
  0% {
    transform: scale3d(1, 1, 1);
  }
  30% {
    transform: scale3d(0.75, 1.25, 1);
  }
  40% {
    transform: scale3d(1.25, 0.75, 1);
  }
  50% {
    transform: scale3d(0.85, 1.15, 1);
  }
  65% {
    transform: scale3d(1.05, 0.95, 1);
  }
  75% {
    transform: scale3d(0.95, 1.05, 1);
  }
  100% {
    transform: scale3d(1, 1, 1);
  }
}

.Subscribe-btn:active {
  transform: scale(0.9);
}

/* Hata durumu stilleri */
.Subscribe-btn.error {
  background-color: #ff4444;
  color: white;
  animation: shake 0.5s cubic-bezier(.36,.07,.19,.97) both;
}

.Subscribe-btn.error .arrow {
  margin-right: 150px;
  animation: none;
}

@keyframes shake {
  10%, 90% {
    transform: translate3d(-1px, 0, 0);
  }
  20%, 80% {
    transform: translate3d(2px, 0, 0);
  }
  30%, 50%, 70% {
    transform: translate3d(-4px, 0, 0);
  }
  40%, 60% {
    transform: translate3d(4px, 0, 0);
  }
}

.input.error {
  border: 1px solid #ff4444;
}


/* Login ve Kayıt Form Input Stilleri */
.inputbox {
  position: relative;
  width: 100%;
  margin-bottom: 1.5rem;
}

.inputbox input {
  position: relative;
  width: 100%;
  padding: 20px 10px 10px;
  background: transparent;
  outline: none;
  box-shadow: none;
  border: none;
  color: #23242a;
  font-size: 1em;
  letter-spacing: 0.05em;
  transition: 0.5s;
  z-index: 10;
}

.inputbox span {
  position: absolute;
  left: 0;
  padding: 20px 10px 10px;
  font-size: 1em;
  color: #8f8f8f;
  letter-spacing: 0.05em;
  transition: 0.5s;
  pointer-events: none;
}

.inputbox input:valid ~ span,
.inputbox input:focus ~ span {
  color: rgb(147, 157, 118);
  transform: translateX(-10px) translateY(-34px);
  font-size: 0.75em;
}

.inputbox i {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: rgb(147, 157, 118);
  border-radius: 4px;
  transition: 0.5s;
  pointer-events: none;
  z-index: 9;
}

.inputbox input:valid ~ i,
.inputbox input:focus ~ i {
  height: 44px;
  background: rgb(147, 157, 118);
}

/* Form container stilleri */
.form-container {
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}

/* Telefon input stilleri */
.inputbox .input-group {
  position: relative;
  z-index: 10;
}

.inputbox .input-group .form-select {
  color: #23242a;
  font-size: 1em;
  letter-spacing: 0.05em;
  cursor: pointer;
}

.inputbox .input-group .form-select:focus {
  box-shadow: none;
}

.inputbox .input-group .input-group-text {
  color: #8f8f8f;
  font-size: 1.2em;
}

.inputbox .input-group .form-select option {
  background: #fff;
  color: #23242a;
}

/* Telefon input container */
.inputbox .d-flex {
  position: relative;
  width: 100%;
}

.inputbox .d-flex .inputbox {
  margin-bottom: 0;
}

.inputbox .d-flex .inputbox input {
  padding-left: 0;
}

.inputbox .d-flex .inputbox span {
  left: 0;
}

.inputbox .d-flex .inputbox i {
  left: 0;
}

.featured-products {
    margin-top: 100px !important;
    padding-top: 0 !important;
    position: relative;
    z-index: 1;
}

.featured-products .container {
    padding-top: 0;
    max-width: 1140px;
}

.featured-products .col-md-4 {
    padding-left: 15px;
    padding-right: 15px;
}

.featured-products .product-card {
    min-height: 520px !important;
    height: 520px !important;
    position: relative;
    overflow: hidden;
    max-width: 380px;
    margin: 0 auto;
    display: flex !important;
    flex-direction: column !important;
}

.featured-products .product-card .card-img-top {
    height: 65% !important;
    max-height: 340px !important;
    object-fit: cover !important;
    width: 100% !important;
    flex: 0 0 auto !important;
}

.featured-products .product-card .card-body {
    height: auto !important;
    min-height: 140px !important;
    max-height: 180px !important;
    padding: 16px 12px 12px 12px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    align-items: center !important;
    text-align: center !important;
    flex: 1 1 auto !important;
}

.featured-products .card-title {
    font-size: 1.05rem !important;
    font-weight: 600 !important;
    margin-bottom: 8px !important;
    line-height: 1.3 !important;
    color: #333 !important;
    width: 100% !important;
    max-height: 42px !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    word-wrap: break-word !important;
}

.featured-products .card-text {
    font-size: 0.85rem !important;
    margin-bottom: 8px !important;
    color: #666 !important;
    line-height: 1.2 !important;
    width: 100% !important;
    max-height: 20px !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
}

.featured-products .price {
    font-size: 1.15rem !important;
    font-weight: 700 !important;
    color: #c1a362 !important;
    margin-bottom: 10px !important;
}

.featured-products .btn-shine {
    font-size: 0.9rem !important;
    padding: 10px 24px !important;
    margin-top: auto !important;
    align-self: center !important;
    width: auto !important;
    min-height: 38px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.featured-products h2 {
    margin-top: 0;
    padding-top: 0;
    font-family: 'Poiret One', sans-serif;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 40px;
}

/* Kategoriler başlığına üstten boşluk ekle */
.categories h2 {
    margin-top: 60px;
    margin-bottom: 32px;
}

/* Slideshow video tam ekran kaplasın */
.image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    z-index: 1;
}

.image-container video {
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

/* Kategori Kartları */
.categories {
    padding: 60px 0;
    background: #fff;
}

.categories h2 {
    margin-bottom: 40px;
    font-family: 'Poiret One', sans-serif;
    font-size: 2.5rem;
    color: var(--primary-color);
}

.category-card {
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 340px !important;
    background: rgb(255, 255, 255);
    border-radius: 1rem;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px,
        rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
    transition: all ease-in-out 0.3s;
    overflow: hidden;
    position: relative;
}

.category-card:hover {
    background-color: #fdfdfd;
    box-shadow: rgba(0, 0, 0, 0.09) 0px 2px 1px, rgba(0, 0, 0, 0.09) 0px 4px 2px,
        rgba(0, 0, 0, 0.09) 0px 8px 4px, rgba(0, 0, 0, 0.09) 0px 16px 8px,
        rgba(0, 0, 0, 0.09) 0px 32px 16px;
    transform: translateY(-5px);
}

.category-card .card-img-top,
.category-card .card-img,
.category-card img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    transition: transform 0.3s ease;
    border-radius: 1rem !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    z-index: 1 !important;
}

.category-card:hover .card-img-top,
.category-card:hover .card-img,
.category-card:hover img {
    transform: scale(1.05);
}

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 20px;
}

.category-card:hover .category-overlay {
    opacity: 1;
}

.category-overlay h3 {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
    margin: 0 0 20px 0;
    padding: 0 20px;
}

/* Kategori Slider */
.categories-slider {
    padding: 20px 0;
}

.categories-slider .swiper-slide {
    width: 300px;
    height: 340px !important;
}

.categories-slider .swiper-button-next,
.categories-slider .swiper-button-prev {
    color: var(--primary-color);
    background: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.categories-slider .swiper-button-next:after,
.categories-slider .swiper-button-prev:after {
    font-size: 20px;
}

@media (max-width: 768px) {
    .categories {
        padding: 40px 0;
    }
    
    .categories h2 {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    
    .category-card {
        height: 280px !important;
    }
    
    .categories-slider .swiper-slide {
        height: 280px !important;
    }
    
    .category-overlay h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .featured-products h2 {
        font-size: 2rem;
        margin-bottom: 30px;
    }
}

/* Kategori Buton Stilleri */
.type--C {
    --line_color: #ffffff;
    --back_color: rgba(0, 0, 0, 0.5);
}

.category-button {
    margin-top: 20px;
    position: relative;
    z-index: 0;
    width: 140px;
    height: 40px;
    text-decoration: none;
    font-size: 13px;
    font-weight: bold;
    color: var(--line_color);
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.category-button__text {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.category-button::before,
.category-button::after,
.category-button__text::before,
.category-button__text::after {
    content: "";
    position: absolute;
    height: 2px;
    border-radius: 2px;
    background: var(--line_color);
    transition: all 0.5s ease;
}

.category-button::before {
    top: 0;
    left: 36px;
    width: calc(100% - 38px * 2 - 12px);
}

.category-button::after {
    top: 0;
    right: 36px;
    width: 6px;
}

.category-button__text::before {
    bottom: 0;
    right: 36px;
    width: calc(100% - 38px * 2 - 12px);
}

.category-button__text::after {
    bottom: 0;
    left: 36px;
    width: 6px;
}

.category-button__line {
    position: absolute;
    top: 0;
    width: 38px;
    height: 100%;
    overflow: hidden;
}

.category-button__line::before {
    content: "";
    position: absolute;
    top: 0;
    width: 150%;
    height: 100%;
    box-sizing: border-box;
    border-radius: 300px;
    border: solid 2px var(--line_color);
}

.category-button__line:nth-child(1),
.category-button__line:nth-child(1)::before {
    left: 0;
}

.category-button__line:nth-child(2),
.category-button__line:nth-child(2)::before {
    right: 0;
}

.category-button:hover {
    letter-spacing: 3px;
}

.category-button:hover::before,
.category-button:hover .category-button__text::before {
    width: 6px;
}

.category-button:hover::after,
.category-button:hover .category-button__text::after {
    width: calc(100% - 38px * 2 - 12px);
}

.category-button__drow1,
.category-button__drow2 {
    position: absolute;
    z-index: -1;
    border-radius: 12px;
    transform-origin: 12px 12px;
}

.category-button__drow1 {
    top: -10px;
    left: 28px;
    width: 20px;
    height: 0;
    transform: rotate(30deg);
}

.category-button__drow2 {
    top: 28px;
    left: 52px;
    width: 20px;
    height: 0;
    transform: rotate(-127deg);
}

.category-button__drow1::before,
.category-button__drow1::after,
.category-button__drow2::before,
.category-button__drow2::after {
    content: "";
    position: absolute;
}

.category-button__drow1::before {
    bottom: 0;
    left: 0;
    width: 0;
    height: 20px;
    border-radius: 10px;
    transform-origin: 10px 10px;
    transform: rotate(-60deg);
}

.category-button__drow1::after {
    top: -6px;
    left: 32px;
    width: 0;
    height: 20px;
    border-radius: 10px;
    transform-origin: 10px 10px;
    transform: rotate(69deg);
}

.category-button__drow2::before {
    bottom: 0;
    left: 0;
    width: 0;
    height: 20px;
    border-radius: 10px;
    transform-origin: 10px 10px;
    transform: rotate(-146deg);
}

.category-button__drow2::after {
    bottom: 16px;
    left: -28px;
    width: 0;
    height: 20px;
    border-radius: 10px;
    transform-origin: 10px 10px;
    transform: rotate(-262deg);
}

.category-button__drow1,
.category-button__drow1::before,
.category-button__drow1::after,
.category-button__drow2,
.category-button__drow2::before,
.category-button__drow2::after {
    background: var(--back_color);
}

.category-button:hover .category-button__drow1 {
    animation: drow1 ease-in 0.06s;
    animation-fill-mode: forwards;
}

.category-button:hover .category-button__drow1::before {
    animation: drow2 linear 0.08s 0.06s;
    animation-fill-mode: forwards;
}

.category-button:hover .category-button__drow1::after {
    animation: drow3 linear 0.03s 0.14s;
    animation-fill-mode: forwards;
}

.category-button:hover .category-button__drow2 {
    animation: drow4 linear 0.06s 0.2s;
    animation-fill-mode: forwards;
}

.category-button:hover .category-button__drow2::before {
    animation: drow3 linear 0.03s 0.26s;
    animation-fill-mode: forwards;
}

.category-button:hover .category-button__drow2::after {
    animation: drow5 linear 0.06s 0.32s;
    animation-fill-mode: forwards;
}

@keyframes drow1 {
    0% { height: 0; }
    100% { height: 60px; }
}

@keyframes drow2 {
    0% { width: 0; opacity: 0; }
    10% { opacity: 0; }
    11% { opacity: 1; }
    100% { width: 70px; }
}

@keyframes drow3 {
    0% { width: 0; }
    100% { width: 50px; }
}

@keyframes drow4 {
    0% { height: 0; }
    100% { height: 70px; }
}

@keyframes drow5 {
    0% { width: 0; }
    100% { width: 74px; }
}

/* Instagram Alanı */
.instagram-section {
    padding: 80px 0;
    background: #fff;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.instagram-section .container {
    max-width: 1600px;
    padding: 0 30px;
}

.instagram-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    max-width: 1600px;
    margin: 0 auto;
}

.instagram-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.instagram-item:hover {
    transform: translateY(-5px);
}

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

/* Mobil Instagram Stilleri */
@media (max-width: 992px) {
    .instagram-item img {
        border-radius: 20px;
    }
    
    .instagram-section h2 {
        font-size: 1.8rem;
        margin-bottom: 2rem;
        font-weight: 600;
    }
}

@media (max-width: 576px) {
    .instagram-item img {
        border-radius: 25px;
    }
    
    .instagram-section h2 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
        text-align: center;
    }
    
    .instagram-item {
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    
    .instagram-item:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 40px rgba(0,0,0,0.15);
    }
}

.instagram-item:hover img {
    transform: scale(1.1);
}

.instagram-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.instagram-item:hover .instagram-overlay {
    opacity: 1;
}

.instagram-overlay-header {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
}

.instagram-overlay-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
}

.instagram-overlay-username {
    color: white;
    font-size: 14px;
    font-weight: 600;
}

.instagram-overlay-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.instagram-overlay-icon {
    color: #fff;
    font-size: 3rem;
    transition: transform 0.3s ease;
}

.instagram-item:hover .instagram-overlay-icon {
    transform: scale(1.1);
}

.instagram-overlay-footer {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.instagram-overlay-stats {
    display: flex;
    align-items: center;
    gap: 16px;
}

.instagram-overlay-stat {
    display: flex;
    align-items: center;
    gap: 6px;
    color: white;
    font-size: 14px;
    font-weight: 500;
}

.instagram-overlay-stat i {
    font-size: 16px;
}

.instagram-overlay-stat.likes i {
    color: #ed4956;
}

.instagram-overlay-stat.comments i {
    color: white;
}

.instagram-overlay-caption {
    color: white;
    font-size: 13px;
    line-height: 1.4;
    margin: 0;
}

.instagram-overlay-date {
    color: rgba(255,255,255,0.7);
    font-size: 11px;
    margin-top: 4px;
}

/* Sadece desktop için göster - 992px üstü */
@media (min-width: 992px) {
    .instagram-overlay {
        display: flex;
    }
}

/* Mobile'da Instagram overlay'ı gizle */
@media (max-width: 991px) {
    .instagram-overlay {
        display: none !important;
    }
}

/* Instagram Grid Düzeni */
.instagram-item.item-1 {
    width: 500px;
    height: 500px;
    order: 3;
}

.instagram-item.item-2 {
    width: 450px;
    height: 450px;
    order: 4;
}

.instagram-item.item-3 {
    width: 450px;
    height: 450px;
    order: 2;
}

.instagram-item.item-4 {
    width: 400px;
    height: 400px;
    order: 5;
}

.instagram-item.item-5 {
    width: 400px;
    height: 400px;
    order: 1;
}

@media (max-width: 1600px) {
    .instagram-item.item-1 {
        width: 450px;
        height: 450px;
    }
    
    .instagram-item.item-2,
    .instagram-item.item-3 {
        width: 400px;
        height: 400px;
    }
    
    .instagram-item.item-4,
    .instagram-item.item-5 {
        width: 350px;
        height: 350px;
    }
}

/* DISABLED - conflicts with mobile swiper
@media (max-width: 992px) {
    .instagram-grid {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .instagram-item {
        width: 100% !important;
        max-width: 400px !important;
        height: 400px !important;
        border-radius: 20px;
    }
    
    .instagram-item.item-1 {
        order: 1;
    }
    
    .instagram-item.item-2 {
        order: 2;
    }
    
    .instagram-item.item-3 {
        order: 3;
    }
    
    .instagram-item.item-4 {
        order: 4;
    }
    
    .instagram-item.item-5 {
        order: 5;
    }
}
*/

/* DISABLED - conflicts with mobile swiper
@media (max-width: 576px) {
    .instagram-section {
        padding: 40px 0;
    }
    
    .instagram-section .container {
        padding: 0 20px;
    }
    
    .instagram-item {
        width: 100% !important;
        max-width: 350px !important;
        height: 350px !important;
        border-radius: 25px;
        box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    }
    
    .instagram-grid {
        gap: 20px;
}
}
*/

.btn-shine {
    position: relative;
    display: inline-block;
    padding: 12px 36px;
    margin: 10px 0;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 2px;
    border-radius: 40px;
    background: linear-gradient(90deg, #755bea, #ff72c0);
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn-shine:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.btn-shine::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: all 0.6s ease;
}

.btn-shine:hover::before {
    left: 100%;
}

/* Sabit Modern Arama Kutusu Stilleri */
.fixed-search {
  position: relative;
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50px;
  padding: 4px;
  transition: all 0.3s ease;
  border: 2px solid rgba(147, 157, 118, 0.2);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  width: 280px;
  height: 32px;
}

.fixed-search:focus-within {
  border-color: rgb(147, 157, 118);
  box-shadow: 0 4px 15px rgba(147, 157, 118, 0.15);
}

.fixed-search__input {
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  padding: 0 12px;
  color: #333;
  font-size: 0.9rem;
  font-family: 'Karla', sans-serif;
  height: 24px;
}

.fixed-search__input::placeholder {
  color: #999;
  font-size: 0.85rem;
}

.fixed-search__button {
  width: 28px;
  height: 28px;
  border: none;
  background: rgb(147, 157, 118);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.fixed-search__button i {
  color: #fff;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.fixed-search__button:hover {
  background: rgb(147, 157, 118);
  transform: scale(1.05);
  box-shadow: 0 2px 8px rgba(147, 157, 118, 0.3);
}

.fixed-search__button:active {
  transform: scale(0.95);
}

/* Arama Sonuçları Dropdown Stilleri */
.search-results {
  position: absolute;
  top: calc(100% + 10px);
  left: 5px; /* Kenarlardan biraz içeride */
  right: 5px; /* Kenarlardan biraz içeride */
  background: #fff; /* Tam opak beyaz */
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden; /* Dinamik yükseklik için overflow hidden */
  z-index: 1000;
  display: none;
  backdrop-filter: none;
  border: 1px solid rgba(147, 157, 118, 0.1);
  opacity: 1 !important;
  transition: height 0.3s ease; /* Smooth height transition */
}

.search-results.active {
  display: block;
}

.search-result-item {
  display: flex;
  align-items: center; /* İçeriği ortala */
  justify-content: flex-start; /* Soldan başlat ama ortalı */
  padding: 20px 25px; /* Çok daha geniş padding */
  border-bottom: 1px solid #f0f0f0;
  transition: all 0.2s ease;
  cursor: pointer;
  height: 90px; /* Daha da uzun yükseklik */
  background: #fff;
}

.search-result-item:last-child {
  border-bottom: none;
}

.search-result-item img {
  width: 60px; /* Daha da büyük görsel */
  height: 60px;
  object-fit: cover;
  border-radius: 6px;
  margin-right: 20px; /* Görsel ile metin arası daha geniş */
  flex-shrink: 0;
}

.search-result-item .product-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0; /* Flex overflow fix */
  padding: 15px 10px; /* Çok daha geniş üst-alt ve yan padding */
}

.search-result-item .product-name {
  font-size: 1.0rem; /* Okunabilir font boyutu */
  color: #333;
  margin-bottom: 2px; /* İsim ile fiyatı yaklaştır */
  font-weight: 600;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-decoration: none !important;
}

.search-result-item .product-price {
  font-size: 0.9rem; /* Biraz daha büyük */
  color: #939d76;
  font-weight: 600;
  margin-bottom: 4px; /* Biraz daha margin */
  text-decoration: none !important;
}

.search-result-item .product-category {
  font-size: 0.8rem; /* Okunabilir boyut */
  color: #666;
  font-weight: 400;
  text-decoration: none !important;
  margin-top: 0; /* Üst margin sıfırla */
}

.search-result-item.no-results {
  justify-content: center;
  font-style: italic;
  color: #666;
  padding: 16px;
}

.search-result-item:hover {
  background: #f8f9fa;
}

.search-results::-webkit-scrollbar {
  width: 6px;
}

/* Mobile görünümü - 768px ve altı */
@media (max-width: 768px) {
    .slideshow {
        height: 60vh;
        margin: 0 !important;
        margin-left: -16px !important;
        margin-right: 0 !important;
        left: 0 !important;
        right: 0 !important;
        position: relative;
        transform: none !important;
        width: 100vw;
        min-width: 100vw;
    }
}

/* Küçük mobile görünümü - 480px ve altı */
@media (max-width: 480px) {
    .slideshow {
        height: 50vh;
        margin: 0 !important;
        margin-left: -21px !important;
        margin-right: 0 !important;
        left: 0 !important;
        right: 0 !important;
        position: relative;
        transform: none !important;
        width: 100vw;
        min-width: 100vw;
    }
}

/* Very small screens - 320px ve altı */
@media (max-width: 320px) {
    .slideshow {
        height: 45vh;
        margin: 0 !important;
        margin-left: -26px !important;
        margin-right: 0 !important;
        left: 0 !important;
        right: 0 !important;
 position: relative;
        transform: none !important;
        width: 100vw;
        min-width: 100vw;
    }
}

/* Tablet görünümü - 992px ve altı */
@media (max-width: 992px) {
    .slideshow {
        height: 70vh;
        margin: 0 !important;
        width: 100vw;
        min-width: 100vw;
        left: 0 !important;
        right: 0 !important;
        margin-left: -11px !important;
        margin-right: 0 !important;
        position: relative;
        transform: none !important;
    }
    
    .slideshow .slideshow-inner,
    .slideshow .slides {
        width: 100%;
 left: 0;
 right: 0;
        margin: 0;
        padding: 0;
    }
    
    .slideshow .slide-content {
        padding: 0 60px 80px 60px;
        text-align: center !important;
    align-items: center !important;
    justify-content: center !important;
    }
    
    .slideshow .slide .title {
        font-size: 3rem !important;
        text-align: center !important;
    }
    
    .slideshow .slide .text {
        font-size: 16px !important;
        text-align: center !important;
    }
}

/* Mobile'da Login Modal'ı Tamamen Engelle */
/* MOBİL MODAL ÇOK ÖNEMLİ DÜZELTMELERİ */
@media (max-width: 768px) {
    /* Modal'ı force görünür yap */
    .modal {
        z-index: 10050 !important;
        padding: 0 !important;
    }

    .modal-backdrop {
        z-index: 10040 !important;
    }

    .modal-dialog {
        margin: 1rem !important;
        width: calc(100% - 2rem) !important;
        max-width: calc(100% - 2rem) !important;
        height: auto !important;
        position: relative !important;
        display: flex !important;
        align-items: center !important;
        min-height: calc(100vh - 2rem) !important;
    }

    .modal-dialog-centered {
        display: flex !important;
        align-items: center !important;
        min-height: calc(100vh - 2rem) !important;
    }

    /* Mobile icon button'larda modal trigger */
    #mobileAccountBtn,
    #desktopAccountBtn {
        background: transparent !important;
        border: none !important;
        color: inherit !important;
        padding: 0.5rem !important;
        min-height: 44px !important;
        min-width: 44px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        transition: all 0.2s ease !important;
        cursor: pointer !important;
    }

    #mobileAccountBtn:hover,
    #mobileAccountBtn:focus,
    #desktopAccountBtn:hover,
    #desktopAccountBtn:focus {
        background: rgba(0, 0, 0, 0.1) !important;
        transform: scale(1.1) !important;
    }

    #mobileAccountBtn:active,
    #desktopAccountBtn:active {
        transform: scale(0.95) !important;
    }
}

/* MOBILE SLIDE ÖZELLİĞİ - SWIPE İLE TÜMÜ GÖZÜKMELİ */
@media screen and (max-width: 768px) {
    /* Container ayarları */
    .categories-slider,
    .featured-products-slider {
        padding: 20px 0 60px 0 !important;
        overflow: hidden !important;
    }
    
    /* Kartları Büyüt */
    .categories-slider .category-card {
        width: 100% !important;
        max-width: 360px !important;
        height: 320px !important;
        margin: 0 auto !important;
    }
    
    .featured-products-slider .product-card {
        width: 100% !important;
        max-width: 380px !important;
        min-height: 480px !important;
        height: 480px !important;
        margin: 0 auto !important;
        display: flex !important;
        flex-direction: column !important;
    }
    
    .featured-products-slider .product-card .card-img-top {
        height: 65% !important;
        max-height: 310px !important;
    }
    
    .featured-products-slider .product-card .card-body {
        height: auto !important;
        min-height: 130px !important;
        max-height: 170px !important;
    }
}

/* MOBILE KARTLARI TAM ORTALA */
@media (max-width: 768px) {
    /* Container padding'lerini kaldır */
    .categories,
    .featured-products {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    
    .categories .container,
    .featured-products .container {
        padding-left: 15px !important;
        padding-right: 15px !important;
        max-width: 100% !important;
    }
    
    /* Kategoriler slider container */
    .categories-slider {
        width: 100% !important;
        margin: 0 auto !important;
        padding: 20px 0 60px 0 !important;
    }
    
    .categories-slider .swiper-slide {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
    }
    
    .categories-slider .category-card {
        margin: 0 auto !important;
        width: 100% !important;
        max-width: 350px !important;
        height: 320px !important;
    }
    
    /* Öne çıkan ürünler slider container */
    .featured-products-slider {
        width: 100% !important;
        margin: 0 auto !important;
        padding: 20px 0 60px 0 !important;
    }
    
    .featured-products-slider .swiper-slide {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
    }
    
    .featured-products-slider .product-card {
        margin: 0 auto !important;
        width: 100% !important;
        max-width: 380px !important;
        min-height: 480px !important;
        height: 480px !important;
        display: flex !important;
        flex-direction: column !important;
    }
    
    .featured-products-slider .product-card .card-img-top {
        height: 65% !important;
        max-height: 310px !important;
    }
    
    .featured-products-slider .product-card .card-body {
        height: auto !important;
        min-height: 130px !important;
        max-height: 170px !important;
    }
}

@media (max-width: 480px) {
    .categories-slider .category-card {
        max-width: 330px !important;
    }
    
    .featured-products-slider .product-card {
        max-width: 350px !important;
        min-height: 450px !important;
        height: 450px !important;
        display: flex !important;
        flex-direction: column !important;
    }
    
    .featured-products-slider .product-card .card-img-top {
        height: 65% !important;
        max-height: 290px !important;
    }
    
    .featured-products-slider .product-card .card-body {
        height: auto !important;
        min-height: 120px !important;
        max-height: 160px !important;
    }
}

/* EXTRA MOBILE CENTERING FORCE */
@media (max-width: 768px) {
    /* Swiper container ortalama zorlaması */
    .categories-slider.swiper,
    .featured-products-slider.swiper {
        margin-left: auto !important;
        margin-right: auto !important;
        width: 100% !important;
        max-width: 100vw !important;
    }
    
    /* Slide içerikleri sola kaydır */
    .categories-slider .swiper-slide .category-card,
    .featured-products-slider .swiper-slide .product-card {
        margin-left: auto !important;
        margin-right: auto !important;
        position: relative !important;
        left: 45% !important;
        transform: translateX(-50%) !important;
    }
    
    /* Container padding override */
    body .categories .container,
    body .featured-products .container {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }
}

/* ================================
   MOBİL HEADER STİLLERİ (H&M Style)
   ================================ */

/* Mobile Header Container */
.mobile-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #fff;
    border-bottom: 1px solid #e5e5e5;
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
    overflow-x: hidden;
}

/* Mobile Header Container - Single Row */
.mobile-header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    min-height: 60px;
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
    margin: 0;
    overflow-x: hidden;
}

/* Mobile Logo - Left Side */
.mobile-logo {
    flex-shrink: 0;
    max-width: 200px;
    overflow: hidden;
    /* Mobil için logo pozisyonu ve boyutu ayarı */
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding-left: 30px;
}

.mobile-logo img {
    height: 45px;
    width: auto;
    max-width: 100%;
}

/* Mobile Actions - Right Side */
.mobile-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
    overflow: visible;
}

.mobile-icon-btn {
    position: relative;
    background: none;
    border: none;
    color: #222;
    font-size: 20px;
    cursor: pointer;
    padding: 6px;
    text-decoration: none;
    transition: color 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 32px;
    min-height: 32px;
}

.mobile-icon-btn:hover {
    color: #666;
}

.mobile-icon-btn i {
    font-size: 20px;
}

/* Mobile Badge */
.mobile-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background: #ff0000;
    color: #fff;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 600;
    font-family: Arial, sans-serif;
    line-height: 1;
    transform: scale(0);
    transition: transform 0.3s ease;
    z-index: 10;
    border: 2px solid #fff;
}

.mobile-badge.active,
.mobile-badge:not(:empty) {
    transform: scale(1);
}

/* Mobile Search - Responsive Design */
/* Desktop için eski stil (header altında normal) */
@media (min-width: 992px) {
    .mobile-search-bar {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        border-bottom: 1px solid #e5e5e5;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 999;
    }

    .mobile-search-bar.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .mobile-search-container {
        padding: 16px;
    }

    .mobile-search-form {
        width: 100%;
        position: relative;
    }

    .mobile-search-input-wrapper {
        display: flex;
        align-items: center;
        background: #f4f4f4;
        border-radius: 4px;
        padding: 0;
        border: 1px solid #ddd;
    }

    .mobile-search-input {
        flex: 1;
        border: none;
        background: transparent;
        padding: 12px 16px;
        font-size: 16px;
        outline: none;
        color: #222;
        min-width: 0;
    }

    .mobile-search-input::placeholder {
        color: #777;
        font-size: 16px;
    }

    .mobile-search-close {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        background: none;
        border: none;
        color: #777;
        font-size: 16px;
        cursor: pointer;
        transition: color 0.2s ease;
        flex-shrink: 0;
    }

    .mobile-search-close:hover {
        color: #222;
    }

    .mobile-search-results {
        margin-top: 8px;
        max-height: 300px;
        overflow-y: auto;
        background: #fff;
        border: 1px solid #ddd;
        border-radius: 4px;
        display: none;
    }

    .mobile-search-results.active {
        display: block;
    }
}

/* Mobile için yeni stil (tam ekran overlay) */
@media (max-width: 991px) {
    .mobile-search-bar {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: #fff;
        z-index: 9999;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        display: flex;
        flex-direction: column;
    }

    .mobile-search-bar.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .mobile-search-container {
        display: flex;
        align-items: center;
        padding: 12px 16px;
        border-bottom: 1px solid #e5e5e5;
        background: #fff;
        position: sticky;
        top: 0;
        z-index: 100;
    }

    .mobile-search-form {
        width: 100%;
        position: relative;
    }

    .mobile-search-input-wrapper {
        display: flex;
        align-items: center;
        background: #f8f8f8;
        border-radius: 8px;
        padding: 0;
        border: none;
        margin-right: 12px;
    }

    .mobile-search-icon {
        padding: 12px;
        color: #666;
        font-size: 16px;
    }

    .mobile-search-input {
        flex: 1;
        border: none;
        background: transparent;
        padding: 12px 8px 12px 0;
        font-size: 16px;
        outline: none;
        color: #222;
        min-width: 0;
    }

    .mobile-search-input::placeholder {
        color: #999;
        font-size: 16px;
    }

    .mobile-search-close {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        background: none;
        border: none;
        color: #222;
        font-size: 18px;
        cursor: pointer;
        transition: color 0.2s ease;
        flex-shrink: 0;
    }

    .mobile-search-close:hover {
        color: #666;
    }

    .mobile-search-results {
        flex: 1;
        overflow-y: auto;
        background: #fff;
        padding: 16px;
        display: none;
    }

    .mobile-search-results.active {
        display: block;
    }
}

/* Mobile Search Results için basit liste stilini kaldırıyorum - Normal search results kullanılacak */

/* Mobile Navigation Menu */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0,0,0,0.5);
    z-index: 1998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100vh;
    background: #fff;
    z-index: 1999;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    box-shadow: -4px 0 20px rgba(0,0,0,0.15);
}

.mobile-nav-menu.active {
    right: 0;
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    background: #fff;
    border-bottom: 1px solid #e5e5e5;
    color: #222;
}

.mobile-nav-logo img {
    height: 35px;
    width: auto;
}

.mobile-nav-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    color: #222;
    font-size: 20px;
    cursor: pointer;
    transition: color 0.2s ease;
}

.mobile-nav-close:hover {
    color: #666;
}

.mobile-nav-content {
    flex: 1;
    padding: 0;
    overflow-y: auto;
}

.mobile-nav-section {
    margin-bottom: 0;
}

.mobile-nav-section h4 {
    margin: 0;
    padding: 16px 20px 12px 20px;
    color: #666;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    background: #fafafa;
    border-bottom: 1px solid #e5e5e5;
}

.mobile-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav-list li {
    border-bottom: 1px solid #f0f0f0;
}

.mobile-nav-list li:last-child {
    border-bottom: none;
}

.mobile-nav-list a {
    display: block;
    padding: 16px 20px;
    text-decoration: none;
    color: #222;
    background: #fff;
    font-size: 16px;
    font-weight: 400;
    transition: background-color 0.2s ease;
    border: none;
}

.mobile-nav-list a:hover {
    background: #f0f0f0;
    color: #222;
}

.mobile-nav-list a:active {
    background: #e8e8e8;
}

.mobile-nav-footer {
    padding: 20px;
    background: #f8f8f8;
    border-top: 1px solid #e5e5e5;
    margin-top: auto;
}

.mobile-nav-social {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 10px;
}

.mobile-social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #222;
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.2s ease;
}

.mobile-social-icon:hover {
    background: #444;
    transform: scale(1.1);
}

/* Mobile Body Padding Adjustment */
@media (max-width: 991px) {
    body {
        padding-top: 70px !important; /* Single row mobile header */
    }
}

@media (max-width: 768px) {
    .mobile-header-container {
        padding: 10px 16px;
        min-height: 110px;
    }
    
    .mobile-logo {
        padding-left: 25px;
    }
    
    .mobile-logo img {
        height: 40px;
    }
    
    .mobile-actions {
        gap: 14px;
        margin-right: 20px;
    }
    
    .mobile-icon-btn {
        font-size: 18px;
    }
    
    .mobile-icon-btn i {
        font-size: 18px;
    }
    
    .mobile-nav-menu {
        width: 280px;
    }
    
    body {
        padding-top: 120px !important;
    }
}

@media (max-width: 480px) {
    .mobile-header-container {
        padding: 8px 12px;
        min-height: 105px;
    }
    
    .mobile-logo {
        padding-left: 20px;
    }
    
    .mobile-logo img {
        height: 36px;
    }
    
    .mobile-actions {
        gap: 12px;
        margin-right: 15px;
    }
    
    .mobile-icon-btn {
        font-size: 16px;
    }
    
    .mobile-icon-btn i {
        font-size: 16px;
    }
    
    .mobile-nav-menu {
        width: 90%;
        max-width: 300px;
    }
    
    .mobile-search-input {
        font-size: 14px;
        padding: 10px 14px;
    }
    
    .mobile-search-input::placeholder {
        font-size: 14px;
    }
    
    .mobile-search-close {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
    
    body {
        padding-top: 115px !important;
    }
}

/* Mobile Header Animations */
@keyframes cartBadgeBounce {
    0% { transform: scale(1); }
    50% { transform: scale(1.3); }
    100% { transform: scale(1); }
}

.mobile-badge.bounce {
    animation: cartBadgeBounce 0.6s ease-out;
}

/* Sticky Header Effect */
.mobile-header.scrolled {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
}

.mobile-header.scrolled .mobile-top-bar {
    background: rgba(248,249,250,0.9);
}

/* Mobile Search - Normal arama stillerini kullanır */

/* Mobile Search Grid Layout - Sadece Mobile için */
@media (max-width: 991px) {
    .mobile-search-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 20px;
        padding: 0;
    }

    .mobile-search-product {
        background: #fff;
        border: 1px solid #e5e5e5;
        border-radius: 8px;
        overflow: hidden;
        transition: all 0.2s ease;
        text-decoration: none;
        color: inherit;
        display: block;
    }

    .mobile-search-product:hover {
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        transform: translateY(-2px);
        text-decoration: none;
        color: inherit;
    }

    .mobile-search-product-image {
        width: 100%;
        height: 200px;
        object-fit: cover;
        display: block;
    }

    .mobile-search-product-info {
        padding: 16px;
    }

    .mobile-search-product-name {
        font-size: 16px;
        font-weight: 500;
        color: #222;
        margin-bottom: 8px;
        line-height: 1.4;
    }

    .mobile-search-product-price {
        font-size: 18px;
        font-weight: 600;
        color: #222;
        margin-bottom: 4px;
    }

    .mobile-search-product-category {
        font-size: 14px;
        color: #666;
        margin: 0;
    }

    .mobile-search-no-results {
        text-align: center;
        padding: 60px 20px;
        color: #666;
        font-size: 16px;
    }

    .mobile-search-loading {
        text-align: center;
        padding: 40px 20px;
        color: #666;
        font-size: 16px;
    }
}

/* Mobile Grid Responsive Adjustments */
@media (max-width: 768px) {
    .mobile-search-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 16px;
    }
    
    .mobile-search-product-image {
        height: 180px;
    }
}

@media (max-width: 480px) {
    .mobile-search-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 12px;
    }
    
    .mobile-search-results {
        padding: 12px;
    }
    
    .mobile-search-product-image {
        height: 160px;
    }
    
    .mobile-search-product-info {
        padding: 12px;
    }
}

/* ===== FAVORITES PAGE MOBILE RESPONSIVE STYLES ===== */

/* Favorites Page Container */
.modern-favorites-page {
    padding: 20px 0;
}

/* Favorites Page Header */
.favorites-page-header {
    text-align: center;
    margin-bottom: 30px;
    padding: 0 15px;
}

/* Mobile için header padding azaltma */
@media (max-width: 768px) {
    .favorites-page-header {
        margin-bottom: 5px;
        margin-top: 0;
        padding: 0 10px;
    }
}

@media (max-width: 480px) {
    .favorites-page-header {
        margin-bottom: 2px;
        margin-top: 0;
        padding: 0 8px;
    }
}

@media (max-width: 360px) {
    .favorites-page-header {
        margin-bottom: 0;
        margin-top: 0;
        padding: 0 5px;
    }
}

.favorites-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.favorites-title .title-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.favorites-title .title-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.favorites-stats {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.favorites-stats .stats-count {
    font-size: 1.2rem;
    font-weight: 700;
}

/* Empty State */
.empty-favorites-container {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.empty-favorites-content {
    text-align: center;
    max-width: 500px;
    width: 100%;
}

.empty-icon-container {
    margin-bottom: 30px;
    position: relative;
}

.empty-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.empty-icon .heart-icon {
    width: 80px;
    height: 80px;
    opacity: 0.6;
}

.floating-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.floating-particles .particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    animation: float 3s infinite ease-in-out;
}

.floating-particles .particle:nth-child(1) { top: 10%; left: 20%; animation-delay: 0s; }
.floating-particles .particle:nth-child(2) { top: 20%; right: 15%; animation-delay: 0.5s; }
.floating-particles .particle:nth-child(3) { bottom: 20%; left: 10%; animation-delay: 1s; }
.floating-particles .particle:nth-child(4) { bottom: 10%; right: 20%; animation-delay: 1.5s; }
.floating-particles .particle:nth-child(5) { top: 50%; left: 5%; animation-delay: 2s; }
.floating-particles .particle:nth-child(6) { top: 50%; right: 5%; animation-delay: 2.5s; }

@keyframes float {
    0%, 100% { transform: translateY(0px) scale(1); opacity: 0.5; }
    50% { transform: translateY(-20px) scale(1.2); opacity: 1; }
}

.empty-text-container .empty-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
}

.empty-text-container .empty-description {
    color: #6c757d;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.btn-explore {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.btn-explore:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
    color: white;
    text-decoration: none;
}

.btn-explore .btn-icon {
    width: 20px;
    height: 20px;
}

/* Action Bar */
.favorites-action-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding: 0 15px;
    background: #f8f9fa;
    border-radius: 15px;
    padding: 15px 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.action-left {
    display: flex;
    gap: 10px;
}

.btn-view-mode {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    border: 2px solid #e9ecef;
    background: white;
    border-radius: 10px;
    color: #6c757d;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-view-mode svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
}

.btn-view-mode.active {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border-color: transparent;
}

.btn-view-mode:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.btn-clear-all {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    background: #dc3545;
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-clear-all svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
}

.btn-clear-all:hover {
    background: #c82333;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(220, 53, 69, 0.3);
}

/* Product Grid - FORCED GRID LAYOUT */
.modern-favorites-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)) !important;
    gap: 30px;
    padding: 0 15px;
    width: 100%;
    max-width: 100%;
}

.modern-favorites-grid.list-view {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 20px;
}

.modern-product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid #f1f3f4;
    width: 100%;
    min-height: 400px;
    display: flex !important;
    flex-direction: column !important;
}

.modern-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.modern-product-card.removing {
    transition: all 0.3s ease;
    transform: scale(0.8);
    opacity: 0;
}

.product-card-inner {
    height: 100%;
    display: flex !important;
    flex-direction: column !important;
    flex: 1;
    width: 100%;
}

.product-image-container {
    position: relative;
    width: 100%;
    padding-top: 75%;
    overflow: hidden;
    background: #f8f9fa;
}

.product-image-container .image-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
}

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

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-image-container:hover .image-overlay {
    opacity: 1;
}

.product-image-container:hover .product-image {
    transform: scale(1.05);
}

.overlay-text {
    font-weight: 500;
    font-size: 1rem;
}

/* Favorite Action Button - Same as Shop Page */
.favorite-action-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    border: none;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    z-index: 10;
}

.favorite-action-btn:hover {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.favorite-action-btn img {
    width: 20px;
    height: 20px;
    transition: all 0.2s ease;
}

.favorite-action-btn.active img {
    filter: none;
}

.favorite-action-btn:not(.active) img {
    filter: grayscale(100%);
}

/* Mobile responsive adjustments for favorite button */
@media (max-width: 768px) {
    .favorite-action-btn {
        width: 35px;
        height: 35px;
        top: 8px;
        right: 8px;
    }
    
    .favorite-action-btn img {
        width: 18px;
        height: 18px;
    }
}

@media (max-width: 480px) {
    .favorite-action-btn {
        width: 32px;
        height: 32px;
        top: 6px;
        right: 6px;
    }
    
    .favorite-action-btn img {
        width: 16px;
        height: 16px;
    }
}

.product-info-container {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-category-badge {
    display: inline-block;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
    margin-bottom: 10px;
    align-self: flex-start;
}

.product-name {
    margin-bottom: 8px;
    flex: 1;
}

.product-name a {
    color: #2c3e50;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-name a:hover {
    color: #667eea;
}

.product-description {
    color: #6c757d;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* List View Styles */
.modern-favorites-grid.list-view .modern-product-card {
    border-radius: 15px;
}

.modern-favorites-grid.list-view .product-card-inner {
    flex-direction: row;
    height: auto;
}

.modern-favorites-grid.list-view .product-image-container {
    flex: 0 0 200px;
    padding-top: 0;
    height: 160px;
}

.modern-favorites-grid.list-view .product-info-container {
    flex: 1;
    padding: 20px 25px;
}

/* ===== MOBILE RESPONSIVE BREAKPOINTS ===== */

@media (max-width: 1200px) {
    .modern-favorites-grid {
        display: grid !important;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
        gap: 25px;
    }
}

@media (max-width: 992px) {
    .modern-favorites-page {
        padding: 15px 0;
        margin-top: 5rem !important;
    }
    
    .favorites-title {
        font-size: 2.2rem;
        gap: 12px;
    }
    
    .favorites-title .title-icon {
        width: 70px;
        height: 70px;
    }
    
    .modern-favorites-grid {
        display: grid !important;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)) !important;
        gap: 20px;
        padding: 0 10px;
    }
    
    .favorites-action-bar {
        flex-direction: column;
        gap: 15px;
        align-items: stretch;
        padding: 15px;
    }
    
    .action-left {
        justify-content: center;
    }
    
    .btn-clear-all {
        align-self: center;
    }
}

@media (max-width: 768px) {
    .modern-favorites-page {
        margin-top: 1rem !important;
        padding: 0;
    }
    
    .favorites-page-header {
        margin-bottom: 5px;
        padding: 0 10px;
    }
    
    .favorites-title {
        font-size: 1.8rem;
        gap: 10px;
        flex-direction: column;
        text-align: center;
    }
    
    .favorites-title .title-icon {
        width: 60px;
        height: 60px;
    }
    
    .favorites-stats {
        padding: 6px 15px;
        font-size: 0.9rem;
    }
    
    .favorites-stats .stats-count {
        font-size: 1rem;
    }
    
    .modern-favorites-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px;
        padding: 0 5px;
    }
    
    .favorites-action-bar {
        margin: 0 5px 20px 5px;
        padding: 12px;
        border-radius: 10px;
    }
    
    .action-left {
        gap: 8px;
    }
    
    .btn-view-mode {
        padding: 6px 12px;
        font-size: 0.8rem;
        border-radius: 8px;
    }
    
    .btn-view-mode svg {
        width: 14px;
        height: 14px;
    }
    
    .btn-clear-all {
        padding: 6px 12px;
        font-size: 0.8rem;
        border-radius: 8px;
    }
    
    .btn-clear-all svg {
        width: 14px;
        height: 14px;
    }
    
    .modern-product-card {
        border-radius: 15px;
        min-height: 350px;
    }
    
    .product-info-container {
        padding: 15px;
    }
    
    .product-name a {
        font-size: 1rem;
    }
    
    .product-description {
        font-size: 0.85rem;
        margin-bottom: 10px;
    }
    
    .product-category-badge {
        font-size: 0.7rem;
        padding: 3px 10px;
        margin-bottom: 8px;
    }
    
    /* Empty State Mobile */
    .empty-favorites-container {
        min-height: 50vh;
        padding: 30px 15px;
    }
    
    .empty-icon {
        width: 100px;
        height: 100px;
    }
    
    .empty-icon .heart-icon {
        width: 70px;
        height: 70px;
    }
    
    .empty-text-container .empty-title {
        font-size: 1.5rem;
        margin-bottom: 12px;
    }
    
    .empty-text-container .empty-description {
        font-size: 0.9rem;
        margin-bottom: 25px;
    }
    
    .btn-explore {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .btn-explore .btn-icon {
        width: 18px;
        height: 18px;
    }
    
    /* List View Mobile */
    .modern-favorites-grid.list-view .product-card-inner {
        flex-direction: column;
    }
    
    .modern-favorites-grid.list-view .product-image-container {
        flex: none;
        padding-top: 60%;
        height: auto;
    }
    
    .modern-favorites-grid.list-view .product-info-container {
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .modern-favorites-page {
        margin-top: 0.5rem !important;
        padding: 0;
    }
    
    .favorites-page-header {
        margin-bottom: 2px;
        padding: 0 8px;
    }
    
    .favorites-title {
        font-size: 1.6rem;
        gap: 8px;
    }
    
    .favorites-title .title-icon {
        width: 55px;
        height: 55px;
    }
    
    .modern-favorites-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px;
        padding: 0 8px;
    }
    
    .favorites-action-bar {
        margin: 0 8px 15px 8px;
        padding: 10px;
        gap: 12px;
    }
    
    .action-left {
        gap: 6px;
    }
    
    .btn-view-mode {
        padding: 5px 10px;
        font-size: 0.75rem;
    }
    
    .btn-clear-all {
        padding: 5px 10px;
        font-size: 0.75rem;
    }
    
    .modern-product-card {
        border-radius: 12px;
        min-height: 320px;
    }
    
    .product-info-container {
        padding: 12px;
    }
    
    .product-name a {
        font-size: 0.95rem;
    }
    
    .product-description {
        font-size: 0.8rem;
        margin-bottom: 8px;
    }
    
    .product-category-badge {
        font-size: 0.65rem;
        padding: 2px 8px;
        margin-bottom: 6px;
    }
    
    /* Empty State Very Small Mobile */
    .empty-favorites-container {
        min-height: 45vh;
        padding: 25px 10px;
    }
    
    .empty-icon {
        width: 80px;
        height: 80px;
    }
    
    .empty-icon .heart-icon {
        width: 60px;
        height: 60px;
    }
    
    .floating-particles .particle {
        width: 4px;
        height: 4px;
    }
    
    .empty-text-container .empty-title {
        font-size: 1.3rem;
        margin-bottom: 10px;
    }
    
    .empty-text-container .empty-description {
        font-size: 0.85rem;
        margin-bottom: 20px;
    }
    
    .btn-explore {
        padding: 8px 18px;
        font-size: 0.85rem;
        gap: 8px;
    }
    
    .btn-explore .btn-icon {
        width: 16px;
        height: 16px;
    }
}

@media (max-width: 360px) {
    .modern-favorites-page {
        margin-top: 0.2rem !important;
        padding: 0;
    }
    
    .favorites-title {
        font-size: 1.4rem;
    }
    
    .favorites-title .title-icon {
        width: 50px;
        height: 50px;
    }
    
    .modern-favorites-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 8px;
        padding: 0 5px;
    }
    
    .favorites-action-bar {
        margin: 0 5px 12px 5px;
        padding: 8px;
    }
    
    .action-left {
        gap: 4px;
    }
    
    .btn-view-mode,
    .btn-clear-all {
        padding: 4px 8px;
        font-size: 0.7rem;
        border-radius: 6px;
    }
    
    .btn-view-mode svg,
    .btn-clear-all svg {
        width: 12px;
        height: 12px;
    }
    
    .product-info-container {
        padding: 10px;
    }
    
    .modern-product-card {
        min-height: 300px;
    }
    
    .empty-favorites-container {
        padding: 20px 8px;
    }
    
    .empty-text-container .empty-title {
        font-size: 1.2rem;
    }
    
    .empty-text-container .empty-description {
        font-size: 0.8rem;
    }
    
    .btn-explore {
        padding: 7px 15px;
        font-size: 0.8rem;
    }
}

/* Very Small Screens - Single Column */
@media (max-width: 320px) {
    .modern-favorites-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 8px;
        padding: 0 5px;
    }
    
    .modern-product-card {
        min-height: 280px;
    }
}
