* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #2d3748;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    min-height: 100vh;
    overflow-x: hidden;
}

/* Navigation Styles */
nav {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 2000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

/* Main Navigation */
.nav-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    height: auto;
    min-height: 60px;
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
}

.nav-container {
    max-width: 100%;
    margin: 0 auto;
    position: relative;
}

/* Top Bar - Only for desktop */
.nav-top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 2rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    font-size: 0.85rem;
    min-height: 45px;
    padding-left: 25%;
    padding-right: 10%;
}

.shipping-info {
    color: #2d3748;
    font-weight: 600;
    letter-spacing: 1px;
    flex: 1;
    text-align: center;
    padding-left: 13%;
}

.nav-contact-info {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-shrink: 0;
}

.phone-link,
.email-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #3b82f6;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

/* Language Dropdown */
.language-dropdown {
    position: relative;
}

.lang-dropdown-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    color: #3b82f6;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.8rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.lang-dropdown-btn:hover {
    background: rgba(59, 130, 246, 0.2);
    border-color: rgba(59, 130, 246, 0.5);
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.2);
}

.lang-dropdown-btn .dropdown-arrow {
    width: 12px;
    height: 12px;
    transition: transform 0.3s ease;
}

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

.lang-dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 150px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2002;
}


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

.lang-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    color: #374151;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.lang-option:last-child {
    border-bottom: none;
}

.lang-option:hover {
    background: rgba(59, 130, 246, 0.08);
    color: #3b82f6;
    transform: translateX(3px);
}

.lang-option.active {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.12) 0%, rgba(59, 130, 246, 0.08) 100%);
    color: #3b82f6;
    font-weight: 600;
    border-left: 3px solid #3b82f6;
    padding-left: calc(1rem - 3px);
}


.logo-container {
    position: absolute;
    top: 1.7rem;
    left: 2rem;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    z-index: 1000;
    background: transparent;
    pointer-events: auto;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo img {
    height: clamp(3rem, 7vw, 5rem);
    width: auto;
    max-width: clamp(180px, 35vw, 300px);
    min-width: 120px;
    object-fit: contain;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.logo a {
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.logo a:hover img {
    transform: scale(1.05);
    filter: brightness(1.1);
}

.logo a:hover .logo img {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: clamp(1rem, 3vw, 2rem);
    align-items: center;
    height: 100%;
    margin: 0;
    padding: 0;
    flex: 1;
    justify-content: center;
    order: 2;
}

.nav-links a {
    text-decoration: none;
    color: #374151;
    font-weight: 600;
    font-size: clamp(0.75rem, 2vw, 0.85rem);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    height: fit-content;
}

.nav-links a:hover {
    color: #3b82f6;
}

.nav-right {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    order: 3;
}

/* Dropdown Styles */
.dropdown {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.dropdown-toggle {
    display: flex !important;
    align-items: center;
    gap: 0.5rem;
    height: fit-content;
}

.dropdown-arrow {
    width: 14px;
    height: 14px;
    transition: transform 0.3s ease;
}

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

.products-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 290%;
    transform: translateX(-50%);
    min-width: 600px;
    max-width: 90vw;
    background: rgba(218, 223, 233, 0.98);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(-10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1001;
    padding: 2rem;
}

/* Hover bridge - invisible area to prevent dropdown from closing */
.products-dropdown::before {
    content: '';
    position: absolute;
    top: -5px;
    left: 0;
    right: 0;
    height: 10px;
    background: transparent;
}

.dropdown.active .products-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* Keep dropdown open when hovering over it */
.products-dropdown:hover {
    opacity: 1;
    visibility: visible;
}

/* Enhanced hover for dropdown trigger */
.nav-links .dropdown:hover .products-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.nav-links .dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    left: -20px;
    right: -20px;
    height: 10px;
    background: transparent;
    z-index: 1000;
}

.product-dropdown-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
}

.product-dropdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem 1rem;
    border: 2px solid transparent;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
    position: relative;
}

.product-dropdown-item:hover {
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Improved dropdown item styling */
.product-dropdown-image {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 0.5rem;
    transition: all 0.3s ease;
}

.product-dropdown-item:hover .product-dropdown-image {
    background: rgba(255, 255, 255, 0.15);
    transform: scale(1.05);
}

.product-dropdown-image img {
    width: 150px;
    height: 160px;
    object-fit: contain;
    filter: brightness(1.2);
}

.product-dropdown-info h4 {
    color: rgb(0, 0, 0);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.product-dropdown-info span {
    color: rgba(0, 0, 0, 0.7);
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.25px;
}

/* Products Page Header with Image Layout */
.products-page-header {
    background: linear-gradient(135deg, rgba(248, 250, 252, 0.9) 0%, rgba(226, 232, 240, 0.9) 100%);
    padding: clamp(2rem, 6vw, 4rem) clamp(1rem, 4vw, 2rem);
}

.products-header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(3rem, 8vw, 6rem);
    align-items: center;
}

.products-header-image {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    min-height: 600px;
}

.products-header-image img {
    width: 100%;
    max-width: 700px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.15));
}

.products-header-content h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    margin-bottom: 2rem;
    color: #2d3748;
    line-height: 1.2;
}

.products-header-content p {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.products-header-content .highlight-text {
    color: #3b82f6;
    font-weight: 600;
}

/* Product Categories Grid - Minimal Hover Effects */
.product-categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1.2rem;
    max-width: 900px;
    margin: 3rem auto 0;
    padding: 0;
}

.category-icon-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem 1rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    min-height: 160px;
    max-height: 300px;
    justify-content: center;
    overflow: hidden;
}

.category-icon-item:hover {
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(59, 130, 246, 0.2);
    transform: translateY(-4px) scale(1.01);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.12);
}

.category-icon-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(59, 130, 246, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 18px;
}

.category-icon-item:hover .category-icon-container::before {
    opacity: 1;
}

.category-icon-container {
    width: auto;
    height: auto;
    background: none;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    box-shadow: none;
    position: relative;
    overflow: visible;
    border: none;
    padding: 0;
}

.category-icon-container2 {
    width: auto;
    height: auto;
    background: none;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2.3rem;
    transition: all 0.3s ease;
    box-shadow: none;
    position: relative;
    overflow: visible;
    border: none;
    padding: 0;
}

.category-icon-container::before {
    display: none;
}

.category-icon-item img {
    width: clamp(60px, 15vw, 80px);
    height: clamp(70px, 18vw, 90px);
    object-fit: contain;
    margin-bottom: 1rem;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
    transition: all 0.3s ease;
}

.category-icon-item:hover img {
    transform: scale(1.02);
}

.category-icon-container img {
    width: 180px;
    height: 195px;
    object-fit: contain;
    filter: none;
    transition: all 0.3s ease;
    opacity: 0.9;
    /* Add subtle shadow directly to image */
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.1));
}

.category-icon-container2 img {
    width: 150px;
    height: 175px;
    object-fit: contain;
    filter: none;
    transition: all 0.3s ease;
    opacity: 0.9;
    /* Add subtle shadow directly to image */
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.1));
}

.category-icon-item:hover .category-icon-container img {
    transform: scale(1.05);
    opacity: 1;
}

.category-icon-item h4 {
    font-size: clamp(0.9rem, 2.3vw, 1rem);
    font-weight: 600;
    /* Reduced weight */
    color: #2d3748;
    margin-bottom: 0.4rem;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
    line-height: 1.2;
}

.category-icon-item:hover h4 {
    color: #3b82f6;
    transform: translateY(-1px);
    /* Reduced movement */
}

.category-icon-item span {
    font-size: clamp(0.8rem, 1.8vw, 0.85rem);
    color: #64748b;
    font-weight: 400;
    /* Reduced weight */
    transition: all 0.3s ease;
    opacity: 0.8;
}

.category-icon-item:hover span {
    color: #4a5568;
    opacity: 1;
}

/* Detailed Products Section - Larger Images */
.detailed-products-section {
    background: white;
    padding: clamp(4rem, 10vw, 8rem) clamp(1rem, 4vw, 2rem);
}

.product-detail-item {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-bottom: clamp(6rem, 12vw, 10rem);
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    margin-top: -6rem;
}

.product-main-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: clamp(4rem, 10vw, 8rem);
    align-items: flex-start;
}

/* Alternating layout - İkinci, dördüncü vs. ürünler sağda */
.product-detail-item:nth-child(even) .product-main-content {
    grid-template-columns: 1fr 1.2fr;
}

.product-detail-item:nth-child(even) .product-detail-content {
    order: 1;
}

.product-detail-item:nth-child(even) .product-detail-image {
    order: 2;
}

.product-detail-image {
    position: relative;
    background: linear-gradient(135deg, #f8fafc00 0%rgba(226, 232, 240, 0)f0 100%);
    border-radius: 0;
    border: none;
    padding: clamp(3rem, 8vw, 5rem);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: clamp(400px, 50vw, 600px);
    transition: all 0.4s ease;
    overflow: hidden;
    z-index: 1;
    /* Available sizes'tan düşük z-index */
}

.product-detail-image:hover {
    /* transform: translateY(-10px); */
    transform: none;
    /* box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15); */
    box-shadow: none;
}

.product-detail-image img {
    width: clamp(1500px, 150%, 1800px) !important;
    max-width: none !important;
    max-height: clamp(525px, 67.5vw, 825px) !important;
    transform: scale(1.5);
    object-fit: contain;
    filter: none;
    transition: all 0.4s ease;
}

.product-detail-image:hover img {
    transform: scale(1.55);
}

.product-detail-content {
    padding: clamp(1rem, 4vw, 2rem);
}

.product-detail-content h2 {
    font-size: clamp(2.2rem, 6vw, 3.5rem);
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.product-detail-content .product-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    color: #3b82f6;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-detail-content p {
    font-size: clamp(1rem, 2.5vw, 1.1rem);
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 2rem;
}

/* Product Features List */
.product-features {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.product-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(59, 130, 246, 0.1);
    font-size: clamp(0.9rem, 2.5vw, 1rem);
    color: #4a5568;
    transition: all 0.3s ease;
}

.product-features li:hover {
    background: rgba(59, 130, 246, 0.02);
    padding-left: 1rem;
    border-radius: 8px;
}

.product-features li:last-child {
    border-bottom: none;
}

.product-features li::before {
    content: '✓';
    background: linear-gradient(45deg, #10b981, #059669);
    color: white;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

/* Loading animation */
@keyframes iconFloat {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-5px);
    }
}

.category-icon-item:hover .category-icon-container {
    /* Remove hover effects on container */
    transform: none;
    box-shadow: none;
    background: none;
}

/* Available Sizes */
.available-sizes {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(59, 130, 246, 0.1) 100%);
    border-radius: 15px;
    padding: clamp(1.5rem, 4vw, 2rem);
    margin: 2rem 0;
    margin-top: -2rem;
    border: 2px solid rgba(59, 130, 246, 0.2);
    z-index: 20 !important;
}

.available-sizes h4 {
    color: #1d4ed8;
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-align: center;
}

.sizes-grid {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: nowrap;
    /* Hiç alt satıra geçmesin */
    overflow-x: auto;
    /* Taşarsa yatay kaydırma */
    padding-top: 0.5rem;
}

.size-item {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 12px;
    padding: 1rem 0.5rem;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    flex: 1 1 auto;
    /* Eşit genişlik paylaşımı */
    min-width: 170px;
    /* Minimum genişlik */
    max-width: 220px;
    /* Maksimum genişlik */
}

.size-item:hover {
    border-color: #3b82f6;
    background: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.2);
}

.size-item .size-name {
    font-weight: 600;
    color: #2d3748;
    font-size: clamp(0.85rem, 2.2vw, 0.95rem);
    /* Font boyutu küçültüldü */
    margin-bottom: 0.4rem;
}

.size-item .size-volume {
    color: #64748b;
    font-size: clamp(0.75rem, 1.8vw, 0.85rem);
    /* Font boyutu küçültüldü */
}

/* CTA Buttons */
.product-cta-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

.btn-product-quote,
.btn-product-designer {
    padding: clamp(1rem, 3vw, 1.2rem) clamp(2rem, 5vw, 2.5rem);
    border-radius: 12px;
    font-size: clamp(0.9rem, 2.5vw, 1rem);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: none;
}

.btn-product-quote {
    background: linear-gradient(45deg, #3b82f6, #1d4ed8);
    color: white;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.btn-product-quote:hover {
    background: linear-gradient(45deg, #2563eb, #1e40af);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.4);
}

.btn-product-designer {
    background: transparent;
    color: #3b82f6;
    border: 2px solid #3b82f6;
}

.btn-product-designer:hover {
    background: #3b82f6;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .products-header-container {
        gap: 3rem;
    }

    .product-detail-item,
    .product-detail-item:nth-child(even) {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
        margin-top: 0.5rem;
    }

    .product-detail-item:nth-child(even) .product-detail-content,
    .product-detail-item:nth-child(even) .product-detail-image {
        order: unset;
    }
}

@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .hero-content {
        order: 1;
        padding: 1rem;
    }

    .hero-products {
        order: 2;
    }

    .hero-content h1 {
        font-size: clamp(1.8rem, 5vw, 2.5rem);
    }

    .hero-subtitle {
        font-size: clamp(0.8rem, 2vw, 0.9rem);
    }

    .feature-item {
        justify-content: center;
        font-size: clamp(0.8rem, 2vw, 0.9rem);
    }

    .products-page-header {
        padding: clamp(2rem, 6vw, 3rem) clamp(1rem, 4vw, 1.5rem);
        overflow-x: hidden;
    }

    .products-header-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        max-width: 100%;
    }

    .products-header-content {
        order: 1;
        padding: 0 1rem;
    }

    .products-header-image {
        order: 2;
        min-height: 250px;
        padding: 0;
    }

    .products-header-image img {
        max-width: 300px;
        width: 80%;
        height: auto;
    }

    .products-header-content h1 {
        font-size: clamp(1.8rem, 6vw, 2.2rem);
        margin-bottom: 1rem;
        line-height: 1.3;
    }

    .products-header-content p {
        font-size: clamp(0.9rem, 3vw, 1rem);
        margin-bottom: 1.5rem;
        line-height: 1.6;
    }

    .product-main-content {
        grid-template-columns: 1fr;
    }

    .product-detail-content {
        padding: 2rem;
        order: 2;
    }

    .product-detail-image {
        order: 1;
        min-height: 300px;
        max-height: 100px;
        padding: 2rem;
        margin-bottom: -5rem;
    }

    .product-detail-image img {
        max-width: 70%; /* %100'den küçültüldü */
        max-height: 200px; /* 400px'den küçültüldü */
        transform: scale(0.8); /* Görseli %80'e küçült */
    }

        .product-detail-image:hover img {
        transform: scale(0.85) rotate(1deg);
    }
    
    .product-detail-image::before {
        width: 120px;
        height: 120px;
        top: 15%;
        right: 15%;
    }

    .product-detail-content h2 {
        font-size: 2rem;
    }

    .product-detail-content p {
        font-size: 1rem;
    }

    .product-categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
        max-width: 100%;
        margin: 2rem auto 0;
        padding: 0 1rem;
    }

        #bowls-detail .product-main-content {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
        text-align: center;
    }
    
    #bowls-detail .product-detail-image {
        order: 1 !important;
        min-height: 200px;
        padding: 1rem;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 1rem;
    }
    
    /* İçerik altta kalacak */
    #bowls-detail .product-detail-content {
        order: 2 !important;
        padding: 1.5rem;
    }
    
    #bowls-detail .product-detail-image img {
        max-width: 250px;
        width: 80%;
        max-height: 180px;
        transform: none;
        object-fit: contain;
    }
    
    #bowls-detail .product-detail-image:hover img {
        transform: scale(1.05) rotate(1deg);
    }
    
    .category-icon-item {
        padding: 1rem 0.8rem;
        min-height: 100px;
        border-radius: 12px;
    }

    .category-icon-item img {
        width: 35px;
        height: 35px;
        margin-bottom: 0.8rem;
    }

    .category-icon-item h3 {
        font-size: clamp(0.8rem, 3vw, 0.9rem);
        margin: 0;
        line-height: 1.2;
    }

    .category-icon-item span {
        font-size: clamp(0.7rem, 2.5vw, 0.8rem);
        line-height: 1.2;
    }

    .product-cta-buttons {
        flex-direction: column;
    }

    .btn-product-quote,
    .btn-product-designer {
        width: 100%;
        justify-content: center;
    }

    .sizes-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .btn-primary {
        align-items: center;
        text-align: center;
        justify-content: center;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .product-categories-grid {
        grid-template-columns: 1fr;
        max-width: 280px;
        margin: 2rem auto 0;
    }

    .category-icon-item {
        padding: 1.2rem;
        min-height: 100px;
    }

    .category-icon-item img {
        width: 50px;
        height: 50px;
    }

    .category-icon-item h3 {
        font-size: 0.9rem;
    }

    .sizes-grid {
        grid-template-columns: 1fr;
    }

    .product-detail-image {
        min-height: 300px;
        padding: 2rem;
    }
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    transform: translateY(-100%);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2000;
    max-height: calc(100vh - 70px);
    overflow-y: auto;
}

.mobile-nav.active {
    display: block;
    transform: translateY(0);
    opacity: 1;
}

.mobile-nav-container {
    flex: 1;
    padding: 1rem 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    /* Üstten başlasın */
    overflow: hidden;
    /* Scroll olmasın */
}

/* Mobile Nav Items - Daha kompakt */
.mobile-nav-item {
    display: flex !important;
    align-items: center;
    gap: 1rem;
    padding: 0.9rem 1.5rem;
    /* Biraz daha küçük padding */
    color: #2d3748;
    text-decoration: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 0.95rem;
    /* Biraz daha küçük font */
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
    /* Sıkışmasın */
}

.mobile-nav-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.mobile-nav-item:hover::before {
    transform: scaleY(1);
}

.mobile-nav-item:hover {
    background: rgba(102, 126, 234, 0.08);
    color: #3b82f6;
    transform: translateX(8px);
}

/* Navigation Icons */
.nav-icon {
    width: 20px;
    height: 20px;
    stroke-width: 2;
    transition: all 0.3s ease;
}

.mobile-nav-item:hover .nav-icon {
    transform: scale(1.1);
    stroke: #3b82f6;
}

/* Mobile Dropdown */
.mobile-dropdown {
    position: relative;
}

.mobile-dropdown .dropdown-toggle {
    justify-content: space-between;
}

.dropdown-arrow {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
    margin-left: auto;
}

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

/* Mobile Dropdown Menu */
.mobile-dropdown-menu {
    background: rgba(248, 250, 252, 0.98);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    flex-shrink: 0;
}

.mobile-dropdown-menu.active {
    max-height: 300px;
    /* Sabit yükseklik */
    opacity: 1;
    padding: 0.8rem 0;
    /* Daha kompakt */
}

/* Mobile Products Grid - Daha kompakt */
.mobile-products-grid {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    /* Daha küçük gap */
    padding: 0 1rem;
    max-height: 240px;
    /* Maksimum yükseklik */
    overflow-y: auto;
    /* Sadece ürünler scroll olsun */
}

/* Mobile Product Item - Daha küçük */
.mobile-product-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    /* Daha küçük gap */
    padding: 0.8rem;
    /* Daha küçük padding */
    background: white;
    border-radius: 10px;
    /* Daha küçük radius */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    flex-shrink: 0;
}

.mobile-product-icon {
    width: 40px;
    /* 50px'den küçültüldü */
    height: 40px;
    border-radius: 8px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.mobile-product-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: rgba(102, 126, 234, 0.3);
}

.mobile-product-icon img {
    width: 24px;
    /* 32px'den küçültüldü */
    height: 24px;
    object-fit: contain;
}

.mobile-product-info {
    flex: 1;
}

.mobile-product-info h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: #2d3748;
    margin: 0 0 0.25rem 0;
}

.mobile-product-info span {
    font-size: 0.8rem;
    color: #718096;
}

/* Mobile Menu Button Enhancement */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #4a5568;
    transition: all 0.3s ease;
    padding: 0.5rem;
    border-radius: 8px;
}

.mobile-menu-btn:hover {
    background: rgba(102, 126, 234, 0.1);
    color: #3b82f6;
    transform: scale(1.05);
}

/* Animation for menu icon */
.mobile-menu-btn {
    position: relative;
}

.mobile-menu-btn::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 8px;
    background: rgba(102, 126, 234, 0.2);
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s ease;
    z-index: -1;
}

.mobile-menu-btn:active::after {
    opacity: 1;
    transform: scale(1);
}

/* Mobile Navigation Backdrop */
.mobile-nav-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(4px);
    z-index: 1999;
    opacity: 0;
    animation: fadeInBackdrop 0.3s ease forwards;
}

@keyframes fadeInBackdrop {
    to {
        opacity: 1;
    }
}

/* Menu button active state */
.mobile-menu-btn.active {
    color: #3b82f6;
    transform: scale(1.1);
}

/* Page System */
.page {
    display: none;
    min-height: 100vh;
    padding-top: 120px;
    animation: fadeIn 0.5s ease-in-out;
    z-index: 1;
    position: relative;
}

.page.active {
    display: block;
    z-index: 2;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 4vw, 2rem);
}


@media (min-width: 1600px) {
    .logo-container {
        padding-left: 14rem;
    }

    .logo img {
        height: clamp(15rem, 4.5vw, 5.5rem);
        max-width: 290px;
    }
}

@media (max-width: 1599px) and (min-width: 1200px) {
    .logo-container {
        padding-left: 8rem;
    }

    .logo img {
        height: clamp(9rem, 4.5vw, 4rem);
        max-width: 240px;
    }
}

/* Responsive Navigation */
@media (max-width: 1200px) {
    .nav-top-bar {
        padding: 8px 1rem;
    }

    .nav-main {
        padding: 1rem;
    }

    .logo-container {
        padding-left: 4rem;
    }

    .nav-main {
        padding: 1rem 3rem;
    }

    .nav-links {
        gap: 1rem;
    }

    .products-dropdown {
        min-width: 500px;
        padding: 1.5rem;
    }

    .product-dropdown-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 1024px) {
    .nav-top-bar {
        flex-direction: column;
        gap: 0.5rem;
        padding: 8px 1rem;
        text-align: center;
    }

    .nav-contact-info {
        justify-content: center;
        gap: 1rem;
        flex-wrap: wrap;
    }

    .nav-links {
        gap: 1rem;
    }

    .nav-links a {
        font-size: 0.8rem;
    }
}

@media (max-width: 1199px) and (min-width: 1024px) {
    .logo-container {
        padding-left: 3rem;
    }

    .logo img {
        height: clamp(6.8rem, 5vw, 3.5rem);
        max-width: 250px;
    }
}

@media (max-width: 1023px) and (min-width: 769px) {
    .nav-top-bar {
        flex-direction: column;
        gap: 0.5rem;
        padding: 8px 1rem;
        text-align: center;
    }

    .nav-main {
        padding: 1rem 1.5rem;
    }

    .logo-container {
        padding-left: 2.5rem;
    }

    .logo img {
        height: clamp(4.5rem, 5.5vw, 3rem);
        max-width: 180px;
    }

    .nav-links {
        gap: 1rem;
    }

    .nav-links a {
        font-size: 0.8rem;
    }

}

@media (max-width: 768px) {
    nav {
        height: auto;
        min-height: 70px;
        z-index: 2001;
    }

    .nav-container {
        grid-template-rows: auto;
    }

    .nav-top-bar {
        display: none;
    }

    .nav-main {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1rem 1.5rem;
        position: relative;
    }

    .logo-container {
        padding-left: 2rem;
    }

    .logo img {
        height: clamp(2.3rem, 6vw, 2.8rem);
        max-width: 160px;
    }

    .logo {
        font-size: 1.5rem;
    }

    @media (max-width: 768px) {
        .mobile-menu-btn {
            order: 1;
            display: block;
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: #4a5568;
            transition: all 0.3s ease;
            padding: 0.5rem;
            border-radius: 8px;
            flex-shrink: 0;
        }

        .nav-links {
            display: none;
        }

        .mobile-nav {
            top: 70px;
        }
    }

    .mobile-nav.active {
        display: block;
        transform: translateY(0);
        /* Düzgün açılsın */
        opacity: 1;
    }

    .mobile-nav.active::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0, 0, 0, 0.1);
        z-index: -1;
    }

    /* Page content mobilde navbar altından başlasın */
    .page {
        padding-top: 90px;
        /* Nav yüksekliği + margin */
    }
}

@media (max-width: 768px) and (min-width: 481px) {
    .logo-container {
        padding-left: 1.2rem;
        padding-top: 1rem;
    }

    .logo img {
        height: clamp(5.5rem, 9vw, 8.6rem);
        max-width: 300px;
        min-width: 200px;
    }
}

@media (max-width: 480px) and (min-width: 376px) {
    .logo-container {
        padding-left: 1.8rem;
        padding-top: 0.7rem;
    }

    .logo img {
        height: clamp(5rem, 8vw, 2.4rem);
        max-width: 240px;
        min-width: 90px;
    }
}

@media (max-width: 480px) {
    nav {
        min-height: 60px;
        z-index: 2002;
    }

    .nav-main {
        padding: 0.75rem 1rem;
    }

    .logo {
        font-size: 1.3rem;
    }

    .mobile-nav {
        top: 60px;
    }

    .mobile-nav-item {
        padding: 1rem 1.2rem;
        font-size: 0.95rem;
    }

    .nav-icon {
        width: 18px;
        height: 18px;
    }

    .mobile-products-grid {
        padding: 0 0.5rem;
    }

    .mobile-product-item {
        padding: 0.8rem;
    }

    .mobile-product-icon {
        width: 45px;
        height: 45px;
    }

    .mobile-product-icon img {
        width: 28px;
        height: 28px;
    }

    .page {
        padding-top: 80px;
    }

    .mobile-menu-btn {
        font-size: 1.3rem;
        padding: 0.5rem;
    }
}

@media (max-width: 375px) and (min-width: 320px) {
    .logo-container {
        padding-left: 0.4rem;
        padding-top: 0.7rem;
    }

    .logo img {
        height: clamp(3.5rem, 9vw, 2.2rem);
        max-width: 220px;
        min-width: 180px;
    }
}

/* Very Small Mobile - 320px altı */
@media (max-width: 319px) {
    .logo-container {
        padding-left: 0.4rem;
        padding-top: 0.7rem;
    }

    .logo img {
        height: clamp(4rem, 12vw, 6rem);
        max-width: 300px;
        min-width: 170px;
    }
}


/* Section Title */
.section-title {
    text-align: center;
    font-size: clamp(2rem, 5vw, 2.5rem);
    margin-bottom: 3rem;
    color: #2d3748;
    font-weight: 700;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    padding: clamp(2rem, 8vw, 4rem) clamp(1rem, 4vw, 2rem);
    position: relative;
    overflow: hidden;
    min-height: 80vh;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: clamp(2rem, 6vw, 4rem);
}

.hero-content h1 {
    font-size: clamp(2rem, 6vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 2rem;
    color: #2d3748;
    line-height: 1.2;
}

.hero-subtitle {
    color: #A0AEC0;
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: -0.9rem;
    opacity: 0.8;
}

.hero-features {
    margin: 2rem 0 3rem 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: clamp(0.9rem, 2.5vw, 1rem);
    color: #4a5568;
}

.feature-item span {
    color: #4a5568;
    font-size: clamp(1rem, 2.2vw, 1.2rem);
}

.check-icon {
    width: 6px;
    height: 2px;
    background: #2d3748;
    display: none;
    flex-shrink: 0;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.btn-primary {
    background: linear-gradient(45deg, #3b82f6, #1d4ed8);
    color: white;
    border: none;
    padding: clamp(0.8rem, 3vw, 1rem) clamp(1.5rem, 4vw, 2rem);
    border-radius: 6px;
    font-size: clamp(0.9rem, 2.5vw, 1rem);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    align-self: flex-start;
    white-space: nowrap;
}

.btn-primary:hover {
    background: linear-gradient(45deg, #2563eb, #1e40af);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
}

/* Process Steps */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 0.7fr));
    gap: 2rem;
    margin-top: 2rem;
}

.step-item {
    text-align: center;
}

.step-number {
    width: 38px;
    height: 38px;
    background: linear-gradient(45deg, #3b82f6, #1d4ed8);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0 auto 1rem;
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.3);
}

.step-item h4 {
    color: #3b82f6;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: clamp(1rem, 2.3vw, 1.1rem);
}

.step-item p {
    color: #4a5568;
    font-size: clamp(0.8rem, 2vw, 0.9rem);
}

.hero-content .step-item p {
    color: #4a5568;
    font-size: clamp(0.8rem, 2vw, 0.9rem);
}

/* Hero Products */
.hero-products {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.hero-product-single {
    position: relative;
    width: 100%;
    max-width: 800px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: floatSingle 6s ease-in-out infinite;
}

.hero-product-single img {
    width: clamp(650px, 49vw, 950px);
    height: auto;
    max-height: 800px;
    object-fit: contain;
    filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.2));
    transition: all 0.3s ease;
    margin-top: -20%;
}

.hero-product-single:hover img {
    transform: scale(1.05);
    filter: drop-shadow(0 20px 45px rgba(0, 0, 0, 0.3));
}

@keyframes floatSingle {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }
}

/* Product Options Section */
.hero2 {
    background: linear-gradient(135deg, rgba(205, 221, 241, 0.9) 0%, rgba(248, 250, 252, 0.9) 100%);
    padding: clamp(3rem, 8vw, 6rem) clamp(1rem, 4vw, 2rem);
    position: relative;
    overflow: hidden;
}

.hero2-container {
    max-width: 1400px;
    margin: 0 auto;
}

@media (max-width: 1025px) {

    /* 1. Body ve Hero2 overflow kontrol */
    body {
        overflow-x: hidden;
    }

    .hero2 {
        overflow-x: hidden;
        position: relative;
    }

    /* 2. Options content düzeni */
    .hero2 .options-content {
        display: block !important;
        text-align: center;
        padding: 0 1rem;
    }

    /* 3. Text kısmı */
    .hero2 .options-text {
        margin-bottom: 3rem;
    }

    .hero2 .options-text h1 {
        font-size: clamp(1.8rem, 6vw, 3rem);
        margin-bottom: 1.5rem;
    }

    .hero2 .options-text p {
        font-size: clamp(1rem, 3vw, 1.2rem);
        line-height: 1.6;
        margin-bottom: 2rem;
    }

    .hero2 .btn-secondary {
        margin: 0 auto 3rem auto;
        display: block;
        width: fit-content;
    }

    .hero2 .cup-types {
        /* Flexbox sistem */
        display: flex !important;
        flex-direction: row !important;
        gap: 1rem !important;

        /* Tam genişlik kaydırma */
        width: 100vw !important;
        margin: 0 calc(-50vw + 50%) !important;
        padding: 1rem !important;

        /* Kaydırma ayarları */
        overflow-x: auto !important;
        overflow-y: hidden !important;
        scroll-behavior: smooth !important;
        -webkit-overflow-scrolling: touch !important;

        /* Scrollbar gizle */
        scrollbar-width: none !important;
        -ms-overflow-style: none !important;

        /* Box model */
        box-sizing: border-box !important;
    }

    /* Scrollbar gizleme - webkit */
    .hero2 .cup-types::-webkit-scrollbar {
        display: none !important;
    }

    /* 5. KARTLAR - HER BOYUT İÇİN */
    .hero2 .cup-type {
        /* Sabit boyut - küçülmesin */
        flex: 0 0 auto !important;
        width: 180px !important;
        min-width: 180px !important;
        height: 200px !important;

        /* Görünüm */
        background: white !important;
        border-radius: 12px !important;
        padding: 1rem !important;
        margin: 0 !important;

        /* Layout */
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;

        /* Efektler */
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1) !important;
        transition: transform 0.2s ease !important;
        box-sizing: border-box !important;
    }

    /* Hover efekti */
    .hero2 .cup-type:hover {
        transform: translateY(-5px) !important;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15) !important;
    }

    /* Touch feedback */
    .hero2 .cup-type:active {
        transform: scale(0.98) !important;
    }

    /* 6. İÇERİK ELEMANLARI */

    /* Cup visual */
    .hero2 .cup-visual {
        width: 60px !important;
        height: 80px !important;
        margin: 0 auto 1rem auto !important;
        background: #ffffff !important;
        border-radius: 8px !important;
        border: 1px solid #e5e7eb !important;

        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        flex-shrink: 0 !important;
    }

    /* Cup info */
    .hero2 .cup-info h4 {
        font-size: 0.9rem !important;
        font-weight: 600 !important;
        color: #374151 !important;
        margin-bottom: 0.5rem !important;
        line-height: 1.2 !important;
    }

    /* Cup sizes */
    .hero2 .cup-sizes {
        font-size: 0.75rem !important;
        color: #6b7280 !important;
        line-height: 1.3 !important;

        display: flex !important;
        flex-direction: column !important;
        gap: 0.2rem !important;
    }

    /* 7. KAYDIRMA İPUCU */
    .hero2 .cup-types::after {
        content: "👈 Swipe 👉" !important;
        position: fixed !important;
        bottom: 20px !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        background: #3b82f6 !important;
        color: white !important;
        padding: 0.5rem 1rem !important;
        border-radius: 20px !important;
        font-size: 0.8rem !important;
        z-index: 1000 !important;
        animation: fadeInOut 4s ease-in-out infinite !important;
        pointer-events: none !important;
    }

    @keyframes fadeInOut {

        0%,
        20%,
        80%,
        100% {
            opacity: 0;
        }

        40%,
        60% {
            opacity: 1;
        }
    }
}

/* BOYUT BAZLI İNCE AYARLAR */

/* Büyük mobil/tablet (481-1025px) */
@media (min-width: 481px) and (max-width: 1025px) {
    .hero2 .cup-type {
        width: 200px !important;
        min-width: 200px !important;
        height: 220px !important;
    }

    .hero2 .cup-visual {
        width: 70px !important;
        height: 90px !important;
    }

    .hero2 .cup-info h4 {
        font-size: 1rem !important;
    }

    .hero2 .cup-sizes {
        font-size: 0.8rem !important;
    }
}

/* Küçük mobil (320-480px) */
@media (max-width: 480px) {
    .hero2 .cup-type {
        width: 160px !important;
        min-width: 160px !important;
        height: 180px !important;
    }

    .hero2 .cup-visual {
        width: 50px !important;
        height: 65px !important;
    }

    .hero2 .cup-info h4 {
        font-size: 0.85rem !important;
    }

    .hero2 .cup-sizes {
        font-size: 0.7rem !important;
    }
}

/* Çok küçük (320px altı) */
@media (max-width: 320px) {
    .hero2 .cup-type {
        width: 140px !important;
        min-width: 140px !important;
        height: 160px !important;
    }

    .hero2 .cup-visual {
        width: 45px !important;
        height: 60px !important;
    }
}


.options-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 6vw, 4rem);
    align-items: center;
}

.options-text h1 {
    font-size: clamp(2rem, 6vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 2rem;
    background: linear-gradient(45deg, #3b82f6, #1d4ed8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.options-text p {
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: clamp(1rem, 2.5vw, 1.1rem);
}

.btn-secondary {
    background: transparent !important;
    color: #3b82f6 !important;
    border: 2px solid #3b82f6 !important;
    padding: clamp(0.6rem, 2.5vw, 0.8rem) clamp(1.5rem, 4vw, 2rem);
    border-radius: 25px;
    font-size: clamp(0.9rem, 2.5vw, 1rem);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-sizing: border-box;
    /* Border hesabını dahil et */
}

.btn-secondary:hover {
    background: #3b82f6 !important;
    color: white !important;
    border: 2px solid #3b82f6 !important;
    /* Hover'da da border kalsın */
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.options-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.cup-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(200px, 100%), 1fr));
    gap: 2rem;
    width: 100%;
    box-sizing: border-box;
}

.cup-type {
    text-align: center;
    background: white;
    padding: clamp(1rem, 3vw, 20px);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.cup-type:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.cup-visual {
    width: clamp(80px, 20vw, 120px);
    height: clamp(100px, 25vw, 140px);
    margin: 0 auto 1.5rem;
    position: relative;
    background: #ffffff;
    border-radius: 10px;
}

.cup-shape img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: clamp(60px, 25vw, 320px);
    height: auto;
    object-fit: contain;
}

.cup-shape2 img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: clamp(60px, 25vw, 350px);
    height: auto;
    object-fit: contain;
}

.cup-shape3 img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: clamp(60px, 25vw, 250px);
    height: auto;
    object-fit: contain;
}

.cup-info h4 {
    color: #2d3748;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: clamp(0.9rem, 2.5vw, 1rem);
}

.cup-sizes {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    font-size: clamp(0.8rem, 2vw, 0.9rem);
    color: #4a5568;
}

.cup-sizes small {
    color: #718096;
}

/* Create Product and Delivery Section */
.create-delivery-section {
    background: rgba(255, 255, 255, 0.8);
    padding: clamp(2rem, 6vw, 4rem) 0;
}

.section-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 1400px;
    margin: 0 auto;
    gap: 2rem;
}

.create-product-half,
.delivery-half {
    background: linear-gradient(135deg, rgba(248, 250, 252, 0.9) 0%, rgba(184, 212, 248, 0.9) 100%);
    padding: clamp(2rem, 6vw, 4rem) clamp(1rem, 4vw, 2rem);
    text-align: center;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    margin: 1rem;
}

.delivery-half {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(5, 150, 105, 0.1) 100%);
}

.hero-content h1 {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, #3b82f6, #1d4ed8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.hero-content p {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    color: #64748b;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.btn {
    padding: clamp(0.8rem, 2.5vw, 1rem) clamp(1.5rem, 4vw, 2rem);
    border: none;
    border-radius: 12px;
    font-size: clamp(0.9rem, 2.5vw, 1.1rem);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.delivery-content {
    max-width: 500px;
    margin: 0 auto;
}

.delivery-content h1 {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 2rem;
    color: #2d3748;
    text-align: center;
}

.delivery-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.delivery-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.delivery-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.delivery-icon {
    font-size: clamp(1.5rem, 4vw, 2rem);
    flex-shrink: 0;
}

.delivery-feature h3 {
    color: #2d3748;
    font-weight: 600;
    margin-left: 0;
    font-size: clamp(1rem, 2.5vw, 1.1rem);
    text-align: left;
}


.delivery-feature p {
    color: #64748b;
    font-size: clamp(0.8rem, 2vw, 0.9rem);
    line-height: 1.5;
}

/* Hero Images */
.hero-images {
    position: absolute;
    top: 0;
    right: -5%;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.hero-product-image {
    position: absolute;
    animation: heroFloat 8s ease-in-out infinite;
}

.hero-product-image:first-child {
    top: 10%;
    right: 5%;
}

@keyframes heroFloat {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.8;
    }

    50% {
        transform: translateY(-20px) rotate(2deg);
        opacity: 1;
    }
}

/* Features Section - Why Us */
.features {
    padding: clamp(3rem, 8vw, 6rem) clamp(1rem, 4vw, 2rem);
    background: rgba(255, 255, 255, 0.8);
}

.features-grid-new {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card-new {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: clamp(1.5rem, 4vw, 2rem);
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(59, 130, 246, 0.1);
}

.feature-card-new:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-color: rgba(59, 130, 246, 0.3);
}

.feature-icon-new {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.icon-wrapper-red {
    width: clamp(60px, 15vw, 80px);
    height: clamp(60px, 15vw, 80px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.3s ease;
    border: 2px solid #3b82f6;
    background: rgba(59, 130, 246, 0.05);
}

.feature-card-new:hover .icon-wrapper-red {
    background: rgba(59, 130, 246, 0.1);
    transform: scale(1.1) rotate(5deg);
}

.icon-wrapper-red svg {
    width: clamp(24px, 6vw, 32px);
    height: clamp(24px, 6vw, 32px);
    color: #3b82f6;
}

.feature-card-new h3 {
    color: #2d3748;
    margin-bottom: 1rem;
    font-weight: 600;
    font-size: clamp(1.1rem, 3vw, 1.3rem);
}

.feature-card-new p {
    color: #64748b;
    line-height: 1.6;
    font-size: clamp(0.9rem, 2.5vw, 1rem);
}

/* Statistics and Brands Section */
/* Updated Compact Statistics Section */
.stats-brands-section {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(59, 130, 246, 0.1) 100%);
    padding: clamp(3rem, 8vw, 4rem) clamp(1rem, 4vw, 2rem);
}

.statistics-section-compact {
    margin-bottom: 0;
}

.stats-content-compact {
    display: grid;
    grid-template-columns: 1.8fr 1fr;
    gap: clamp(2rem, 6vw, 3rem);
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.stats-image-compact {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    width: 100%;
}

.stats-image-compact img {
    width: 100%;
    height: clamp(300px, 40vw, 380px);
    object-fit: cover;
    border-radius: 15px;
    display: block;
}

.stats-grid-compact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 1rem;
    width: 100%;
    height: clamp(300px, 40vw, 380px);
}

.stat-card-compact {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: white;
    padding: clamp(1rem, 2.5vw, 1.5rem);
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.stat-card-compact:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(59, 130, 246, 0.4);
}

.stat-card-compact .stat-number {
    font-size: clamp(1.6rem, 4.5vw, 2.2rem);
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.4rem;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

.stat-card-compact .stat-label {
    font-size: clamp(0.65rem, 1.8vw, 0.8rem);
    opacity: 0.95;
    line-height: 1.2;
    font-weight: 500;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    text-align: center;
    max-width: 100%;
    word-wrap: break-word;
}

/* Responsive Design for Stats */
@media (max-width: 1024px) {
    .stats-content-compact {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .stats-grid-compact {
        height: auto;
        min-height: 260px;
    }

    .stats-image-compact {
        order: 1;
    }

    .stats-grid-compact {
        order: 2;
    }
}

@media (max-width: 768px) {
    .stats-grid-compact {
        gap: 0.75rem;
        min-height: 220px;
    }

    .stat-card-compact {
        padding: 0.9rem;
        min-height: 100px;
    }

    .stat-card-compact .stat-number {
        font-size: 1.4rem;
        margin-bottom: 0.3rem;
    }

    .stat-card-compact .stat-label {
        font-size: 0.6rem;
        line-height: 1.1;
    }
}

@media (max-width: 480px) {
    .stats-content-compact {
        gap: 1.5rem;
    }

    .stats-grid-compact {
        gap: 0.5rem;
        min-height: 180px;
    }

    .stat-card-compact {
        padding: 0.7rem;
        min-height: 85px;
    }

    .stat-card-compact .stat-number {
        font-size: 1.2rem;
        margin-bottom: 0.2rem;
    }

    .stat-card-compact .stat-label {
        font-size: 0.55rem;
        line-height: 1.0;
    }

    .stats-image-compact img {
        height: 220px;
    }
}

/* Separate Brands Section */
.brands-section-separate {
    background: white;
    padding: clamp(3rem, 8vw, 4rem) clamp(1rem, 4vw, 2rem);
    text-align: center;
    border-top: 1px solid #e2e8f0;
}

.brands-title-featured {
    font-size: clamp(1.5rem, 4vw, 2rem);
    color: #2d3748;
    margin-bottom: clamp(2rem, 6vw, 3rem);
    font-weight: 700;
    position: relative;
}

.brands-title-featured::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(45deg, #3b82f6, #2563eb);
    border-radius: 2px;
}

.brands-grid-featured {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: clamp(2rem, 6vw, 4rem);
    flex-wrap: wrap;
    max-width: 800px;
    margin: 0 auto;
}

.brand-logo-featured {
    transition: all 0.3s ease;
    opacity: 0.7;
    padding: 0.5rem;
}

.brand-logo-featured:hover {
    opacity: 1;
    transform: translateY(-3px) scale(1.05);
}

.brand-logo-featured img {
    height: clamp(35px, 8vw, 50px);
    filter: grayscale(1);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.brand-logo-featured:hover img {
    filter: grayscale(0);
    opacity: 1;
}

/* Simple Cup Pattern Strip */
.cup-pattern-strip-simple {
    height: 80px;
    width: 100%;
    position: relative;
    border-top: 2px solid rgba(255, 255, 255, 0.1);
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.cup-pattern-strip-simple::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../images/before-footer.png');
    background-repeat: repeat-x;
    background-size: auto 100%;
    background-position: center;
    opacity: 0.8;
    animation: slidePattern 25s linear infinite;
}

@keyframes slidePattern {
    0% {
        background-position-x: 0;
    }

    100% {
        background-position-x: -1200px;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .cup-pattern-strip-simple {
        height: 60px;
    }

    .cup-pattern-strip-simple::before {
        background-size: auto 80%;
    }
}

@media (max-width: 480px) {
    .cup-pattern-strip-simple {
        height: 50px;
    }

    .cup-pattern-strip-simple::before {
        background-size: auto 70%;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .stats-content-compact {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .brands-grid-featured {
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .stat-row {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .stats-grid-compact {
        gap: 0.75rem;
    }

    .stat-card-compact {
        padding: 1rem;
    }

    .brands-grid-featured {
        gap: 1rem;
        justify-content: center;
    }

    .brand-logo-featured {
        flex: 0 0 auto;
    }
}

@media (max-width: 480px) {
    .stats-content-compact {
        gap: 1.5rem;
    }

    .stat-card-compact {
        padding: 0.8rem;
    }

    .stat-card-compact .stat-number {
        font-size: 1.5rem;
    }

    .stat-card-compact .stat-label {
        font-size: 0.65rem;
    }

    .brands-grid-featured {
        gap: 0.75rem;
    }

    .brand-logo-featured img {
        height: 30px;
    }
}


.brands-section {
    text-align: center;
}

.brands-title {
    font-size: clamp(1.3rem, 3vw, 1.5rem);
    color: #4a5568;
    margin-bottom: 2rem;
    font-weight: 600;
}

.brands-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: clamp(1.5rem, 4vw, 3rem);
    flex-wrap: wrap;
}

.brand-logo {
    transition: all 0.3s ease;
    opacity: 0.6;
}

.brand-logo:hover {
    opacity: 1;
    transform: translateY(-5px);
}

.brand-logo img {
    height: clamp(30px, 8vw, 40px);
    filter: grayscale(1);
    opacity: 0.6;
}

/* Responsive Adjustments for Mobile */
@media (max-width: 1024px) {

    .hero-container,
    .options-content,
    .stats-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .features-grid-new {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .section-split {
        grid-template-columns: 1fr;
    }

    .cup-types {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
    }

    .create-product-half {
        height: 28rem;
        width: auto;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 3rem 1rem;
        min-height: 60vh;
    }

    .hero2 {
        padding: 3rem 1rem;
    }

    .features {
        padding: 3rem 1rem;
    }

    .features-grid-new {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .stats-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .brands-grid {
        gap: 1.5rem;
    }

    /* Delivery features container - flex yönünü sütundan satıra değiştir */
    .delivery-features {
        gap: 1rem;
        display: flex;
        flex-direction: column;
    }

    /* Her bir delivery feature öğesi */
    .delivery-feature {
        padding: 1rem;

        /* Flex yönünü column yerine row yap - ikon ve yazı yan yana olsun */
        flex-direction: row !important;

        /* Text alignment'ı center'dan left'e değiştir */
        text-align: left !important;

        /* İkon ve yazı arası boşluk */
        gap: 1rem;

        /* İkon ve yazı arasındaki hizalamayı üstten başlat */
        align-items: flex-start;
    }

    /* Delivery icon - boyutunu küçült ve flex-shrink ile küçülmesini engelle */
    .delivery-icon {
        font-size: 1.5rem;
        flex-shrink: 0;
        /* İkonun küçülmesini engelle */
        width: auto;
        height: auto;
        min-width: 2rem;
        /* Minimum genişlik ver */
    }

    /* Delivery info - yazıların bulunduğu alan */
    .delivery-info {
        flex: 1;
        /* Kalan alanı kapla */
    }

    /* Başlık hizalaması */
    .delivery-info h3 {
        text-align: left;
        margin-left: 0rem;
        margin-bottom: 0.25rem;
        font-size: 1rem;
        line-height: 1.3;
    }

    /* Alt metin hizalaması */
    .delivery-info p {
        text-align: left;
        margin: 0;
        font-size: 0.85rem;
        line-height: 1.4;
        color: #6b7280;
    }

    .process-steps {
        grid-template-columns: repeat(2, 1fr);
        /* 2 kolon yan yana */
        gap: 1rem;
        margin-top: 1.5rem;
        justify-items: center;
        /* Ortala */
    }

    .step-item {
        max-width: 140px;
        /* Maksimum genişlik */
    }

    .step-number {
        width: 32px;
        height: 32px;
        font-size: 1rem;
        margin: 0 auto 0.8rem;
    }

    .step-item h4 {
        font-size: 0.9rem;
        margin-bottom: 0.4rem;
    }

    .step-item p {
        font-size: 0.8rem;
        line-height: 1.3;
    }

    .hero-products {
        height: 300px;
        padding: 1rem;
    }

    .hero-product-single {
        max-width: 100%;
    }

    .hero-product-single img {
        width: clamp(250px, 80vw, 400px);
        max-height: 450px;
        margin-top: 0;
    }
}

@media (max-width: 480px) {
    .hero-products {
        height: 200px;
        padding: 0.5rem;
    }

    .hero-product-single img {
        width: clamp(200px, 50vw, 300px);
        max-height: 180px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        padding: 2rem 1rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .brands-grid {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .process-steps {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 280px;
        margin: 1.5rem auto 0;
    }

    .step-item {
        max-width: 100%;
    }
}

/* ===============================
   PART 3: DESIGNER & PRODUCT PAGES
   =============================== */

.options-visual-new {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.product-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    width: 100%;
    max-width: 1000px;
}

.product-card-large {
    background: rgba(255, 255, 255, 0);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: clamp(1.5rem, 4vw, 2.5rem);
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0);
    transition: all 0.3s ease;
    border: 1px solid rgba(59, 131, 246, 0);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    min-height: 350px;
}

.product-card-large:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-color: rgba(59, 130, 246, 0.3);
}

.product-image-large {
    width: clamp(120px, 30vw, 160px);
    height: clamp(140px, 35vw, 180px);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    background: transparent;
    border-radius: 15px;
    padding: 1rem;
    transition: all 0.3s ease;
}

.product-image-large2 {
    width: clamp(120px, 30vw, 160px);
    height: clamp(140px, 35vw, 180px);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    background: transparent;
    border-radius: 15px;
    padding: 1rem;
    transition: all 0.3s ease;
}

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

.product-image-large img {
    width: 250%;
    height: 250%;
    object-fit: contain;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.1));
    transition: all 0.3s ease;
}

.product-image-large2 img {
    width: 175%;
    height: 175%;
    object-fit: contain;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.1));
    transition: all 0.3s ease;
}

.product-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    width: 100%;
}

.product-content h3 {
    color: #2d3748;
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: clamp(1.2rem, 3vw, 1.4rem);
    text-align: center;
}

.product-sizes {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    font-size: clamp(0.9rem, 2.5vw, 1rem);
    color: #4a5568;
    text-align: center;
}

.product-sizes span {
    padding: 0.25rem 0;
    font-weight: 500;
}

.product-sizes small {
    color: #718096;
    margin-left: 0.25rem;
}

.find-out-btn {
    background: linear-gradient(45deg, #3b82f6, #1d4ed8);
    color: white;
    border: none;
    padding: clamp(0.8rem, 2.5vw, 1rem) clamp(1.5rem, 4vw, 2rem);
    border-radius: 25px;
    font-size: clamp(0.9rem, 2.5vw, 1rem);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
    margin-top: auto;
}

.find-out-btn:hover {
    background: linear-gradient(45deg, #2563eb, #1e40af);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

.find-out-btn:active {
    transform: translateY(0);
}

/* Products Page */
.products-header {
    padding: clamp(2rem, 6vw, 4rem) clamp(1rem, 4vw, 2rem) 2rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(248, 250, 252, 0.9) 0%, rgba(226, 232, 240, 0.9) 100%);
}

.products-header h1 {
    font-size: clamp(1.5rem, 5vw, 3rem);
    font-weight: 650;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #3b82f6, #1d4ed8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.products-header p {
    font-size: clamp(0.8rem, 2vw, 1rem);
    color: #64748b;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.6;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.product-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(59, 130, 246, 0.1);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-color: rgba(59, 130, 246, 0.3);
}

.product-image {
    height: 200px;
    background: linear-gradient(45deg, #e2e8f0, #cbd5e1);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.product-info {
    padding: 1.5rem;
}

.product-title {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #2d3748;
}

.product-description {
    color: #64748b;
    margin-bottom: 1rem;
    line-height: 1.5;
    font-size: clamp(0.9rem, 2vw, 1rem);
}

.product-price {
    font-size: clamp(1.1rem, 2.5vw, 1.2rem);
    font-weight: 700;
    color: #3b82f6;
}

/* Enhanced 3D Product Designer */
.designer-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    min-height: calc(100vh - 200px);
}

/* Design Panel */
.design-panel {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border-radius: 15px;
    padding: clamp(1.5rem, 4vw, 2rem);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.1);
    height: fit-content;
}

.design-controls h3 {
    color: #2d3748;
    font-size: clamp(1.2rem, 3vw, 1.4rem);
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-align: center;
    border-bottom: 2px solid rgba(59, 130, 246, 0.1);
    padding-bottom: 1rem;
}

/* Preview Section */
.preview-section {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border-radius: 15px;
    padding: clamp(1.5rem, 4vw, 2rem);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.1);
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.preview-section h3 {
    color: #2d3748;
    font-size: clamp(1.2rem, 3vw, 1.4rem);
    font-weight: 600;
    margin: 0;
    border-bottom: 2px solid rgba(59, 130, 246, 0.1);
    padding-bottom: 1rem;
}

/* Upload Area */
.upload-area {
    border: 3px dashed #cbd5e1;
    border-radius: 15px;
    padding: clamp(2rem, 6vw, 4rem) clamp(1.5rem, 4vw, 3rem);
    text-align: center;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    background: linear-gradient(135deg, rgba(248, 250, 252, 0.8) 0%, rgba(241, 245, 249, 0.8) 100%);
    min-height: clamp(100px, 25vw, 170px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.upload-area:hover {
    border-color: #3b82f6;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(59, 130, 246, 0.1) 100%);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.2);
}

.upload-area.drag-over {
    border-color: #3b82f6;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(59, 130, 246, 0.15) 100%);
    border-style: solid;
    transform: scale(1.02);
}

.upload-icon {
    font-size: clamp(2rem, 6vw, 3rem);
    color: #3b82f6;
    margin-bottom: 1rem;
    animation: uploadFloat 3s ease-in-out infinite;
}

@keyframes uploadFloat {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-5px);
    }
}

.upload-text {
    color: #4a5568;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.upload-text strong {
    color: #2d3748;
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    display: block;
    margin-bottom: 0.5rem;
}

.upload-btn {
    background: linear-gradient(45deg, #3b82f6, #1d4ed8);
    color: white;
    border: none;
    padding: clamp(0.8rem, 2.5vw, 1.2rem) clamp(2rem, 4vw, 3rem);
    border-radius: 25px;
    cursor: pointer;
    font-size: clamp(0.9rem, 2.5vw, 1.1rem);
    font-weight: 600;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.upload-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
    background: linear-gradient(45deg, #2563eb, #1e40af);
}

.upload-formats {
    font-size: clamp(0.8rem, 2vw, 0.9rem);
    color: #6b7280;
    line-height: 1.4;
    background: rgba(255, 255, 255, 0.7);
    padding: 0.75rem 1rem;
    border-radius: 8px;
    border: 1px solid rgba(59, 130, 246, 0.1);
}

.file-input {
    display: none;
}

/* Crop Section */
.crop-section {
    display: none;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: clamp(2rem, 5vw, 3rem);
    margin: 2rem 0;
    border: 2px solid rgba(59, 130, 246, 0.15);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.crop-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
            rgba(59, 130, 246, 0.02) 0%,
            rgba(99, 102, 241, 0.02) 50%,
            rgba(168, 85, 247, 0.02) 100%);
    z-index: -1;
    border-radius: 18px;
}

.crop-section.active {
    animation: cropSectionSlideIn 0.5s ease-out;
}

@keyframes cropSectionSlideIn {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.crop-section h4 {
    color: #1d4ed8;
    font-size: clamp(1.3rem, 3.5vw, 1.6rem);
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: linear-gradient(45deg, #3b82f6, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.crop-section h4::before {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -3rem;
    font-size: 2rem;
    filter: none;
    -webkit-text-fill-color: initial;
}

.crop-section h4::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(45deg, #3b82f6, #8b5cf6);
    border-radius: 2px;
}

.crop-container {
    width: 100%;
    height: clamp(450px, 65vh, 650px);
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border: 3px solid rgba(59, 130, 246, 0.2);
    border-radius: 20px;
    margin-bottom: 2rem;
    overflow: hidden;
    position: relative;
    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.1),
        inset 0 2px 0 rgba(255, 255, 255, 0.5);
}

.crop-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(59, 130, 246, 0.03) 0%, transparent 70%),
        radial-gradient(circle at 80% 50%, rgba(168, 85, 247, 0.03) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

#cropImage {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: relative;
    z-index: 2;
}

.crop-controls {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(59, 130, 246, 0.2);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.simple-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(248, 250, 252, 0.8);
    border-radius: 12px;
    border: 1px solid rgba(59, 130, 246, 0.1);
}

.main-controls {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    align-items: start;
}

.control-group-inline {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 12px;
    border: 1px solid rgba(59, 130, 246, 0.1);
}

.control-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #374151;
    text-align: center;
    margin-bottom: 0.5rem;
}

.control-btn.rotate:hover {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.control-btn.center:hover {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.control-btn.reset:hover {
    background: linear-gradient(135deg, #6b7280 0%, #4b5563 100%);
}


.crop-btn {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    color: #374151;
    border: 2px solid rgba(59, 130, 246, 0.2);
    padding: 1rem;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.crop-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

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

.mouse-info {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(99, 102, 241, 0.05) 100%);
    padding: 1rem;
    border-radius: 12px;
    border: 1px solid rgba(59, 130, 246, 0.1);
    font-size: 0.9rem;
    color: #374151;
    text-align: center;
}

.info-item {
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.info-item:first-child {
    font-weight: 600;
    color: #1d4ed8;
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.info-item:last-child {
    margin-bottom: 0;
}

.cropper-container {
    border-radius: 16px;
    overflow: hidden;
}

.cropper-view-box {
    outline: 3px solid rgba(59, 130, 246, 0.8);
    outline-offset: -3px;
}

.cropper-dashed {
    border-color: rgba(59, 130, 246, 0.6);
    opacity: 0.7;
}

.cropper-center {
    background-color: rgba(59, 130, 246, 0.9);
    width: 24px;
    height: 24px;
    margin-top: -12px;
    margin-left: -12px;
    border-radius: 50%;
}

.cropper-center::before,
.cropper-center::after {
    background-color: rgba(59, 130, 246, 0.9);
}

.cropper-point {
    background-color: rgba(59, 130, 246, 0.9);
    border-radius: 50%;
    width: 8px;
    height: 8px;
}

.cropper-line {
    background-color: rgba(59, 130, 246, 0.7);
}

.cropper-face {
    background-color: rgba(255, 255, 255, 0.1);
}

.cropper-modal {
    background-color: rgba(0, 0, 0, 0.6);
}

.cropper-tooltip {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 1rem;
    border-radius: 8px;
    font-size: 0.8rem;
    z-index: 10;
    max-width: 200px;
    animation: tooltipFadeIn 0.3s ease;
}

@keyframes tooltipFadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tooltip-content {
    line-height: 1.4;
}

.main-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(248, 250, 252, 0.8);
    border-radius: 15px;
    border: 1px solid rgba(59, 130, 246, 0.1);
    flex-wrap: wrap;
}

.apply-btn {
    background: linear-gradient(45deg, #10b981, #059669);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    width: 100%;
}

.apply-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(16, 185, 129, 0.3);
}

/* Content Wrapper - Modified About Content Style */
.shipping-content-wrapper {
    background: #ffffff;
    padding: 3rem 0;
}

.shipping-content {
    max-width: 1000px;
    /* Daha geniş - about us'da 800px */
    margin: 0 auto;
    padding: 4rem 3rem;
    /* Daha geniş padding */
    background: #ffffff;
    border-radius: 4px;
    /* Daha köşeli - about us'da 20px */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    /* Daha keskin gölge */
    border: 1px solid #e5e7eb;
    /* Köşeli görünüm için border */
}

.shipping-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: #374151;
    margin-bottom: 1.5rem;
    text-align: justify;
}

/* Delivery Options */
.delivery-options-list {
    margin: 2rem 0;
}

.delivery-option-item {
    margin-bottom: 1.5rem;
}

.delivery-option-item h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2d3748;
    margin: 0 0 0.3rem 0;
}

.delivery-option-item p {
    font-size: 1rem;
    color: #6b7280;
    margin: 0;
    text-align: left;
}

/* Shipping Features with Arrows */
.shipping-features {
    margin: 2rem 0 3rem 0;
}

.shipping-feature {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.5;
}

.feature-arrow {
    color: #2563eb;
    font-size: 0.8rem;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.shipping-feature span:last-child {
    color: #374151;
}

/* Shipping Partners */
.shipping-partners {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e5e7eb;
}

.partner-logo {
    height: 50px;
    width: auto;
    opacity: 0.7;
    filter: grayscale(50%);
    transition: all 0.3s ease;
}

.partner-logo:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 768px) {
    .shipping-content {
        max-width: 95%;
        padding: 2.5rem 2rem;
        border-radius: 2px;
    }

    .shipping-partners {
        flex-direction: column;
        gap: 2rem;
    }

    .partner-logo {
        height: 40px;
    }
}

@media (max-width: 480px) {
    .shipping-content {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }

    .shipping-feature {
        flex-direction: column;
        gap: 0.3rem;
    }

    .feature-arrow {
        margin-top: 0;
    }
}

/* Control Groups */
.control-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 0.9rem;
    padding: 0.3rem;
    padding-left: 1rem;
    padding-right: 1rem;
    padding-top: 1rem;
    background: linear-gradient(135deg, rgba(248, 250, 252, 0.8) 0%, rgba(241, 245, 249, 0.8) 100%);
    border-radius: 12px;
    border: 1px solid rgba(59, 130, 246, 0.1);
    transition: all 0.3s ease;
}

.control-group:hover {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.08) 0%, rgba(59, 130, 246, 0.12) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.1);
}

.control-group label {
    font-weight: 700;
    color: #2d3748;
    font-size: clamp(0.9rem, 2.5vw, 1rem);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.control-group input,
.control-group select {
    padding: 0.875rem 1rem;
    border: 2px solid rgba(59, 130, 246, 0.2);
    border-radius: 10px;
    font-size: clamp(0.9rem, 2.5vw, 1rem);
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
    color: #2d3748;
    font-weight: 500;
}

.control-group input:focus,
.control-group select:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.2);
    transform: translateY(-1px);
    background: white;
}

.price-display {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(59, 130, 246, 0.15) 100%) !important;
    border: 2px solid #3b82f6 !important;
    color: #1d4ed8 !important;
    font-weight: 700 !important;
    font-size: clamp(1.1rem, 2.5vw, 1.2rem) !important;
    text-align: center;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.2) !important;
}

.help-text {
    color: #64748b;
    font-size: clamp(0.7rem, 2vw, 0.8rem);
    margin-top: 0.25rem;
    line-height: 1.4;
}

.btn-large {
    padding: clamp(1rem, 3vw, 1.25rem) clamp(1.5rem, 4vw, 2rem) !important;
    font-size: clamp(1rem, 2.5vw, 1.1rem) !important;
    font-weight: 700 !important;
    width: 100%;
    margin-top: 2rem;
    border-radius: 12px !important;
    background: linear-gradient(45deg, #10b981, #059669) !important;
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-large:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.4) !important;
}

/* Canvas Container */
.canvas-container {
    background: #CCCCCC;
    border-radius: 15px;
    padding: 1rem;
    margin-bottom: 1.5rem;
    min-height: clamp(300px, 60vw, 500px);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(59, 130, 246, 0.1);
    box-shadow: inset 0 1px 5px rgba(0, 0, 0, 0.05);
}

#threejs-canvas {
    max-width: 100%;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    background: rgba(255, 255, 255, 0.05);
    width: clamp(250px, 90%, 500px);
    height: clamp(250px, 90%, 500px);
}

.canvas-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 10;
}

/* Loading Animation */
.loading {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
}

.loading.active {
    display: flex;
}

.loading-spinner {
    width: clamp(30px, 8vw, 50px);
    height: clamp(30px, 8vw, 50px);
    border: 4px solid rgba(59, 130, 246, 0.2);
    border-top: 4px solid #3b82f6;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 1.5rem;
}

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

    100% {
        transform: rotate(360deg);
    }
}

.loading div {
    color: #3b82f6;
    font-weight: 600;
    font-size: clamp(1rem, 2.5vw, 1.1rem);
}

/* 3D Controls */
.controls {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.control-btn {
    background: linear-gradient(45deg, #3b82f6, #2563eb);
    color: white;
    border: none;
    padding: clamp(0.6rem, 2vw, 0.75rem) clamp(1rem, 3vw, 1.25rem);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: clamp(0.8rem, 2vw, 0.9rem);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
    white-space: nowrap;
}

.control-btn:hover {
    background: linear-gradient(45deg, #2563eb, #1d4ed8);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.4);
}

/* Product Templates */
.product-templates {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.product-template {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border: 2px solid transparent;
    border-radius: 12px;
    padding: clamp(0.8rem, 2.5vw, 1rem) clamp(0.4rem, 1.5vw, 0.5rem);
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.product-template:hover {
    border-color: #3b82f6;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(59, 130, 246, 0.1) 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.2);
}

.product-template.active {
    border-color: #3b82f6;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(59, 130, 246, 0.15) 100%);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
    transform: translateY(-2px);
}

.template-icon {
    font-size: clamp(1.5rem, 4vw, 2rem);
    margin-bottom: 0.5rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    transition: all 0.3s ease;
}

.product-template:hover .template-icon {
    transform: scale(1.2) rotate(5deg);
}

.template-name {
    font-size: clamp(0.8rem, 2vw, 0.9rem);
    font-weight: 600;
    color: #374151;
    line-height: 1.2;
}

/* Size Options */
.size-options {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.size-btn {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border: 2px solid transparent;
    border-radius: 10px;
    padding: clamp(0.6rem, 2vw, 0.75rem) clamp(1rem, 3vw, 1.25rem);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: clamp(0.8rem, 2vw, 0.9rem);
    font-weight: 600;
    min-width: clamp(50px, 15vw, 70px);
    position: relative;
    overflow: hidden;
}

.size-btn:hover {
    border-color: #3b82f6;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(59, 130, 246, 0.1) 100%);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.2);
}

.size-btn.active {
    border-color: #3b82f6;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15) 0%, rgba(59, 130, 246, 0.2) 100%);
    color: #1d4ed8;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

/* Cup Preview Container */
.cup-preview-container {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 250, 252, 0.9) 100%);
    border: 2px solid rgba(59, 130, 246, 0.2);
    border-radius: 15px;
    padding: clamp(1.5rem, 4vw, 2rem);
    margin-bottom: 2rem;
    display: none;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.cup-preview-container.active {
    display: block;
    animation: slideInUp 0.4s ease;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cup-preview-container h4 {
    color: #2d3748;
    margin-bottom: 1.5rem;
    font-weight: 600;
    text-align: center;
    font-size: clamp(1.1rem, 2.5vw, 1.2rem);
    border-bottom: 2px solid rgba(59, 130, 246, 0.1);
    padding-bottom: 0.75rem;
}

.cup-canvas-wrapper {
    display: flex;
    justify-content: center;
    background: #CCCCCC;
    border-radius: 10px;
    padding: 1rem;
    margin-bottom: 1.5rem;
    box-shadow: inset 0 1px 5px rgba(0, 0, 0, 0.05);
    border: 2px solid rgba(59, 130, 246, 0.1);
}

.cup-canvas {
    border-radius: 8px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cup-info {
    text-align: center;
    font-size: clamp(0.9rem, 2vw, 0.95rem);
    color: #6b7280;
    background: rgba(59, 130, 246, 0.05);
    padding: 0.75rem;
    border-radius: 8px;
}

/* Design Tips */
.design-tips {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(59, 130, 246, 0.1) 100%);
    border: 2px solid rgba(59, 130, 246, 0.2);
    border-radius: 15px;
    padding: clamp(1.5rem, 4vw, 2rem);
    margin-top: 0.1rem;
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.1);
}

.design-tips h4 {
    color: #1d4ed8;
    margin-bottom: 1rem;
    font-weight: 700;
    font-size: clamp(1rem, 2.5vw, 1.1rem);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.design-tips h4::before {
    font-size: 1.2rem;
}

.design-tips ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.design-tips li {
    padding: 1rem;
    border-bottom: 1px solid rgba(59, 130, 246, 0.1);
    color: #4a5568;
    font-size: clamp(0.9rem, 2vw, 0.95rem);
    line-height: 1.5;
    position: relative;
    padding-left: 3rem;
    background: rgba(255, 255, 255, 0.5);
    margin-bottom: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.design-tips li:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: translateX(5px);
}

.design-tips li:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.design-tips li::before {
    position: absolute;
    left: 1rem;
    font-size: 1rem;
    top: 1rem;
}

/* Order Summary Animation */
#orderSummarySection {
    transition: all 0.3s ease;
}

#orderSummarySection:hover {
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.15);
}

/* Summary değerleri için animasyon */
#summaryProduct,
#summarySize,
#summaryDesign,
#summaryQuantity,
#summaryPrice {
    transition: all 0.3s ease;
}

/* Design preview animasyonu */
#summaryDesignPreview {
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Remove button hover */
#removeDesignBtn:hover {
    background: #dc2626 !important;
    transform: scale(1.05);
    transition: all 0.2s ease;
}

/* Price highlight animation */
#summaryPrice {
    animation: priceUpdate 0.5s ease when updated;
}

@keyframes priceUpdate {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
        color: #059669;
    }

    100% {
        transform: scale(1);
    }
}

/* Responsive design for order summary */
@media (max-width: 768px) {
    #orderSummarySection div[style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
        gap: 0.5rem !important;
    }

    #summaryDesignImage {
        max-height: 80px !important;
    }
}

/* Error Message */
.error-message {
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
    color: #dc2626;
    border: 2px solid #fecaca;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    margin: 1rem 0;
    display: none;
    font-size: clamp(0.9rem, 2vw, 0.95rem);
    font-weight: 500;
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.1);
    position: relative;
}

.error-message::before {
    content: '⚠️';
    margin-right: 0.5rem;
}

/* Design Applied Animation */
.canvas-container.design-applied {
    animation: designAppliedPulse 0.6s ease;
}

@keyframes designAppliedPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.02);
        box-shadow: 0 0 30px rgba(59, 130, 246, 0.3);
    }
}

/* Responsive Design for Designer */
@media (max-width: 1200px) {
    .designer-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .canvas-container {
        min-height: 400px;
    }

    #threejs-canvas {
        width: clamp(200px, 80%, 400px);
        height: clamp(200px, 80%, 400px);
    }
}

@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        padding: 1.5rem;
    }

    .product-templates {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
    }

    .size-options {
        flex-direction: column;
        gap: 0.5rem;
    }

    .size-btn {
        width: 100%;
    }

    .controls {
        flex-direction: column;
        gap: 0.5rem;
    }

    .control-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .designer-container {
        padding: 1rem;
        gap: 1rem;
    }

    .design-panel,
    .preview-section {
        padding: 1rem;
    }

    .upload-area {
        padding: 2rem 1rem;
        min-height: 120px;
    }

    .canvas-container {
        min-height: 250px;
        padding: 0.5rem;
    }

    #threejs-canvas {
        width: clamp(180px, 90%, 300px);
        height: clamp(180px, 90%, 300px);
    }

    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        padding: 1rem;
        gap: 1rem;
    }

    .crop-container {
        max-height: 200px;
    }

    .crop-controls {
        gap: 0.25rem;
    }

    .crop-btn {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .product-templates {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .template-icon {
        font-size: 1.5rem;
    }

    .upload-area {
        padding: 1.5rem 1rem;
        min-height: 100px;
    }

    .upload-text strong {
        font-size: 1rem;
    }

    .canvas-container {
        min-height: 200px;
    }

    #threejs-canvas {
        width: clamp(150px, 95%, 250px);
        height: clamp(150px, 95%, 250px);
    }

    .control-group {
        padding: 1rem;
        margin-bottom: 1rem;
    }

    .design-tips {
        padding: 1rem;
    }

    .design-tips li {
        padding: 0.75rem;
        padding-left: 2.5rem;
    }

    .design-tips li::before {
        left: 0.75rem;
        top: 0.75rem;
    }
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    backdrop-filter: blur(5px);
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.modal-content {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: clamp(1.5rem, 4vw, 2rem);
    max-width: clamp(300px, 90vw, 600px);
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    border: 1px solid rgba(59, 130, 246, 0.2);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease;
    margin: 1rem;
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-50px) scale(0.9);
        opacity: 0;
    }

    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.modal-header h3 {
    color: #2d3748;
    font-size: clamp(1.3rem, 3vw, 1.5rem);
    margin: 0;
}

.close-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #64748b;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.close-btn:hover {
    color: #3b82f6;
    background: rgba(59, 130, 246, 0.1);
}

/* Step Indicator */
.step-indicator {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
    gap: 1rem;
    flex-wrap: wrap;
}

.step {
    width: clamp(35px, 8vw, 40px);
    height: clamp(35px, 8vw, 40px);
    border-radius: 50%;
    background: #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    font-size: clamp(0.9rem, 2vw, 1rem);
}

.step.active {
    background: #3b82f6;
    color: white;
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.3);
}

.step.completed {
    background: #10b981;
    color: white;
}

/* Step Content */
.step-content {
    display: none;
    animation: stepFadeIn 0.3s ease;
}

.step-content.active {
    display: block;
}

@keyframes stepFadeIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Product Selection */
.product-selection {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.product-option {
    border: 2px solid rgba(59, 130, 246, 0.2);
    border-radius: 15px;
    padding: clamp(1.5rem, 4vw, 2rem);
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
}

.product-option:hover {
    border-color: #3b82f6;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.2);
}

.product-option.selected {
    border-color: #3b82f6;
    background: rgba(59, 130, 246, 0.1);
    transform: translateY(-2px);
}

.product-option-image {
    width: clamp(60px, 15vw, 80px);
    height: clamp(60px, 15vw, 80px);
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-option-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-option h5 {
    font-size: clamp(1rem, 2.5vw, 1.1rem);
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.5rem;
}

.product-option p {
    font-size: clamp(0.9rem, 2vw, 1rem);
    color: #64748b;
    line-height: 1.4;
}

/* Size Selection */
.size-selection {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.size-option {
    border: 2px solid rgba(59, 130, 246, 0.2);
    border-radius: 10px;
    padding: clamp(1rem, 3vw, 1.5rem);
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
}

.size-option:hover {
    border-color: #3b82f6;
    background: rgba(59, 130, 246, 0.05);
    transform: translateY(-2px);
}

.size-option.selected {
    border-color: #3b82f6;
    background: rgba(59, 130, 246, 0.1);
}

.size-option h5 {
    font-size: clamp(1rem, 2.5vw, 1.1rem);
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.5rem;
}

.size-option p {
    font-size: clamp(0.9rem, 2vw, 1rem);
    color: #64748b;
    margin: 0.25rem 0;
}

/* Navigation Buttons */
.step-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-step {
    padding: clamp(0.7rem, 2vw, 0.8rem) clamp(1.2rem, 3vw, 1.5rem);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: clamp(0.9rem, 2vw, 1rem);
    flex: 1;
    min-width: 120px;
}

.btn-prev {
    background: #6b7280;
    color: white;
}

.btn-prev:hover {
    background: #4b5563;
    transform: translateY(-1px);
}

.btn-next,
.btn-submit {
    background: linear-gradient(45deg, #3b82f6, #1d4ed8);
    color: white;
}

.btn-next:hover,
.btn-submit:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.btn-next:disabled {
    background: #9ca3af;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Form Styles */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2d3748;
    font-size: clamp(0.9rem, 2vw, 1rem);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: clamp(0.7rem, 2vw, 0.8rem);
    border: 2px solid rgba(59, 130, 246, 0.2);
    border-radius: 8px;
    font-size: clamp(0.9rem, 2vw, 1rem);
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
    color: #2d3748;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 10px rgba(59, 130, 246, 0.2);
}

.form-group textarea {
    height: clamp(80px, 20vw, 120px);
    resize: vertical;
}

/* Design Preview */
.design-preview {
    text-align: center;
    margin: 2rem 0;
    padding: clamp(1.5rem, 4vw, 2rem);
    background: rgba(248, 250, 252, 0.5);
    border-radius: 10px;
    border: 2px dashed rgba(59, 130, 246, 0.3);
    transition: all 0.3s ease;
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.design-preview.has-image {
    border-style: solid;
    border-color: #3b82f6;
    background: rgba(59, 130, 246, 0.05);
}

.preview-image {
    max-width: clamp(150px, 40vw, 200px);
    max-height: clamp(150px, 40vw, 200px);
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    object-fit: contain;
}

/* File Upload */
.file-upload {
    position: relative;
    display: inline-block;
    cursor: pointer;
    width: 100%;
    overflow: hidden;
    border-radius: 10px;
}

.file-upload input[type=file] {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    z-index: 2;
}

.file-upload-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: clamp(0.8rem, 2vw, 1rem);
    background: linear-gradient(45deg, #3b82f6, #1d4ed8);
    color: white;
    text-align: center;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    font-size: clamp(0.9rem, 2vw, 1rem);
}

.file-upload:hover .file-upload-label {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

/* About and Contact Pages */
.about-hero {
    background: linear-gradient(135deg, rgba(248, 250, 252, 0.425) 0%, rgba(226, 232, 240, 0.438) 100%),
        url('../images/main.png');
    /* Görsel yolu */
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    padding: clamp(3rem, 8vw, 6rem) clamp(1rem, 4vw, 2rem);
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 275px;
}

.about-hero2 {
    background: linear-gradient(135deg, rgba(248, 250, 252, 0.301) 0%, rgba(226, 232, 240, 0.301) 100%),
        url('../images/main.png');
    /* Görsel yolu */
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    padding: clamp(3rem, 8vw, 6rem) clamp(1rem, 4vw, 2rem);
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 275px;
}

.about-hero2 .section-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 8px rgba(37, 99, 235, 0.2);
}

.about-hero2 p {
    font-size: clamp(1.1rem, 3vw, 1.4rem);
    color: #64748b;
    font-weight: 500;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* 5. Hero section'a animasyon ekleyelim */
.about-hero2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(29, 78, 216, 0.1) 0%, transparent 50%);
    animation: heroBackground 8s ease-in-out infinite alternate;
}

@keyframes heroBackground {
    0% {
        transform: scale(1) rotate(0deg);
        opacity: 0.3;
    }

    100% {
        transform: scale(1.1) rotate(2deg);
        opacity: 0.6;
    }
}

#shipping .about-hero2 {
    background: linear-gradient(135deg, rgba(248, 250, 252, 0.301) 0%, rgba(226, 232, 240, 0.301) 100%),
        url('../images/shipping.png');
    /* Görsel yolu */
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    padding: clamp(3rem, 8vw, 6rem) clamp(1rem, 4vw, 2rem);
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 275px;
}

.about-content {
    padding: clamp(3rem, 6vw, 5rem) clamp(2rem, 4vw, 3rem);
    max-width: 1000px;
    /* Biraz daha geniş yapıyoruz */
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.95) 100%);
    border-radius: 25px;
    /* Daha yuvarlak köşeler */
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.1),
        0 8px 25px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(59, 130, 246, 0.08);
    position: relative;
    overflow: hidden;
}

.about-content::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(59, 130, 246, 0.03), transparent);
    border-radius: 50%;
    z-index: 0;
}

.about-content>* {
    position: relative;
    z-index: 1;
}

.about-text {
    font-size: clamp(1rem, 2.2vw, 1.1rem);
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 3rem;
    text-align: center;
    position: relative;
}

/* 3. Company Values bölümü ekleyelim */
.company-values {
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 2px solid rgba(59, 130, 246, 0.1);
}

.values-title {
    text-align: center;
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    /* Önceki: clamp(1.8rem, 4vw, 2.5rem) */
    color: #2d3748;
    margin-bottom: 2.5rem;
    /* Önceki: 3rem */
    font-weight: 700;
    position: relative;
}

.values-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #1d4ed8);
    border-radius: 2px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.value-card {
    background: rgba(255, 255, 255, 0.8);
    padding: 1.5rem 1rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(59, 130, 246, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #1d4ed8);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.15);
    border-color: rgba(59, 130, 246, 0.2);
}

.value-card:hover::before {
    transform: scaleX(1);
}

.value-card h3 {
    color: #2d3748;
    font-size: 1.1rem;
    /* Önceki: 1.3rem */
    font-weight: 600;
    margin-bottom: 0.8rem;
    /* Önceki: 1rem */
}

.value-card p {
    color: #64748b;
    line-height: 1.5;
    /* Önceki: 1.6 */
    font-size: 0.85rem;
    /* Önceki: 0.95rem */
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    padding: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info,
.contact-form {
    background: rgba(255, 255, 255, 0.9);
    padding: clamp(1.5rem, 4vw, 2rem);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.1);
}

.contact-info h3,
.contact-form h3 {
    color: #2d3748;
    margin-bottom: 1.5rem;
    font-weight: 600;
    font-size: clamp(1.2rem, 3vw, 1.4rem);
}

.contact-item {
    margin-bottom: 1.5rem;
}

.contact-info h4 {
    color: #3b82f6;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: clamp(1rem, 2.5vw, 1.1rem);
}

.contact-info p {
    color: #64748b;
    margin-bottom: 0.5rem;
    font-size: clamp(0.9rem, 2vw, 1rem);
}

/* WhatsApp Button */
.whatsapp-chat {
    position: fixed;
    bottom: clamp(15px, 4vw, 20px);
    right: clamp(15px, 4vw, 20px);
    width: clamp(50px, 12vw, 60px);
    height: clamp(50px, 12vw, 60px);
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1500;
    animation: whatsappPulse 2s infinite;
}

.whatsapp-chat:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
}

.whatsapp-chat svg {
    width: clamp(24px, 6vw, 30px);
    height: clamp(24px, 6vw, 30px);
    fill: white;
}

@keyframes whatsappPulse {

    0%,
    100% {
        box-shadow: 0 5px 20px rgba(37, 211, 102, 0.3);
    }

    50% {
        box-shadow: 0 5px 20px rgba(37, 211, 102, 0.6);
    }
}

/* Footer */
.footer {
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
}

/* Customer Support Section */
.customer-support-section {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: white;
    padding: clamp(1.5rem, 4vw, 2rem) 0;
}

.support-bar {
    display: grid;
    grid-template-columns: 1fr auto auto;
    align-items: center;
    gap: clamp(1.5rem, 4vw, 3rem);
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 4vw, 2rem);
}

.support-left {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.support-icon {
    width: clamp(40px, 8vw, 48px);
    height: clamp(40px, 8vw, 48px);
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.support-icon svg {
    width: clamp(20px, 5vw, 24px);
    height: clamp(20px, 5vw, 24px);
    color: white;
}

.support-info h3 {
    font-size: clamp(1.1rem, 3vw, 1.3rem);
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: white;
}

.support-info p {
    font-size: clamp(0.85rem, 2vw, 0.95rem);
    opacity: 0.9;
    margin: 0;
}

.support-center,
.support-right {
    text-align: center;
}

.support-contact-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.support-contact-item span {
    font-size: clamp(0.8rem, 2vw, 0.9rem);
    opacity: 0.8;
}

.support-contact-item strong {
    font-size: clamp(1rem, 2.5vw, 1.1rem);
    font-weight: 600;
    color: white;
}

/* Footer Content */
.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    padding: clamp(2rem, 6vw, 4rem) clamp(1rem, 4vw, 2rem) 2rem;
}

.footer-section h4 {
    color: #3b82f6;
    font-size: clamp(1rem, 2.5vw, 1.1rem);
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-section p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: clamp(0.9rem, 2vw, 1rem);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    color: #64748b;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.3rem 0;
    font-size: clamp(0.9rem, 2vw, 1rem);
}

.footer-links a:hover {
    color: #3b82f6;
    padding-left: 0.5rem;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
    align-items: center;
    flex-wrap: wrap;
}

.social-links a {
    width: clamp(40px, 8vw, 44px);
    height: clamp(40px, 8vw, 44px);
    border-radius: 50%;
    background: #3270d4;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.social-links a:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

.social-links a[href*="facebook"]:hover {
    background: #1877f2;
    box-shadow: 0 8px 25px rgba(24, 119, 242, 0.4);
}

.social-links a[href*="instagram"]:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    box-shadow: 0 8px 25px rgba(225, 48, 108, 0.4);
}

.social-links a[href*="x.com"]:hover,
.social-links a[href*="twitter"]:hover {
    background: #000000;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.social-links a svg {
    width: clamp(18px, 4vw, 22px);
    height: clamp(18px, 4vw, 22px);
    transition: all 0.3s ease;
    z-index: 1;
    position: relative;
}

.social-links a:hover svg {
    transform: scale(1.1);
}

/* Footer Bottom */
.footer-bottom {
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
    padding: 1.5rem 0;
}

.footer-bottom-grid {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 4vw, 2rem);
}

.footer-brand {
    font-size: clamp(1.3rem, 3vw, 1.5rem);
    font-weight: 700;
    background: linear-gradient(45deg, #3b82f6, #1d4ed8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-left: -3.8rem;
}

.footer-brand a {
    text-decoration: none;
    color: inherit;
}

.footer-copyright {
    text-align: center;
}

.footer-copyright p {
    color: #64748b;
    font-size: clamp(0.8rem, 2vw, 0.9rem);
    margin: 0;
}

.footer-born {
    text-align: right;
}

.footer-born a {
    color: #64748b;
    text-decoration: none;
    font-size: clamp(0.7rem, 2vw, 0.8rem);
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.footer-born a:hover {
    color: #3b82f6;
}

/* Success Message */
.success-message {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #10b981;
    color: white;
    padding: clamp(1rem, 3vw, 1.5rem) clamp(1.5rem, 4vw, 2rem);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
    display: none;
    z-index: 3000;
    font-weight: 600;
    animation: successFadeIn 0.3s ease;
    font-size: clamp(0.9rem, 2vw, 1rem);
    text-align: center;
    max-width: 90vw;
}

@keyframes successFadeIn {
    from {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.8);
    }

    to {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

/* Form validation styles */
.form-group input.error,
.form-group textarea.error,
.form-group select.error {
    border-color: #ef4444 !important;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1) !important;
    background-color: #fef2f2 !important;
}

.validation-error {
    color: #ef4444;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: block;
    font-weight: 500;
    animation: fadeIn 0.2s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    transition: all 0.3s ease;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
    background: linear-gradient(135deg, #5a67d8 0%, #6b46c1 100%);
}

.back-to-top:active {
    transform: translateY(-1px);
}

.back-to-top svg {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.back-to-top:hover svg {
    transform: translateY(-2px);
}

.back-to-top.show {
    display: flex;
    animation: fadeInUp 0.3s ease;
}

.back-to-top.hide {
    animation: fadeOutDown 0.3s ease;
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeOutDown {
    from {
        opacity: 1;
        transform: translateY(0);
    }

    to {
        opacity: 0;
        transform: translateY(30px);
    }
}

/* Mobile responsive */
@media (max-width: 768px) {
    .back-to-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
    }

    .back-to-top svg {
        width: 20px;
        height: 20px;
    }
}

/* Prevent default browser validation styling */
.form-group input:invalid,
.form-group textarea:invalid,
.form-group select:invalid {
    box-shadow: none;
}

.form-group input:not(.error):focus,
.form-group textarea:not(.error):focus,
.form-group select:not(.error):focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

/* Notification System */
#notification {
    position: fixed;
    top: clamp(15px, 4vw, 20px);
    right: clamp(15px, 4vw, 20px);
    padding: clamp(12px, 3vw, 16px) clamp(16px, 4vw, 20px);
    border-radius: 8px;
    color: white;
    font-weight: 500;
    font-size: clamp(0.8rem, 2vw, 0.9rem);
    z-index: 10000;
    transform: translateX(400px);
    transition: transform 0.3s ease, opacity 0.3s ease;
    max-width: clamp(250px, 80vw, 300px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Utility Classes */
.animate-in {
    animation: slideInUp 0.6s ease forwards;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Breakpoints for Modal/Forms */
@media (max-width: 1024px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .support-bar {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
    }

    .support-left {
        justify-content: center;
    }

    .footer-bottom-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .modal-content {
        margin: 0.5rem;
        width: calc(100% - 1rem);
        max-height: calc(100vh - 1rem);
        padding: 1.5rem;
        align-items: center;
        text-align: center;
    }

    .step-navigation {
        flex-direction: column;
        gap: 1rem;
    }

    .btn-step {
        width: 100%;
        min-width: auto;
    }

    .product-selection {
        grid-template-columns: 1fr;
    }

    .size-selection {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        padding: 2rem 1rem;
    }

    .social-links {
        justify-content: center;
        margin-top: 1rem;
    }

    .support-bar {
        padding: 0 1rem;
    }

    .about-content {
        padding: 2rem 1.5rem;
        border-radius: 15px;
        margin: 0 1rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .value-card {
        padding: 1.5rem 1rem;
    }

    .value-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .company-values {
        margin-top: 2rem;
        padding-top: 2rem;
    }

    .contact-container {
        padding: 1rem;
    }
}



@media (max-width: 480px) {
    .about-content {
        padding: 1.5rem 1rem;
        margin: 0 0.5rem;
    }

    .step-indicator {
        gap: 0.5rem;
    }

    .step {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }

    .modal-header {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .design-preview {
        padding: 1rem;
        margin: 1rem 0;
    }

    .preview-image {
        max-width: 120px;
        max-height: 120px;
    }

    .whatsapp-chat {
        width: 50px;
        height: 50px;
        bottom: 15px;
        right: 15px;
    }

    .whatsapp-chat svg {
        width: 24px;
        height: 24px;
    }

    .footer-content {
        padding: 1.5rem 1rem;
    }

    .support-contact-item {
        font-size: 0.9rem;
    }

    #notification {
        top: 10px;
        right: 10px;
        max-width: calc(100vw - 20px);
        font-size: 0.8rem;
        padding: 10px 15px;
    }
}

/* Print Styles */
@media print {

    .whatsapp-chat,
    nav,
    .modal,
    #notification {
        display: none !important;
    }

    body {
        background: white !important;
    }

    .page {
        padding-top: 0 !important;
    }

    .footer {
        page-break-inside: avoid;
    }
}

/* High DPI Displays */
@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {

    .hero-product-single img,
    .product-dropdown-image img,
    .brand-logo img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .whatsapp-chat {
        animation: none;
    }

    .upload-icon {
        animation: none;
    }

    .hero-product-single {
        animation: none;
    }
}

/* Privacy Policy Content Styles */
.privacy-content {
    background: rgba(255, 255, 255, 0.95);
    padding: clamp(2rem, 6vw, 4rem) clamp(1rem, 4vw, 2rem);
    max-width: 900px;
    margin: 0 auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.1);
    line-height: 1.8;
}

.privacy-section {
    margin-bottom: 2.5rem;
}

.privacy-section h2 {
    font-size: clamp(1.4rem, 3vw, 1.8rem);
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #3b82f6;
    position: relative;
}

.privacy-section h2::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 50px;
    height: 2px;
    background: linear-gradient(45deg, #3b82f6, #1d4ed8);
}

.privacy-section h3 {
    font-size: clamp(1.2rem, 2.5vw, 1.4rem);
    font-weight: 600;
    color: #374151;
    margin: 1.5rem 0 0.8rem 0;
}

.privacy-text {
    font-size: clamp(1rem, 2.5vw, 1.1rem);
    color: #64748b;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.privacy-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.privacy-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    font-size: clamp(1rem, 2.5vw, 1.1rem);
    color: #64748b;
}

.privacy-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #3b82f6;
    font-weight: bold;
    font-size: 1.2em;
}

.contact-info-box {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(59, 130, 246, 0.2);
    margin: 2rem 0;
    text-align: center;
}

.contact-info-box h4 {
    color: #2d3748;
    margin-bottom: 1rem;
    font-weight: 600;
}

.contact-info-box p {
    margin: 0.5rem 0;
    color: #64748b;
}

.contact-info-box a {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 500;
}

.contact-info-box a:hover {
    color: #1d4ed8;
    text-decoration: underline;
}

/* Responsive adjustments for Privacy Policy */
@media (max-width: 768px) {
    .privacy-content {
        padding: clamp(1.5rem, 4vw, 2rem) clamp(0.5rem, 3vw, 1rem);
        margin: 0 1rem;
    }

    .privacy-section {
        margin-bottom: 2rem;
    }

    .privacy-section h2 {
        font-size: clamp(1rem, 3.5vw, 1.2rem);
    }
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(59, 130, 246, 0.2);
    padding: 1.5rem 2rem;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-text {
    flex: 1;
    min-width: 300px;
}

.cookie-text h4 {
    font-size: clamp(1rem, 2.5vw, 1.1rem);
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cookie-text p {
    font-size: clamp(0.85rem, 2vw, 0.95rem);
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

.privacy-link {
    color: #3b82f6;
    text-decoration: underline;
    font-weight: 500;
    font-size: clamp(0.85rem, 2vw, 0.9rem);
    transition: color 0.3s ease;
}

.privacy-link:hover {
    color: #1d4ed8;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.btn-accept,
.btn-decline {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: clamp(0.85rem, 2vw, 0.9rem);
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 100px;
}

.btn-accept {
    background: linear-gradient(45deg, #3b82f6, #1d4ed8);
    color: white;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.btn-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

.btn-decline {
    background: transparent;
    color: #64748b;
    border: 2px solid #e2e8f0;
}

.btn-decline:hover {
    background: #f8fafc;
    border-color: #cbd5e0;
    color: #4a5568;
}

/* Cookie banner backdrop */
.cookie-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.cookie-backdrop.show {
    opacity: 1;
    visibility: visible;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .cookie-banner {
        padding: 1.25rem 1.5rem;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }

    .cookie-text {
        min-width: auto;
        width: 100%;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: space-between;
    }

    .btn-accept,
    .btn-decline {
        flex: 1;
        padding: 0.875rem 1rem;
    }
}

@media (max-width: 480px) {
    .cookie-banner {
        padding: 1rem;
    }

    .cookie-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }

    .btn-accept,
    .btn-decline {
        width: 100%;
    }
}

/* Cookie settings stored indicator (optional) */
.cookie-status {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #10b981;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.cookie-status.show {
    opacity: 1;
    visibility: visible;
}

.mobile-nav.closing {
    animation: slideUpAndFade 0.3s ease forwards;
}

@keyframes slideUpAndFade {
    0% {
        transform: translateY(0);
        opacity: 1;
    }

    100% {
        transform: translateY(-20px);
        opacity: 0;
    }
}

/* Backdrop fade animation */
.mobile-nav-backdrop.closing {
    animation: fadeOutBackdrop 0.3s ease forwards;
}

@keyframes fadeOutBackdrop {
    to {
        opacity: 0;
    }
}

.mobile-nav-right {
    display: none;
    align-items: center;
    gap: 1rem;
}

/* Mobil Language Dropdown */
.mobile-language-dropdown {
    position: relative;
    display: flex;
    align-items: center;
}

.mobile-lang-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    color: #3b82f6;
    padding: 0.5rem 0.75rem;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.2s ease;
    min-width: 70px;
    justify-content: center;
    will-change: transform, background-color;
}

.mobile-lang-btn:hover {
    background: rgba(59, 130, 246, 0.15);
    border-color: rgba(59, 130, 246, 0.4);
    transform: translateY(-1px);
}

.mobile-lang-btn:active {
    transform: translateY(0);
    transition: transform 0.1s ease;
}

#mobileLangFlag {
    font-size: 1rem;
}

#mobileLangCode {
    font-weight: 600;
    font-size: 0.8rem;
}

.mobile-dropdown-arrow {
    width: 12px;
    height: 12px;
    transition: transform 0.2s ease;
    /* Daha hızlı */
    stroke-width: 2.5;
    will-change: transform;
}

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

/* Mobile Language Menu */
.mobile-lang-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 140px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px) scale(0.98);
    /* Daha az hareket */
    transition: all 0.25s ease-out;
    /* Daha hızlı ve smooth */
    z-index: 3000;
    overflow: hidden;
    pointer-events: none;
    /* Kapalıyken tıklanamaz */
}

.mobile-language-dropdown.active .mobile-lang-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    pointer-events: auto;
    /* Açıkken tıklanabilir */
}

.mobile-lang-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    color: #374151;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.2s ease;
    /* Daha hızlı hover */
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    will-change: transform, background-color;
    /* GPU acceleration */
}

.mobile-lang-option:hover {
    background: rgba(59, 130, 246, 0.08);
    color: #3b82f6;
    transform: translateX(2px);
    /* Daha az hareket */
}

.mobile-lang-option:last-child {
    border-bottom: none;
}

.mobile-lang-option.active {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.12) 0%, rgba(59, 130, 246, 0.08) 100%);
    color: #3b82f6;
    font-weight: 600;
    border-left: 3px solid #3b82f6;
    padding-left: calc(1rem - 3px);
}

.mobile-lang-option .flag {
    font-size: 1.1rem;
}

/* Responsive - Mobilde görünür yap */
@media (max-width: 768px) {
    .mobile-nav-right {
        order: 3;
        display: flex;
        align-items: center;
        gap: 1rem;
        margin-left: auto;
    }

    /* Desktop language dropdown'unu gizle */
    .nav-contact-info .language-dropdown {
        display: none;
    }

    /* Mobile menu button stilini ayarla */
    .mobile-menu-btn {
        display: block;
        background: none;
        border: none;
        font-size: 1.5rem;
        cursor: pointer;
        color: #4a5568;
        transition: all 0.3s ease;
        padding: 0.5rem;
        border-radius: 8px;
    }

    .mobile-menu-btn:hover {
        background: rgba(102, 126, 234, 0.1);
        color: #3b82f6;
        transform: scale(1.05);
    }
}

/* 480px altında daha küçük boyutlar */
@media (max-width: 480px) {
    .mobile-nav-right {
        gap: 0.75rem;
    }

    .mobile-lang-btn {
        padding: 0.4rem 0.6rem;
        font-size: 0.8rem;
        min-width: 65px;
    }

    #mobileLangFlag {
        font-size: 0.9rem;
    }

    #mobileLangCode {
        font-size: 0.75rem;
    }

    .mobile-dropdown-arrow {
        width: 10px;
        height: 10px;
    }

    .mobile-lang-menu {
        min-width: 130px;
    }

    .mobile-lang-option {
        padding: 0.65rem 0.85rem;
        font-size: 0.8rem;
    }
}

/* Dropdown backdrop için */
.mobile-lang-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(1px);
    /* Daha az blur */
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    /* Daha hızlı */
}

.mobile-lang-backdrop.active {
    opacity: 1;
    visibility: visible;
}

/* Animation enhancements */
@keyframes mobileDropdownSlide {
    from {
        opacity: 0;
        transform: translateY(-15px) scale(0.9);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.mobile-language-dropdown.active .mobile-lang-menu {
    animation: mobileDropdownSlide 0.3s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* ========================================
   PAP2YOU PAYPAL PAYMENT MODAL STYLES
   CSS dosyanızın sonuna bu stilleri ekleyin
   ======================================== */

/* Payment Modal Base */
#paymentModal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

#paymentModal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Modal Content */
.payment-modal-content {
    background: white;
    border-radius: 15px;
    width: 90%;
    max-width: 650px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.3);
    animation: paymentModalSlideIn 0.3s ease-out;
}

@keyframes paymentModalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-30px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Modal Header */
.payment-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 25px 30px;
    border-radius: 15px 15px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.payment-header h2 {
    margin: 0;
    font-size: 24px;
    font-weight: 600;
}

.payment-close {
    color: white;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    transition: all 0.2s;
    line-height: 1;
}

.payment-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Payment Body */
.payment-body {
    padding: 0;
}

/* Order Summary */
.order-summary {
    padding: 30px;
    background: #f8f9fa;
}

.order-summary h3 {
    margin: 0 0 20px 0;
    color: #333;
    font-size: 20px;
    font-weight: 600;
}

/* Order Details */
.order-details {
    background: white;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.order-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}

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

.order-item span:first-child {
    color: #666;
    font-weight: 500;
}

.order-item strong {
    color: #333;
    font-weight: 600;
    text-align: right;
}

/* Price Breakdown */
.price-breakdown {
    background: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    font-size: 15px;
}

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

.total-row {
    border-top: 2px solid #667eea;
    margin-top: 10px;
    padding-top: 15px;
    font-size: 18px;
    color: #667eea;
}

.total-row strong {
    font-weight: 700;
}

/* PayPal Button Container */
#paypal-button-container {
    padding: 20px 30px;
    background: white;
}

/* Payment Loading */
.payment-loading {
    text-align: center;
    padding: 40px 20px;
    color: #667eea;
    font-size: 18px;
    font-weight: 500;
}

.payment-loading::before {
    content: "⏳";
    font-size: 24px;
    margin-right: 10px;
    animation: paymentSpin 2s linear infinite;
}

@keyframes paymentSpin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Payment Info */
.payment-info {
    padding: 0 30px 30px 30px;
    text-align: center;
    background: white;
    border-radius: 0 0 15px 15px;
}

.payment-info p {
    margin: 8px 0;
    color: #666;
    font-size: 14px;
}

.payment-info p:first-child {
    color: #28a745;
    font-weight: 600;
}

/* Success/Error States */
.payment-success {
    background: #d4edda;
    border: 2px solid #c3e6cb;
    color: #155724;
    padding: 20px;
    border-radius: 10px;
    margin: 20px 30px;
    text-align: center;
    font-weight: 600;
}

.payment-error {
    background: #f8d7da;
    border: 2px solid #f5c6cb;
    color: #721c24;
    padding: 20px;
    border-radius: 10px;
    margin: 20px 30px;
    text-align: center;
    font-weight: 600;
}

/* PayPal Button Customization */
.paypal-buttons {
    margin: 20px 0;
}

/* Form Button Updates - Mevcut quote butonlarınızı güncellemek için */
.btn-submit.btn-payment {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    border: none !important;
    color: white !important;
    padding: 15px 30px !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    border-radius: 8px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3) !important;
}

.btn-submit.btn-payment:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4) !important;
}

.btn-submit.btn-payment:disabled {
    opacity: 0.6 !important;
    cursor: not-allowed !important;
    transform: none !important;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .payment-modal-content {
        width: 95%;
        margin: 10px;
        max-height: 95vh;
    }

    .payment-header {
        padding: 20px;
    }

    .payment-header h2 {
        font-size: 20px;
    }

    .order-summary {
        padding: 20px;
    }

    .order-details,
    .price-breakdown {
        padding: 15px;
    }

    .order-item,
    .price-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
        text-align: left;
    }

    .order-item strong {
        text-align: left;
    }

    .total-row {
        font-size: 16px;
    }

    #paypal-button-container {
        padding: 15px 20px;
    }

    .payment-info {
        padding: 0 20px 20px 20px;
    }
}

/* Quote Form Price Display - Opsiyonel */
.price-display {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
    border: 2px solid #dee2e6;
}

.price-display h4 {
    margin: 0 0 15px 0;
    color: #495057;
    font-size: 18px;
}

.price-breakdown-preview {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    padding: 8px 0;
    border-bottom: 1px solid #dee2e6;
}

.price-breakdown-preview:last-of-type {
    border-bottom: 2px solid #667eea;
    font-weight: bold;
    color: #667eea;
    font-size: 18px;
}

.price-note {
    font-size: 12px;
    color: #6c757d;
    margin-top: 10px;
    font-style: italic;
}

.notification.payment-success {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    border: none;
    box-shadow: 0 4px 20px rgba(40, 167, 69, 0.3);
}

.notification.payment-error {
    background: linear-gradient(135deg, #dc3545, #e74c3c);
    color: white;
    border: none;
    box-shadow: 0 4px 20px rgba(220, 53, 69, 0.3);
}

.notification.payment-warning {
    background: linear-gradient(135deg, #ffc107, #fd7e14);
    color: #212529;
    border: none;
    box-shadow: 0 4px 20px rgba(255, 193, 7, 0.3);
}