/* Main Content Styles */
.main-content {
    min-height: calc(100vh - 80px - 400px); /* header ve footer yüksekliğini çıkarıyoruz */
    background: #f8fafc;
}

.order-container {
    margin-bottom: 40px;
    background: #fff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

/* Product Info Styles */
.product-info {
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
}

.platform-icon {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    border-radius: 16px;
    align-items: center;
}

.platform-icon i {
    font-size: 32px;
    color: #fff;
}

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

.product-title {
    font-size: 24px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
}

/* Form Styles */
.order-form {
    margin-bottom: 40px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.input-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #f8f9fa;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 8px 16px;
    transition: all 0.2s ease;
}

.input-wrapper:focus-within {
    border-color: #007bff;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(0,123,255,0.1);
}

.link-input {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 15px;
    color: #333;
    outline: none;
}

.profile-image {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    background: #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
}

.profile-image i {
    font-size: 16px;
    color: #6c757d;
}

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.form-input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 8px 0;
    font-size: 14px;
    color: #1a1a1a;
}

.form-input:focus {
    outline: none;
}

.form-input::placeholder {
    color: #999;
}

.form-help {
    display: block;
    margin-top: 8px;
    font-size: 13px;
    color: #666;
}

/* Order Actions Styles */
.order-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.price {
    font-size: 24px;
    font-weight: 600;
    color: #1a1a1a;
}

.add-to-cart-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #007bff;
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.add-to-cart-btn:hover {
    background: #0056b3;
    transform: translateY(-1px);
}

.add-to-cart-btn i {
    font-size: 18px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .order-container {
        padding: 30px;
    }

    .product-info {
        gap: 15px;
        margin-bottom: 30px;
        padding-bottom: 20px;
    }

    .platform-icon {
        width: 48px;
        height: 48px;
    }

    .product-title {
        font-size: 20px;
    }

    .order-actions {
        flex-direction: column;
        gap: 16px;
    }

    .add-to-cart-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Hero Section Styles */
.hero-section {
    padding: 35px 0 10px 0;
    text-align: center;
}

.hero-section h1 {
    font-size: 32px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.hero-section p {
    font-size: 16px;
    color: #666;
} 