body { 
    font-family: 'Poppins', sans-serif; 
}

.weColor { 
    background-color: #FFD700; 
    color: #0D1114; 
    transition: all 0.3s ease;
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(255, 215, 0, 0.2);
}

.weColor:hover {
    background-color: #FFED4E;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.4);
    color: #0D1114;
}

.order-1 { order: 1; }
.order-2 { order: 2; }
.order-3 { order: 3; }
.order-4 { order: 4; }
@media (min-width: 768px) {
  .md\:order-1 { order: 1; }
  .md\:order-2 { order: 2; }
  .md\:order-3 { order: 3; }
  .md\:order-4 { order: 4; }
}

@media (min-width: 767px) {
    .container {
        width: 81%  !important;
    }
}
@media (max-width: 768px) {
    .container {
        width: 100% !important;
    }
}


/* Scrollbar Hide for Mobile */
.scrollbar-hide {
    -ms-overflow-style: none;  /* Internet Explorer 10+ */
    scrollbar-width: none;  /* Firefox */
}

.scrollbar-hide::-webkit-scrollbar {
    display: none;  /* Safari and Chrome */
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
} 




.footerWidPT:nth-child(1) {
    border-bottom: 1px solid #444444;
}

.footerWidPT:nth-child(2) {
    border-bottom: 1px solid #444444;
}   
@media (max-width: 768px) {
    .footerWidPT:nth-child(1) {
        border-bottom: none;
    }
    .footerWidPT:nth-child(2) {
        border-bottom: none;
    }
}

/* Desktop Dropdown Styles */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    padding: 8px 0;
    margin-top: 8px;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu a {
    display: block;
    padding: 10px 16px;
    color: #0D1114 !important;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    transition: all 0.2s ease;
    border-radius: 4px;
    margin: 0 8px;
}

.dropdown-menu a:hover {
    background-color: #f3f4f6;
    color: #0D9239;
}

.dropdown-toggle svg {
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-toggle svg {
    transform: rotate(180deg);
}

/* Mobile Dropdown Styles */



.mobile-dropdown-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background-color: #111;
    border-radius: 8px;
    margin: 4px 0;
}

.mobile-dropdown-menu.show {
    max-height: 500px;
}

.mobile-dropdown-menu li {
    list-style: none;
}

.mobile-dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
}

.mobile-dropdown-menu a:hover {
    background-color: #f3f4f6;
    color: #FFED4E;
    border-left-color: #FFED4E;
}

.mobile-dropdown-toggle .dropdown-arrow {
    transition: transform 0.3s ease;
}

.mobile-dropdown-toggle.active .dropdown-arrow {
    transform: rotate(180deg);
}

/* .pt-menu-item:hover, .pt-menu-item:focus-within {
    color: #ffd602 !important;
  } */
  .pt-menu-item:hover a, .pt-menu-item:focus-within a {
    color: #ffd602 !important;
  }
  .dropdown ul li:hover {
    background: #fff !important;
}
.dropdown-menu li{
    padding: 0 !important;
}

/* Blog Styles */
.prose {
    color: #374151;
    max-width: none;
}

.prose h1, .prose h2, .prose h3, .prose h4, .prose h5, .prose h6 {
    color: #111827;
    font-weight: 700;
    line-height: 1.25;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.prose h1 {
    font-size: 2.25rem;
    margin-top: 0;
}

.prose h2 {
    font-size: 1.875rem;
}

.prose h3 {
    font-size: 1.5rem;
}

.prose h4 {
    font-size: 1.25rem;
}

.prose p {
    margin-bottom: 1.5rem;
    line-height: 1.75;
}

.prose ul, .prose ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.prose li {
    margin-bottom: 0.5rem;
}

.prose blockquote {
    border-left: 4px solid #FFD700;
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: #6B7280;
    background-color: #F9FAFB;
    padding: 1.5rem;
    border-radius: 0 0.5rem 0.5rem 0;
}

.prose code {
    background-color: #F3F4F6;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    font-size: 0.875rem;
    color: #DC2626;
}

.prose pre {
    background-color: #1F2937;
    color: #F9FAFB;
    padding: 1.5rem;
    border-radius: 0.5rem;
    overflow-x: auto;
    margin: 2rem 0;
}

.prose pre code {
    background-color: transparent;
    padding: 0;
    color: inherit;
}

.prose img {
    border-radius: 0.5rem;
    margin: 2rem 0;
}

.prose a {
    color: #0D9239;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 2px;
}

.prose a:hover {
    color: #0D1114;
}

/* Line Clamp Utility */
.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.line-clamp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Blog Card Hover Effects */
.group:hover .group-hover\:scale-105 {
    transform: scale(1.05);
}

.group:hover .group-hover\:text-\[\#0D9239\] {
    color: #0D9239;
}

/* Pagination Styles */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}

.pagination a,
.pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.5rem;
    height: 2.5rem;
    padding: 0 0.75rem;
    border: 1px solid #E5E7EB;
    border-radius: 0.5rem;
    text-decoration: none;
    color: #6B7280;
    font-weight: 500;
    transition: all 0.2s ease;
}

.pagination a:hover,
.pagination .current {
    background-color: #FFD700;
    border-color: #FFD700;
    color: #0D1114;
}

.pagination .prev,
.pagination .next {
    padding: 0 1rem;
}

/* Responsive Blog Styles */
@media (max-width: 768px) {
    .prose h1 {
        font-size: 1.875rem;
    }
    
    .prose h2 {
        font-size: 1.5rem;
    }
    
    .prose h3 {
        font-size: 1.25rem;
    }
    
    .prose blockquote {
        padding: 1rem;
        margin: 1.5rem 0;
    }
    
    .prose pre {
        padding: 1rem;
        margin: 1.5rem 0;
    }
}

.customLineHeight{
    line-height: 1.2 !important;
}

/* Slider Dot Styles */
.slider-dot {
    cursor: pointer;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    transition: all 0.3s ease;
    position: relative;
    z-index: 10;
}

.slider-dot:hover {
    transform: scale(1.1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.slider-dot:active {
    transform: scale(0.95);
}

/* Mobile touch improvements */
@media (max-width: 768px) {
    .slider-dot {
        min-width: 48px;
        min-height: 8px;
        touch-action: manipulation;
    }
    
    .slider-dot:active {
        background-color: #FFD700 !important;
        transform: scale(0.9);
    }
}

.current_page_item{
    color: #fff;
}

.current-menu-ancestor{
    color: #FFD700;
}

/* --- Apple Style Menu (Dark Header) --- */
.apple-menu-link {
    position: relative;
    display: inline-block;
    padding: 0.5rem 1.2rem;
    font-size: 1.15rem;
    font-weight: 500;
    color: #fff;
    transition: color 0.2s, border-color 0.2s;
    border-bottom: 2px solid transparent;
    background: none;
    border-radius: 0;
    letter-spacing: 0.01em;
}
.apple-menu-link:hover,
.apple-menu-link:focus {
    color: #fff;
    border-bottom: 2px solid #fff;
    background: none;
}
.apple-menu-link.current-menu-item,
.apple-menu-link.current-menu-ancestor {
    color: #fff;
    border-bottom: 2px solid #fff;
}

/* Desktop Menü için ortalama ve spacing */
@media (min-width: 1024px) {
    .apple-menu {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 1rem;
        background: #000;
        min-height: 56px;
    }
}

/* Mobil Menü (Dark) */
#mobile-menu {
    background: rgba(0,0,0,0.97);
    backdrop-filter: blur(16px);
    box-shadow: 0 4px 32px rgba(0,0,0,0.18);
    transition: transform 0.3s cubic-bezier(.4,0,.2,1);
}
#mobile-menu nav {
    padding-top: 2rem;
    padding-bottom: 2rem;
}
#mobile-menu a {
    font-size: 1.25rem;
    font-weight: 600;
    color: #fff;
    border-radius: 9999px;
    padding: 0.75rem 2.5rem;
    transition: background 0.18s, color 0.18s;
}
#mobile-menu a:hover {
    background: #222;
    color: #fff;
}

/* Menü butonu ve alışveriş butonu */
.menu-shop-btn, #mobile-menu .menu-shop-btn {
    background: #fff;
    color: #000;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 0.7rem 2.2rem;
    margin-left: 1.5rem;
    transition: background 0.2s, color 0.2s;
}
.menu-shop-btn:hover, #mobile-menu .menu-shop-btn:hover {
    background: #f3f4f6;
    color: #000;
}

.menu-shop-btn-apple {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 2.2rem;
  border-radius: 9999px;
  background: linear-gradient(90deg, #f5f5f7 0%, #e9e9ec 100%);
  color: #111;
  font-weight: 600;
  font-size: 1.08rem;
  box-shadow: 0 2px 8px 0 rgba(0,0,0,0.06);
  border: 1.5px solid #e5e7eb;
  letter-spacing: 0.01em;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s, border 0.18s;
  outline: none;
}
.menu-shop-btn-apple:hover {
  background: linear-gradient(90deg, #ececec 0%, #d1d1d6 100%);
  color: #111;
  box-shadow: 0 4px 16px 0 rgba(0,0,0,0.10);
  border-color: #d1d1d6;
}
.menu-shop-btn-apple:focus {
  box-shadow: 0 0 0 3px #b3b3b3;
  border-color: #b3b3b3;
}
.menu-shop-btn-apple:active {
  background: #e5e7eb;
  color: #111;
}

/* Menüde alt çizgi animasyonu (beyaz) */
.apple-menu-link::after {
    content: '';
    display: block;
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0;
    height: 2px;
    background: #fff;
    transition: width 0.2s, left 0.2s;
}
.apple-menu-link:hover::after,
.apple-menu-link.current-menu-item::after,
.apple-menu-link.current-menu-ancestor::after {
    width: 100%;
    left: 0;
}

/* Menüde bol boşluk ve netlik */
.apple-menu-link {
    margin: 0 0.2rem;
    letter-spacing: 0.01em;
}

/* Mobilde menü ortalanmış ve tam ekran */
@media (max-width: 1023px) {
    #mobile-menu nav {
        align-items: center;
        justify-content: center;
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }
}

/* Overflow Menü (Daha Fazla) Dropdown */
#overflow-menu-wrapper.show #overflow-menu-list {
  display: block;
}
#overflow-menu-list {
  min-width: 160px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.10);
  border-radius: 0.5rem;
  padding: 0.5rem 0;
  background: #fff;
  z-index: 9999;
}
#overflow-menu-list li {
  padding: 0.5rem 1rem;
  color: #222;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 500;
  white-space: nowrap;
  transition: background 0.2s;
}
#overflow-menu-list li:hover {
  background: #f3f4f6;
}
#overflow-menu-btn[aria-expanded="true"] {
  background: #374151;
}

.menu-shop-btn-apple-creative {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.6rem 1rem 0.6rem 1rem;
    border-radius: 6px;
    background: #FFC700;
    color: #000;
    font-weight: 500;
    font-size: 0.88rem;
    box-shadow: 0 0 0 1px #FFC700;
    border: 1px solid #FFC700;
    letter-spacing: 0.01em;
    transition: background 0.18s, color 0.18s, box-shadow 0.18s, border 0.18s;
    outline: none;
    overflow: hidden;
}
.menu-shop-btn-apple-creative .shop-icon {
    transition: transform 0.2s;
    margin-left: 0.2rem;
    stroke: #fff !important;
    fill: none;
}
.menu-shop-btn-apple-creative:hover .shop-icon {
    transform: scale(1.15) rotate(-8deg);
    stroke: #fff !important;
}
.menu-shop-btn-apple-creative:focus {
    box-shadow: 0 0 0 3px #FFC700;
    border-color: #FFC700;
}
.menu-shop-btn-apple-creative:hover {
    box-shadow: 0 0 0 2px #FFC700;
    border-color: #FFC700;
    background: #FFC700;
    color: #fff;
}
.menu-shop-btn-apple-creative:active {
    background: #FFC700;
    color: #fff;
}
.menu-shop-btn-apple-creative .shine {
    content: '';
    position: absolute;
    top: -60%;
    left: -40%;
    width: 60%;
    height: 220%;
    background: linear-gradient(120deg, rgba(255,255,255,0.0) 0%, rgba(255,255,255,0.5) 50%, rgba(255,255,255,0.0) 100%);
    transform: skewX(-20deg);
    pointer-events: none;
    opacity: 0.7;
    transition: left 0.5s;
}
.menu-shop-btn-apple-creative:hover .shine {
    left: 120%;
    transition: left 0.5s;
}