/* Sword Energy Drink Özel CSS Stilleri */

/* Font Family Stilleri */
.font-poppins { 
    font-family: 'Poppins', sans-serif; 
}

.font-montserrat { 
    font-family: 'Montserrat', sans-serif; 
}

.font-roboto { 
    font-family: 'Roboto', sans-serif; 
}

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

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-fade-in {
    animation: fadeIn 0.8s ease-out;
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

.animate-fade-in-left {
    animation: fadeInLeft 0.8s ease-out forwards;
}

.animate-fade-in-right {
    animation: fadeInRight 0.8s ease-out forwards;
}

/* Hero Section Styles */
.hero-section {
    position: relative;
    overflow: hidden;
}

.hero-overlay {
    background: linear-gradient(135deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.1) 100%);
}

.hero-title {
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-subtitle {
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

/* Stagger Animation Delays */
.animate-delay-100 {
    animation-delay: 0.1s;
}

.animate-delay-200 {
    animation-delay: 0.2s;
}

.animate-delay-300 {
    animation-delay: 0.3s;
}

.animate-delay-400 {
    animation-delay: 0.4s;
}

/* Button Hover Effects */
.btn-hero {
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 105, 0, 0.3);
}

.btn-hero:hover {
    box-shadow: 0 6px 20px rgba(255, 105, 0, 0.4);
    transform: translateY(-2px);
}

/* Özel Renkler */
:root {
    --sword-primary: #000000;
    --sword-secondary: #ffffff;
    --sword-accent: #ff6900;
}

/* İstatistikler için özel stil */
.stat-item {
    transition: transform 0.3s ease;
}

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

/* Responsive Görseller */
img.object-contain {
    object-fit: contain;
}

/* Hover Efektleri */
.hover\:shadow-xl {
    transition: box-shadow 0.3s ease;
}

.transition-shadow {
    transition: box-shadow 0.3s ease;
}

/* Mobil Menü İçin Ek Stiller */
@media (max-width: 768px) {
    .mobile-menu-transition {
        transition: max-height 0.3s ease-out;
    }
}

@media (max-width: 767px) {
    #mobile-menu .language-dropdown {
        display: block;
        width: max-content;
        margin-left: auto;
    }
}

/* Language switcher */
.language-switch {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(255, 105, 0, 0.24), rgba(255, 255, 255, 0.08));
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(6px);
}

.language-switch .language-option {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #ffffff;
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.language-switch .language-option.is-active {
    background: #ff6900;
    color: #111111;
    box-shadow: 0 6px 16px rgba(255, 105, 0, 0.35);
}

.language-switch .language-option:not(.is-active):hover {
    background: rgba(255, 255, 255, 0.16);
    transform: translateY(-1px);
}

.language-switch .language-option:focus-visible {
    outline: 2px solid #ff6900;
    outline-offset: 2px;
}

/* Language dropdown */
.language-dropdown {
    position: relative;
    display: inline-block;
}

.language-dropdown summary {
    list-style: none;
}

.language-dropdown summary::-webkit-details-marker {
    display: none;
}

.language-toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    border-radius: 999px;
    background: #ffffff;
    color: #111111;
    border: 1px solid rgba(17, 17, 17, 0.12);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.18);
    cursor: pointer;
    user-select: none;
}

.language-toggle .language-flag {
    font-size: 1.1rem;
    line-height: 1;
}

.language-toggle .language-name {
    font-size: 0.85rem;
    font-weight: 600;
}

.language-toggle .language-code {
    margin-left: auto;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 2px 6px;
    border-radius: 999px;
    background: rgba(17, 17, 17, 0.08);
    color: #111111;
}

.language-toggle .language-caret {
    width: 14px;
    height: 14px;
    opacity: 0.7;
}

.language-dropdown[open] .language-toggle {
    box-shadow: 0 14px 24px rgba(0, 0, 0, 0.22);
}

.language-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    min-width: 220px;
    background: #ffffff;
    border: 1px solid rgba(17, 17, 17, 0.12);
    border-radius: 14px;
    padding: 6px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.2);
    z-index: 50;
    display: none;
    max-height: 280px;
    overflow-y: auto;
}

.language-dropdown[open] .language-menu {
    display: block;
}

.language-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    border-radius: 10px;
    color: #111111;
    text-decoration: none;
    font-size: 0.9rem;
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.language-item .language-flag {
    font-size: 1.1rem;
    line-height: 1;
}

.language-item:hover,
.language-item:focus-visible {
    background: #f3f4f6;
    transform: translateX(2px);
    outline: none;
}

.language-item.is-active {
    background: #111111;
    color: #ffffff;
}

.language-item.is-active .language-name {
    color: #ffffff;
}

/* Packaging guide */
.packaging-guide {
    color: #111111;
}

.packaging-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.packaging-dot {
    font-size: 1.2rem;
    line-height: 1;
}

.packaging-heading {
    margin: 10px 0 12px;
    font-size: clamp(1.6rem, 1.2rem + 1.6vw, 2.3rem);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #0b0b5e;
}

.packaging-barcode {
    font-size: 0.98rem;
    font-weight: 500;
}

.packaging-divider {
    height: 1px;
    margin: 14px 0 18px;
    background: rgba(17, 17, 17, 0.35);
}

.packaging-section-title {
    font-size: clamp(1.2rem, 1rem + 1vw, 1.7rem);
    font-weight: 800;
    color: #0b0b5e;
    margin-bottom: 6px;
}

.packaging-dimension {
    font-size: 0.98rem;
    margin-bottom: 8px;
}

.packaging-list {
    margin: 0 0 6px 1.2rem;
    padding: 0;
    list-style: circle;
    display: grid;
    gap: 6px;
}

.packaging-list strong {
    font-weight: 700;
}

.packaging-subtitle {
    font-weight: 700;
    margin: 10px 0 6px;
}

.packaging-subsection + .packaging-subsection {
    margin-top: 10px;
}
